@charset "UTF-8";
.bounce-top {
  display: block;
  animation: bounce-top 2.2s infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-1-15 0:3:34
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@keyframes bounce-top {
  0% {
    transform: translate(-50%, -45px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -24px);
    animation-timing-function: ease-in;
  }
  65% {
    transform: translate(-50%, -12px);
    animation-timing-function: ease-in;
  }
  82% {
    transform: translate(-50%, -6px);
    animation-timing-function: ease-in;
  }
  93% {
    transform: translate(-50%, -4px);
    animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 68px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #eaeaea;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.blue-text {
  color: #ff0000;
}

.shadow-bg {
  background-color: rgba(0, 0, 0, 0.9);
}

.section-title {
  text-align: center;
  text-transform: uppercase;
}

.underline {
  margin: 0px auto 40px;
  height: 3px;
  width: 70px;
  background-color: #ff0000;
  border-radius: 5px;
}

nav {
  z-index: 100;
  transition: background-color 0.6s;
}
nav .nav-link,
nav .navbar-nav .show > .nav-link,
nav .navbar-brand,
nav .fa-bars,
nav .nav-bar {
  color: white;
}
nav .nav-link:focus,
nav .nav-link:hover,
nav .navbar-nav .nav-link.active,
nav .navbar-nav .nav-link.show {
  color: #ff0000;
}
nav .navbar-toggler {
  padding: 10px 15px;
  border: none;
}
nav .navbar-brand {
  font-size: 25px;
}
nav .navbar-brand:hover {
  color: #ff0000;
}
nav .navbar-logo {
  height: 45px;
  width: auto;
  transition: height 0.3s;
}
nav .navbar-logo:hover {
  height: 48px;
}

header.hero-img {
  position: relative;
  height: 80vh;
  color: white;
  overflow: hidden;
}
header.hero-img .hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  object-fit: cover;
}
header.hero-img .hero-shadow {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
header.hero-img .hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
}
header.hero-img .hero-text .hero-logo img.img-fluid {
  max-width: 85%;
  height: auto;
}
header.hero-img .p-small {
  text-transform: initial;
}
header.hero-img .fa-chevron-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  font-size: 30px;
  color: white;
  z-index: 3;
}

.aboutus {
  position: relative;
  z-index: 5;
}
.aboutus i {
  margin-top: 20px;
  font-size: 30px;
}
.aboutus .aboutus-card-title {
  font-size: 18px;
  text-transform: uppercase;
}
.aboutus .aboutus-card-text {
  font-size: 14px;
}
.aboutus .aboutus-hover {
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
  z-index: 1;
}
.aboutus .aboutus-hover:hover {
  color: #ff0000;
  z-index: 10000;
}
.aboutus .aboutus-hover:hover .tooltip-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.aboutus .aboutus-hover .tooltip-box {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  padding: 15px;
  background-color: #fff;
  color: #333;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  pointer-events: none;
}
.aboutus .aboutus-hover .tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.aboutus .aboutus-hover .tooltip-box.show-bottom {
  bottom: auto;
  top: 100%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1000;
}
.aboutus .aboutus-hover .tooltip-box.show-bottom::after {
  top: auto;
  bottom: 100%;
  border-color: transparent transparent #fff transparent;
}
.aboutus .aboutus-hover:hover .tooltip-box.show-bottom {
  transform: translateX(-50%) translateY(15px);
}
.aboutus .aboutus-hover:hover {
  color: #ff0000;
}

#price,
#sklep,
.team,
.contact {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#price .aboutus-shadow,
#price .team-shadow,
#price .contact-shadow,
#sklep .aboutus-shadow,
#sklep .team-shadow,
#sklep .contact-shadow,
.team .aboutus-shadow,
.team .team-shadow,
.team .contact-shadow,
.contact .aboutus-shadow,
.contact .team-shadow,
.contact .contact-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}
#price .section-title,
#price .underline,
#price .container,
#sklep .section-title,
#sklep .underline,
#sklep .container,
.team .section-title,
.team .underline,
.team .container,
.contact .section-title,
.contact .underline,
.contact .container {
  position: relative;
  z-index: 5;
}
#price .section-title,
#sklep .section-title,
.team .section-title,
.contact .section-title {
  color: #d1d1d1;
}
#price .underline,
#sklep .underline,
.team .underline,
.contact .underline {
  background-color: #d1d1d1;
}

#price {
  background-image: url(../img/graphics/bikes/cassetee.jpg);
}
#price .aboutus-shadow {
  background-color: rgba(0, 0, 0, 0.75);
}
#price .price-icons .aboutus-hero-item p {
  margin-bottom: 0.5rem;
}
#price .price-icons {
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
#price .price-icons .aboutus-hero-item {
  color: #d1d1d1;
  transition: transform 0.3s ease, color 0.3s ease;
}
#price .price-icons .aboutus-hero-item i {
  font-size: 3rem;
  color: #d1d1d1;
}
#price .price-icons .aboutus-hero-item:hover {
  transform: scale(1.05);
  color: #800000;
}
#price .price-icons .aboutus-hero-item:hover i {
  color: #ff0000;
}
#price .price-content {
  position: relative;
  background: #fff;
  color: #333;
  border-radius: 1rem;
  margin-top: 2rem;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: max-height 0.7s ease, opacity 0.4s ease, transform 0.7s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#price .close-price-table {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  background: #aaa;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.6rem;
  line-height: 35px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
}
@media (max-width: 991px) {
  #price .close-price-table {
    position: sticky;
    top: 10px;
    float: right;
  }
}
#price .price-content.open {
  max-height: 85vh;
  opacity: 1;
  transform: scaleY(1);
}
#price .price-content.open .close-price-table {
  opacity: 0.8;
  pointer-events: auto;
  transform: scale(1);
}
#price .price-content.open .close-price-table:hover {
  background: #a00;
  opacity: 1;
  transform: scale(1.1);
}
#price .price-table#services tbody td:first-child {
  text-align: left;
}
#price .price-table {
  display: none;
  animation: slideDown 0.6s ease forwards;
}
#price .price-table h3 {
  color: #333;
  margin-bottom: 0.25rem;
  padding-top: 2rem;
}
#price .price-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
#price .price-table table thead {
  position: sticky;
  top: -1px;
  z-index: 10;
  background: #fff;
}
#price .price-table table thead tr:first-child td {
  padding: 2rem 2rem 0 2rem;
  border-bottom: none;
  text-align: center;
}
#price .price-table table thead tr:first-child td p {
  margin-bottom: 1.5rem;
  font-size: 12px;
  color: #aaa;
}
#price .price-table table thead tr:last-child td {
  padding: 10px 2rem;
  color: #333 !important;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #ccc;
}
#price .price-table table thead tr:last-child td:last-child {
  text-align: center;
}
#price .price-table table tbody td {
  min-width: 100px;
  padding: 10px 2rem;
  border-bottom: 1px solid #eee;
  word-break: break-word;
  vertical-align: top;
}
#price .price-table table tbody td:last-child {
  text-align: right;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
}
#price .price-table table td[rowspan] {
  vertical-align: middle;
}
#price .price-table table tbody td.table-section-header {
  text-align: left;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: bold;
  color: #333;
  font-size: 1.2rem;
  border-bottom-color: #ccc;
}
#price .price-table .brand-separator td {
  background: #f0f0f0;
  font-weight: bold;
  color: #333;
  padding-left: 1rem !important;
  text-align: left;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
#price .price-table .table-section-title {
  text-align: left;
  padding: 2rem 2rem 0.5rem 2rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  border-top: 1px solid #eee;
}
#price .price-table .price-global-description {
  text-align: left;
  font-size: 13px;
  color: #555;
  padding: 1rem 2rem;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}
#price .price-table .table-section-title:first-of-type {
  border-top: none;
  margin-top: 0;
}
#price .price-table#suspension table thead tr:last-child td {
  text-align: left;
  padding-left: 2rem;
}
#price .price-table#suspension table thead tr:last-child td:last-child {
  text-align: right;
  padding-right: 2rem;
}
#price .price-table#suspension table tbody td:first-child {
  text-align: left;
  padding-left: 2rem;
}
#price .price-table#suspension table tbody td:last-child {
  padding-right: 2rem;
}
#price #bike-service table td:nth-child(1) {
  width: 30%;
}
#price #bike-service table td:nth-child(2) {
  width: 50%;
}
#price #bike-service table td:nth-child(3) {
  width: 20%;
}
#price #suspension table td:first-child {
  width: 65%;
}
#price #suspension table td:last-child {
  width: 35%;
}
#price #services table td:first-child {
  width: 70%;
}
#price #services table td:last-child {
  width: 30%;
}
#price .price-description {
  font-size: 12px;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}
#price .price-description:has(.show-more-btn) {
  padding-bottom: 30px;
}
#price .description-inner {
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
#price .description-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5em;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#price .description-inner:not(.is-expanded) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#price .description-inner.no-overflow {
  display: block;
  -webkit-line-clamp: unset;
  max-height: none;
}
#price .description-inner.no-overflow::after {
  display: none;
}
#price .price-description:has(.description-inner.no-overflow) {
  padding-bottom: 10px;
}
#price .description-inner.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 1000px;
}
#price .description-inner.is-expanded::after {
  opacity: 0;
}
#price .show-more-btn {
  display: block;
  margin: 10px auto 0;
  position: relative;
  z-index: 2;
  background: #333;
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
#price .show-more-btn:hover {
  background-color: #555;
}
#price .price-table.active {
  display: block;
  max-height: 85vh;
  overflow-y: auto;
}
#price .price-section.open .price-container {
  transform: translateY(-40px);
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rodo-container {
  width: 90%;
  max-width: 600px;
  margin: 15px auto 20px auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: #555;
  text-align: left;
  line-height: 1.4;
}
.rodo-container input[type=checkbox] {
  margin-top: 3px;
  transform: scale(1.2);
  cursor: pointer;
  flex-shrink: 0;
}
.rodo-container label {
  cursor: pointer;
  user-select: none;
}
.rodo-container input:invalid {
  outline: 1px solid red;
}

@media (max-width: 768px) {
  .rodo-container {
    width: 95%;
    font-size: 0.75rem;
  }
}
.popup {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}
.popup.active {
  display: flex;
  animation: popupFadeIn 0.3s ease;
}
.popup .popup-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 700px;
  width: 90%;
  animation: popupFadeIn 0.3s ease;
}
.popup .closePopupBtn {
  padding: 10px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  margin-top: 15px;
  cursor: pointer;
}
.popup .closePopupBtn:hover {
  background-color: #444;
}

.openPopupBtn {
  padding: 0.6rem 1.2rem;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 15px;
}
.openPopupBtn:hover {
  background-color: #444;
}

.container.fork {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.fork-form,
.delivery,
.address,
.parts,
.comments {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

#address-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.delivery-button-hvr {
  transition: background-color 0.3s;
}
.delivery-button-hvr:hover {
  background-color: #ddd;
}

.fork-form-input,
.delivery-button,
.parts-model-input,
#address,
textarea.comments-area-txt {
  width: 60%;
  max-width: 500px;
  margin: 5px auto;
  padding: 12px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.parts-brands,
.parts-model,
.fork-form-label {
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
}

.service-range {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.service-range input[type=checkbox] {
  display: none;
}
.service-range label {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #ccc;
  border-radius: 25px;
  background-color: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.service-range label:hover {
  border-color: #444;
}
.service-range input[type=checkbox]:checked + label {
  border-color: #222;
  background-color: #222;
  color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.submit-btn {
  display: block;
  margin: 20px auto 0 auto;
  padding: 12px 25px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #444;
}

#sklep {
  background-image: url(../img/shop.jpg);
}
#sklep .aboutus-shadow {
  background-color: rgba(0, 0, 0, 0.8);
}
#sklep .sklep-row {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}
@media (min-width: 992px) {
  #sklep .sklep-row {
    flex-direction: row;
    align-items: stretch;
  }
}
#sklep .sklep-row__image {
  flex: 1;
  min-height: 250px;
}
#sklep .sklep-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#sklep .sklep-row__text {
  flex: 1;
}
@media (min-width: 992px) {
  #sklep .sklep-row__image--order-last {
    order: 1;
  }
}
#sklep .sklep-text-box {
  padding: 1.25rem;
  color: white;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}
#sklep .sklep-text-box p {
  margin-bottom: 1rem;
}
#sklep .sklep-text-box .sklep-lista-marek {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
#sklep .sklep-text-box .sklep-lista-marek li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.3em;
}
#sklep .sklep-text-box .sklep-lista-marek li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
}
#sklep .logo-scroller {
  background: #fff;
  padding: 2.5rem 0;
  overflow: hidden;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}
#sklep .logo-scroller:hover .logo-scroller__inner {
  animation-play-state: paused;
}
#sklep .logo-scroller__inner {
  display: flex;
  gap: 4rem;
  width: fit-content;
  animation: scroll 40s linear infinite;
}
#sklep .logo-scroller img {
  height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  object-fit: contain;
  max-width: none;
  transition: all 0.3s ease;
}
#sklep .logo-scroller img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.form-error-message {
  color: red;
  font-weight: bold;
  margin-top: 10px;
  min-height: 1.2em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-error-message.active {
  opacity: 1;
}

.btn {
  margin: 5px;
}

.btn-primary {
  background-color: #ff0000;
  border: none;
}

.btn-primary:hover {
  background-color: #800000;
}

.team {
  background-image: url(../img/shop2.jpg);
}
.team .team-shadow {
  background-color: rgba(0, 0, 0, 0.8);
}
.team .offers__option {
  max-width: 900px;
  margin: 1.5em auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .team .offers__option {
    display: flex;
    align-items: stretch;
  }
}
.team .offers__option-img {
  width: 100%;
  transition: transform 0.3s;
}
@media (min-width: 992px) {
  .team .offers__option-img {
    width: 300px;
    height: auto;
    object-fit: cover;
  }
}
.team .offers__option-img:hover {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .team .offers__option-img--right {
    order: 1;
  }
}
.team .offers__option-info {
  padding: 1.5em 2em;
  background-color: transparent;
  z-index: 10;
  width: 100%;
}
.team .offers__option-heading {
  margin-bottom: 0.5em;
  font-size: 2rem;
  font-weight: 600;
  color: #ff0000;
}
.team .offers__option-text {
  margin-bottom: 0.5em;
  font-size: 1rem;
  color: #333;
}
.team .offers__option-text b {
  text-transform: uppercase;
  color: #555;
  font-size: 1rem;
}
.team h2 {
  margin-bottom: 30px;
}

#support .support-card {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1100px;
  flex-direction: column;
}
#support .support-card__image-wrapper {
  position: relative;
  flex-basis: 250px;
  min-height: 250px;
}
#support .support-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#support .support-card .image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
@media (hover: none) {
  #support .support-card:hover .image-hover {
    opacity: 0;
  }
}
#support .support-card__text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#support .support-card__text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 1rem;
}
#support .support-card__text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
#support .support-card__text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  #support .support-card {
    flex-direction: row;
    align-items: stretch;
  }
  #support .support-card__image-wrapper {
    flex-basis: 50%;
    min-height: auto;
  }
  #support .support-card__text {
    flex-basis: 50%;
    padding: 2.5rem;
    overflow-y: auto;
  }
}
@media (min-width: 992px) and (hover: hover) {
  #support .support-card:hover .image-hover {
    opacity: 1;
  }
}

.contact-text {
  font-size: 0.6rem;
}

.contact {
  background-image: url(../img/shop.jpg);
}
.contact .contact-shadow {
  background-color: rgba(0, 0, 0, 0.7);
}
.contact .contact-us {
  display: flex;
  align-items: center;
  color: #d1d1d1;
  z-index: 2;
}
.contact .contact-item {
  margin: 30px 0;
}
.contact .contact-item a {
  color: #d1d1d1;
  text-decoration: none;
}
.contact .contact-item h3 {
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact .contact-item .social-media {
  font-size: 30px;
}
.contact .contact-item .social-media a {
  padding: 10px;
  transition: color 0.2s;
}
.contact .contact-item .social-media a:hover {
  color: #ff0000;
}

.thank-you-page .hero-img {
  height: 100vh;
}
.thank-you-page .thank-you-box {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 650px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.thank-you-page .thank-you-box .thank-you-icon {
  font-size: 6rem;
  color: #ff0000;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.thank-you-page .thank-you-box h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.thank-you-page .thank-you-box .p-large {
  font-size: 1.5rem;
  color: #eee;
  font-weight: 300;
}
.thank-you-page .thank-you-box .p-small {
  font-size: 1.1rem;
  color: #ccc;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #ff0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.back-to-top:hover {
  background-color: #800000;
  color: #fff;
  transform: translateY(-3px);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .cards .card {
    width: 100px;
  }
}
@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-text p {
    font-size: 20px;
  }
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 63.5px;
  }
  .hero-text h1 {
    font-size: 52px;
  }
  .hero-text p {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  #price,
  #sklep,
  .team,
  .contact {
    background-attachment: scroll;
  }
  .contact .contact-us {
    flex-direction: column;
  }
  .contact .contact-item.order-1 {
    order: 0;
  }
  .contact .contact-item.order-0 {
    order: 1;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .navbar-collapse .nav-link {
    font-size: 1.5rem;
    padding: 1rem;
  }
  .navbar-collapse.show {
    transform: translateX(0);
  }
  .navbar-logo {
    height: 8vw;
    max-height: 30px;
    width: auto;
  }
  header.hero-img {
    height: 70vh;
  }
  .hero-text .hero-logo img.img-fluid {
    max-width: 85%;
    height: auto;
  }
  #price .price-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  #price .price-icons .aboutus-hero-item {
    flex-basis: 40%;
  }
  #price .price-icons i {
    font-size: 3.5rem;
  }
  #price .price-icons .aboutus-hero-title {
    font-size: 1rem;
  }
  #price .price-table h3 {
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-right: 45px;
  }
  #price .price-table table {
    table-layout: fixed;
    width: 100%;
  }
  #price .price-table table thead tr:first-child td {
    padding: 1.5rem 1rem 0 1rem;
    position: relative;
  }
  #price .price-table table thead tr:last-child td,
  #price .price-table table tbody td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    min-width: auto;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    vertical-align: top;
  }
  #price .price-table table .price-description {
    font-size: 11px;
    text-align: left;
  }
  #price .price-table table tbody td:last-child {
    white-space: nowrap;
    word-break: normal;
    min-width: 75px;
    text-align: right;
    vertical-align: top;
  }
  #price .price-table#services table tbody td:last-child {
    white-space: normal;
  }
  /* Tabela #bike-service (3 kolumny) */
  #price .price-table#bike-service table {
    /* Usługa */
    /* Opis */
    /* Cena */
  }
  #price .price-table#bike-service table td:nth-child(1) {
    width: 35%;
  }
  #price .price-table#bike-service table td:nth-child(2) {
    width: 40%;
  }
  #price .price-table#bike-service table td:nth-child(3) {
    width: 25%;
  }
  /* Tabela #services (2 kolumny) */
  #price .price-table#services table {
    /* Usługa */
    /* Cena */
  }
  #price .price-table#services table td:nth-child(1) {
    width: 70%;
  }
  #price .price-table#services table td:nth-child(2) {
    width: 30%;
  }
  /* Tabela #suspension (2 kolumny) */
  #price .price-table#suspension table td:first-child {
    width: 65%;
    padding-left: 0.8rem;
  }
  #price .price-table#suspension table td:last-child {
    width: 35%;
    padding-right: 0.8rem;
  }
  .container.fork {
    text-align: center;
  }
  .fork-form-input,
  .delivery-button,
  .parts-model-input,
  #address,
  textarea.comments-area-txt {
    width: 95%;
  }
  #sklep .logo-scroller img {
    height: 30px;
  }
  #support .support-card {
    flex-direction: column;
  }
  #support .support-card__image-wrapper {
    height: 250px;
    min-height: 250px;
    flex-basis: 250px;
  }
  #support .support-card__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #support .support-card__text {
    flex-basis: auto;
    padding: 1.5rem;
    max-height: none;
    overflow-y: visible;
  }
  #support .support-card:hover .image-hover {
    opacity: 0;
  }
}/*# sourceMappingURL=main.css.map */