@charset "UTF-8";
body {
  font-family: "AudiType", Courier, monospace;
  background-color: #000;
}

#app {
  max-width: 2000px;
  margin-inline: auto;
}

section {
  color: #fff;
}

.intro {
  text-align: center;
  margin-inline: 25%;
  margin-block: 4rem 0;
}
@media (max-width: 599px) {
  .intro {
    margin-inline: 1rem;
  }
}
.intro h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-block: 1rem;
}
@media (max-width: 599px) {
  .intro h2 {
    font-size: 1.8rem;
  }
}
.intro h3 {
  font-size: 1.1rem;
}

.present {
  display: flex;
  align-items: center;
  padding-inline: 5rem;
}
@media (max-width: 599px) {
  .present {
    padding-inline: 1rem;
  }
}
.present img {
  width: 60%;
}
@media (max-width: 599px) {
  .present img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .present {
    flex-direction: column;
  }
}
.present__text {
  width: 50%;
  padding-block: 5rem 0;
}
.present__text h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-block: 0 2rem;
}
@media (max-width: 599px) {
  .present__text {
    width: 100%;
    text-align: center;
  }
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2rem;
  padding-block: 4rem;
  padding-inline: 4rem;
  color: #fff;
  margin-left: auto;
}
@media (max-width: 599px) {
  .form {
    padding-inline: 0;
    padding-block: 2rem;
  }
}
.form__content {
  display: grid;
  place-content: center;
  margin-inline: 2rem;
  color: #fff;
}
@media (max-width: 599px) {
  .form__content {
    margin-inline: 2rem;
    margin-block: 2rem 0;
  }
}
.form__content-header {
  font-size: 2.6rem;
  margin-block: 2rem;
  text-align: center;
  font-weight: 200;
}
@media (max-width: 599px) {
  .form__content-header {
    font-size: 1.6rem;
  }
}
.form__content-text {
  text-align: center;
}
.form__bg {
  display: flex;
  flex-direction: column;
  background-size: cover;
  padding-block: 6rem 0;
  padding-inline: 6rem;
  position: relative;
}
@media (max-width: 599px) {
  .form__bg {
    padding-block: 0;
    padding-inline: 1rem;
    gap: 2rem;
  }
}
.form__header {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
}
.form__subheader {
  width: 100%;
  text-align: center;
}
.form__all-inputs-wrapper {
  display: flex;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 599px) {
  .form__all-inputs-wrapper {
    flex-direction: column;
  }
}
.form__basic-inputs-wrapper {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3rem;
}
@media (max-width: 599px) {
  .form__basic-inputs-wrapper {
    width: 100%;
  }
}
.form__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 47%;
}
@media (max-width: 599px) {
  .form__input-wrapper {
    width: 100%;
  }
}
.form__textarea-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48%;
  height: 100%;
}
@media (max-width: 599px) {
  .form__textarea-wrapper {
    width: 100%;
  }
}
.form__label {
  position: absolute;
  top: 30%;
  left: 0.75rem;
  color: #fff;
  cursor: text;
  transition: all 0.1s ease-in-out;
  transform-origin: left;
}
.form__label--textarea {
  top: 1.5rem;
}
.form__label--error {
  color: #fc0d1b;
}
.form__input {
  padding-inline: 0.75rem;
  padding-block: 1rem 0.375rem;
  border-bottom: 1px solid #8a9097;
  transition: all 0.1s ease-in-out;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.form__input::-moz-placeholder {
  color: transparent;
}
.form__input::placeholder {
  color: transparent;
}
.form__input:is(:focus) {
  border-color: #3f83f8;
}
.form__input:is(:focus):not(.form__input--error) + label {
  color: #3f83f8;
}
.form__input:is(:focus, :not(:-moz-placeholder-shown)) + label {
  top: 2px;
  left: 0.785rem;
  scale: 0.7;
}
.form__input:is(:focus, :not(:placeholder-shown)) + label {
  top: 2px;
  left: 0.785rem;
  scale: 0.7;
}
.form__input--error {
  border-color: #fc0d1b;
  color: #fc0d1b;
  background-color: #ffdbdd;
}
.form__checkbox-wrapper {
  width: 100%;
  margin-left: 25px;
}
.form__checkbox-wrapper:has(input:checked) label::before {
  content: "✓";
  background-color: #001e50;
}
.form__checkbox-wrapper--small {
  width: 100px;
}
.form__checkbox {
  position: relative;
  cursor: pointer;
  font-size: 0.9rem;
}
.form__checkbox::before {
  content: "";
  position: absolute;
  left: -25px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #8a9097;
  transition: all 0.2s ease-in-out;
}
.form__checkboxes-wrapper {
  width: 100%;
  display: flex;
  gap: 0.25rem;
}
.form__textarea {
  height: 100%;
  padding-inline: 0.75rem;
  padding-block: 1.5rem 1rem;
  border-bottom: 1px solid #8a9097;
  transition: all 0.1s ease-in-out;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.form__textarea::-moz-placeholder {
  color: transparent;
}
.form__textarea::placeholder {
  color: transparent;
}
.form__textarea:focus {
  border-color: #3f83f8;
}
.form__textarea:is(:focus) + label {
  color: #3f83f8;
}
.form__textarea:is(:focus, :not(:-moz-placeholder-shown)) + label {
  scale: 0.75;
  top: 0.5rem;
}
.form__textarea:is(:focus, :not(:placeholder-shown)) + label {
  scale: 0.75;
  top: 0.5rem;
}
.form__error-message-wrapper {
  position: absolute;
  bottom: -1.2rem;
}
.form__error-message-wrapper--checkbox {
  position: static;
}
.form__error-message {
  height: 1rem;
  font-size: 0.7rem;
  color: #fc0d1b;
  margin-block: 0.25rem 0;
  white-space: nowrap;
}
.form__consent-text {
  font-size: 0.7rem;
}
.form__expand-btn {
  display: block;
  font-weight: 600;
  cursor: pointer;
}
.form__submit-btn {
  padding-block: 0.75rem;
  padding-inline: 5rem;
  margin-inline: auto;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.2s ease-in-out;
}
.form__submit-btn:hover {
  cursor: pointer;
}
.form__submit-btn:disabled {
  opacity: 0.3;
}
.form__popup-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10000;
}
.form__popup {
  position: relative;
  padding-inline: 3rem;
  padding-block: 3rem;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.form__popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.baner {
  position: relative;
}
.baner__img {
  width: 100%;
}
.baner__content {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: #fff;
}
@media (max-width: 599px) {
  .baner__content {
    position: static;
    text-align: center;
    margin-block: 1rem;
    padding-inline: 1rem;
  }
}
.baner__title {
  font-size: clamp(1.2rem, 3.5vw, 3rem);
  margin-block: 0 1rem;
  font-weight: 600;
}
@media (max-width: 599px) {
  .baner__title {
    font-size: 1.8rem;
  }
}
.baner__subline {
  font-size: clamp(1rem, 1.7vw, 2rem);
}

.footer {
  padding-block: 2rem;
  padding-inline: 2rem;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
}
.footer__main {
  font-size: 1.4rem;
}
.footer__submain {
  font-size: 1.2rem;
  font-weight: 600;
  margin-block: 0.25rem 0.75rem;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 4%;
}
.logo-bar__sign {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}
.logo-bar__logo {
  width: clamp(35px, 23%, 70px);
  filter: invert(1);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.loader__item {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader__item div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader__item div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fcf;
  margin: -4px 0 0 -4px;
}
.loader__item div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader__item div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loader__item div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader__item div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loader__item div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader__item div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loader__item div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader__item div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader__item div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader__item div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loader__item div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader__item div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loader__item div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader__item div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loader__item div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader__item div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cars {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.cars__header {
  font-size: 2rem;
  text-align: center;
  margin-block: 3rem 2rem;
}
.cars__car {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  display: flex;
  border: 1px solid #fff;
}
@media (max-width: 599px) {
  .cars__car {
    flex-direction: column;
    margin-inline: 1rem;
  }
}
.cars__car-photo {
  margin-inline: 0 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 599px) {
  .cars__car-photo {
    margin-inline: 0;
  }
}
.cars__car-name {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 599px) {
  .cars__car-name {
    margin-block: 1rem;
    text-align: center;
  }
}
.cars__car-title-small {
  font-size: 0.8rem;
}
@media (max-width: 599px) {
  .cars__car-title-small {
    text-align: center;
    margin-block: 0 1rem;
  }
}
.cars__main-data {
  width: 425px;
  margin-inline: 0 2rem;
}
@media (max-width: 599px) {
  .cars__main-data {
    width: 100%;
  }
}
.cars__params {
  width: 425px;
  display: flex;
  row-gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-block: 1rem;
  margin-inline: 0 2rem;
}
@media (max-width: 599px) {
  .cars__params {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
}
.cars__param {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cars__param img {
  filter: invert(1);
  width: 40px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .cars__param {
    width: 47%;
  }
  .cars__param img {
    width: 25px;
  }
}
.cars__param-name {
  font-size: 0.9rem;
}
@media (max-width: 599px) {
  .cars__param-name {
    font-size: 0.8rem;
  }
}
.cars__param-value {
  font-size: 1.05rem;
  font-weight: 600;
}
@media (max-width: 599px) {
  .cars__param-value {
    font-size: 1rem;
  }
}
.cars__small {
  font-size: 0.5rem;
}
.cars__price-wrapper {
  padding-inline: 2rem 0;
  border-left: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 599px) {
  .cars__price-wrapper {
    border: none;
    align-items: center;
    padding-inline: 0;
    margin-block: 2rem 0;
  }
}
.cars__price-label {
  font-size: 0.8rem;
}
.cars__price {
  font-size: 1.8rem;
  font-weight: 600;
}
.cars__price::after {
  content: " zł brutto";
  font-size: 0.85rem;
}
.cars__buttons {
  display: flex;
  flex-direction: column;
  margin-block: 2rem 0;
  gap: 1rem;
}
.cars__btn {
  padding: 1rem 3rem;
  font-size: 0.9rem;
}
.cars__btn--filled {
  color: #000;
  background-color: #fff;
}
.cars__btn:hover {
  cursor: pointer;
}
.cars__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 599px) {
  .cars__pagination {
    margin-inline: 1rem;
  }
}
.cars__pagination-item {
  border-radius: 100px;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
}
.cars__pagination-item--active {
  background-color: #fff;
  color: #000;
}
.cars__pagination-item:hover {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */