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

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

.photo-text {
  display: flex;
  margin-block: 4rem 5rem;
}
@media (max-width: 599px) {
  .photo-text {
    flex-direction: column-reverse;
    gap: 1.5rem;
    margin-inline: 1rem;
    margin-block: 2rem;
  }
  .photo-text:nth-child(2) {
    flex-direction: column;
  }
}
.photo-text__img-wrapper {
  width: 50%;
}
.photo-text__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .photo-text__img-wrapper {
    width: 100%;
  }
}
.photo-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-inline: 10%;
  width: 50%;
  gap: 2rem;
}
@media (max-width: 599px) {
  .photo-text__content {
    width: 100%;
    padding-inline: 0;
  }
}
.photo-text__content h2 {
  font-size: 1.5rem;
  font-weight: 500;
}
.photo-text__content ul {
  padding-inline: 0.75rem 0;
}
.photo-text__content ul li {
  position: relative;
  padding-block: 0.1rem;
}
.photo-text__content ul li::before {
  content: url(/LandingPage/geometria-kol-09-2025/assets/img/arrow_right.webp);
  position: absolute;
  top: 50%;
  left: -0.75rem;
  translate: 0 -50%;
  scale: 0.7;
}
.photo-text__content button {
  color: #fff;
  background-color: #000;
  padding-inline: 5rem;
  font-size: 0.9rem;
  padding-block: 1.25rem;
  cursor: pointer;
  margin-block: 2rem 0;
}
@media (max-width: 599px) {
  .photo-text__content button {
    width: 100%;
    text-align: center;
  }
}
.photo-text__btn {
  color: #fff;
  background-color: #000;
  padding-inline: 5rem;
  font-size: 0.9rem;
  padding-block: 1.25rem;
  cursor: pointer;
  margin-block: 2rem 0;
}
@media (max-width: 599px) {
  .photo-text__btn {
    width: 100%;
    text-align: center;
    margin-block: 0;
  }
}

.faq {
  margin-inline: 10%;
}
@media (max-width: 599px) {
  .faq {
    margin-inline: 1rem;
  }
}
.faq__header {
  margin-block: 2rem 3rem;
  font-weight: 500;
  font-size: 1.8rem;
}
.faq__faq-item {
  padding: 0 0.5rem;
  margin-block: 0.5rem;
}
.faq__faq-item + .faq__faq-item {
  margin-top: -1px;
}
.faq__faq-heading {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
}
.faq__faq-trigger {
  position: relative;
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  text-align: left;
  padding: 1.2rem 2rem 1.2rem 0;
  font-weight: 500;
  cursor: pointer;
}
.faq__faq-trigger::after {
  content: "";
  position: absolute;
  margin-inline: 2rem 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: solid 2px currentcolor;
  border-right: solid 2px currentcolor;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-75%) rotate(135deg);
}
.faq__faq-trigger[aria-expanded=true]::after {
  transform: translateY(-25%) rotate(-45deg);
}
@media (max-width: 599px) {
  .faq__faq-trigger::after {
    margin-inline: 0;
    right: 0;
  }
}
.faq__faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease-out;
}
.faq__faq-content[aria-hidden=false] {
  grid-template-rows: 1fr;
}
.faq__faq-content-inner {
  overflow: hidden;
}
.faq__faq-content-inner ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
.faq__faq-content-inner ul li {
  display: list-item;
  text-align: match-parent;
  margin-bottom: 0.5em;
}
.faq__faq-content-inner p + ul {
  margin-top: 0;
}

@media (max-width: 599px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 599px) {
  .mobile {
    display: block;
  }
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
  padding-block: 2rem;
  padding-inline: 2rem;
  color: #fff;
  margin-left: auto;
}
@media (max-width: 599px) {
  .form {
    padding-inline: 0;
    padding-block: 2rem;
  }
}
.form__content {
  margin-inline: 2rem;
  color: #fff;
}
@media (max-width: 599px) {
  .form__content {
    margin-inline: 0;
    margin-block: 2rem 0;
  }
}
.form__content-header {
  font-size: 1.8rem;
  margin-block: 0;
  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: url(/LandingPage/geometria-kol-09-2025/assets/img/baner_lp_desktop.webp);
  background-size: cover;
  padding-block: 2rem 0;
  padding-inline: 50% 2rem;
  position: relative;
  min-height: 500px;
}
@media (max-width: 599px) {
  .form__bg {
    padding-block: 0;
    padding-inline: 1rem;
    gap: 2rem;
    background: url(/LandingPage/geometria-kol-09-2025/assets/img/baner_lp_mobile.webp);
  }
}
.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: 100%;
  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: -5px;
  left: 0.785rem;
  scale: 0.7;
  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;
  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--error {
  border-color: #fc0d1b;
  color: #fc0d1b;
}
.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)) + 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: 30%;
  left: 8%;
  color: #fff;
}
.baner__title {
  font-size: clamp(1.2rem, 3.5vw, 3rem);
  margin-block: 0 1rem;
  font-weight: 600;
}
.baner__subline {
  font-size: clamp(1rem, 2vw, 2.2rem);
}

.footer {
  padding-block: 2rem;
  padding-inline: 2rem;
  background-color: #fff;
  color: #000;
  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: #000;
  font-weight: 600;
  font-size: 1.2rem;
}
.logo-bar__logo {
  width: clamp(35px, 23%, 70px);
}

.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);
  }
}/*# sourceMappingURL=style.css.map */