:root {
  --text-100: #000000;
  --background: #F7F7F7;
  --border: rgba(0, 0, 0, 0.2);
  --text-60: rgba(0, 0, 0, 0.6);
  --text-80: rgba(0, 0, 0, 0.8);
  --text-70: rgba(0, 0, 0, 0.75);
  --text-03: rgba(0, 0, 0, 0.03);
  --primary: #0651E6;
  --primary-rgb: rgba(6, 81, 230, 0.93);
  --primary-darkened: #0647c1;
  --primary-contrast: #F7F7F7;
  --primary-btn-contrast: #F7F7F7;
  --primary-contrast-80: rgba(247, 247, 247, 0.8);
}

.blue-theme {
  --text-100: #F7F7F7;
  --border: rgba(247, 247, 247, 0.2);
  --text-60: rgba(247, 247, 247, 0.6);
  --text-80: rgba(247, 247, 247, 0.8);
  --text-70: rgba(247, 247, 247, 0.7);
  --text-03: rgba(247, 247, 247, 0.03);
  --background: #0651E6;
  --primary: #F7F7F7;
  --primary-rgb: rgba(247, 247, 247, 0.93);
  --primary-darkened: #dddddd;
  --primary-contrast: #000000;
  --primary-btn-contrast: #0651E6;
  --primary-contrast-80: rgba(0, 0, 0, 0.8);
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.rounded-10 {
  border-radius: 40px;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.main-inline-padding {
  padding-inline: 84px;
}

a:not(.user-block) {
  text-decoration: none;
  cursor: pointer;
}
a:not(.user-block):not(.btn) {
  color: var(--text-60);
  transition: color 0.2s;
}
a:not(.user-block):not(.btn):not(.active):hover {
  color: var(--text-70);
}
a:not(.user-block):not(.btn).active {
  color: var(--text-100);
  font-weight: 700;
}

.btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 12px 15px;
  border-radius: 15px;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  transition: background-color 0.2s;
}
.btn.btn-round {
  border-radius: 100px;
}
.btn.btn-ghost {
  border: 2px solid var(--border);
  color: var(--text-100);
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--primary-btn-contrast);
  font-weight: 600;
}
.btn.btn-primary-reverse {
  color: var(--primary);
  background: var(--primary-btn-contrast);
  font-weight: 600;
}
.btn.btn-wide {
  padding: 15px 40px;
}
.btn:hover.btn-ghost {
  background: var(--text-03);
}
.btn:hover.btn-primary {
  background: var(--primary-darkened);
}

h1 {
  font-weight: 600;
  font-size: 67.2px;
  line-height: 70px;
  text-transform: capitalize;
  color: var(--text-100);
  text-align: center;
  width: 100%;
  margin-block: 75px;
}

h2 {
  font-weight: 600;
  font-size: 50.4px;
  line-height: 46.2px;
  text-transform: capitalize;
  color: var(--text-100);
  text-align: center;
  width: 100%;
  margin-block: 75px;
}

.page-subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  text-align: center;
}

body {
  padding: 0;
  margin: 0;
  background: var(--background);
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
  /* The whole body can have a class email-success and email-error */
}
body:not(.email-success) .contact-us .success-container {
  display: none !important;
}
body:not(.email-error) .contact-us .error-container {
  display: none !important;
}
body.email-success .contact-us .contact-container, body.email-error .contact-us .contact-container {
  display: none !important;
}
body.blue-theme .logo-container .regular {
  display: none !important;
}
body.blue-theme .logo-container .blue {
  display: block !important;
}
body.blue-theme .navbar .x-btn {
  filter: brightness(0) invert(100);
}
body.blue-theme .navbar .btn-ghost {
  border: 2px solid rgba(247, 247, 247, 0.2);
  color: white;
}
body.blue-theme .ig-icon {
  filter: invert(100);
}
body.blue-theme .footer {
  color: var(--text-100);
}
body.blue-theme .footer .footer-top {
  color: var(--text-100);
}
body.blue-theme .footer .footer-bottom {
  color: var(--text-100);
}
body.blue-theme .footer .footer-bottom .footer-col {
  color: var(--text-100);
}
body.blue-theme .footer .footer-bottom .footer-col .title {
  color: var(--text-100);
}
body.blue-theme .contact-us .send-img {
  filter: invert(100);
}

.heavy-p {
  font-weight: 600;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: -2%;
  text-align: justify;
  text-transform: capitalize;
}

.main-wrapper {
  max-width: 100%;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main {
  max-width: 1824px;
  width: 100%;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.logo-container .blue {
  display: none;
}

.navbar {
  padding-block: 43px;
  margin-bottom: 43px;
  padding-inline: 84px;
  width: 100%;
  max-width: 1824px;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
}
.navbar .nav-btns {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.navbar .nav-btns .x-btn {
  display: none;
}
.navbar #mobile-lang-btn {
  display: none;
}
.navbar #lang-btn {
  display: flex;
}
.navbar #burger-btn {
  display: none;
}
.navbar .right-btns {
  display: flex;
  column-gap: 8px;
  justify-content: flex-end;
}
.navbar #mobile-payment-btn {
  display: none;
}
.navbar #payment-btn {
  display: flex;
}

.info-block {
  display: flex;
  column-gap: 77px;
  color: var(--text-100);
  padding-inline: 84px;
  max-width: 100%;
  overflow: visible;
}
.info-block.inverse {
  flex-direction: row-reverse;
}
.info-block .text-col {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  flex: 1;
}
.info-block .text-col .title {
  font-weight: 600;
  font-size: 50.4px;
  line-height: 57.4px;
  letter-spacing: 0;
  text-transform: capitalize;
}
.info-block .text-col .p {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
}
.info-block .media-col {
  width: fit-content;
  overflow: visible;
  max-width: 55%;
}
.info-block .media-col.mw-40 {
  max-width: 40%;
}
.info-block .media-col *:not(.background-image):not(.background-block) {
  max-width: 100%;
}
.info-block .media-col .background-image {
  width: 1141px;
  height: 842px;
  border-radius: 25px;
  background: rgba(247, 247, 247, 0.1);
}
.info-block .media-col .background-image:not(img) {
  position: absolute;
  left: 90px;
  top: 110px;
}
.info-block .media-col .background-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 1141px;
  height: 842px;
  border-radius: 25px;
  background: rgba(247, 247, 247, 0.1);
}

.media-box {
  overflow: hidden;
}
.media-box video, .media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section {
  padding-inline: 84px;
}
.why-section .title {
  font-weight: 600;
  font-size: 39.2px;
  line-height: 46.2px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
}
.why-section .subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 66px;
}
.why-section .users {
  width: 100%;
  display: flex;
  column-gap: 32px;
}
.why-section .users .user-block {
  flex: 1;
  cursor: pointer;
  border-radius: 40px;
  background: #fff;
  color: var(--text-100);
  text-decoration: none;
}
.why-section .users .user-block:hover img {
  filter: grayscale(1) contrast(1.3);
}
.why-section .users .user-block .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 35px 40px;
  flex: 1;
}
.why-section .users .user-block .img-box {
  height: 24.75svw;
  max-height: 428px;
  width: 100%;
  overflow: hidden;
}
.why-section .users .user-block .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.why-section .users .user-block .explanation {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  padding: 35px 40px;
  color: var(--text-80);
}

.contact-us {
  margin-inline: auto;
  border-radius: 40px;
  width: calc(100% - 168px);
  height: fit-content;
  background: var(--primary);
  margin-bottom: 20px;
  overflow: hidden;
}
.contact-us .result-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding-bottom: 50px;
}
.contact-us .result-container img {
  margin-top: 60px;
  width: 170px;
  height: 170px;
}
.contact-us .result-container .title {
  font-weight: 600;
  font-size: 39.2px;
  line-height: 46.2px;
  text-align: center;
  text-transform: capitalize;
  width: 95%;
  max-width: 628px;
  color: var(--primary-contrast);
}
.contact-us .result-container .subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
  width: 95%;
  max-width: 628px;
  color: var(--primary-contrast-80);
  margin-bottom: 40px;
}
.contact-us .contact-container {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
.contact-us .contact-container .title {
  font-weight: 600;
  font-size: 39.2px;
  line-height: 46.2px;
  text-align: center;
  text-transform: capitalize;
  width: 95%;
  max-width: 628px;
  margin-top: 103px;
  margin-bottom: 48px;
  color: var(--primary-contrast);
}
.contact-us .contact-container .subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
  width: 95%;
  max-width: 628px;
  margin-bottom: 64px;
  color: var(--primary-contrast-80);
}
.contact-us .contact-container .contact-input {
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: var(--primary-contrast);
  border-radius: 100px;
  padding: 22px;
  width: 95%;
  max-width: 608px;
  margin-bottom: 32px;
}
.contact-us .contact-container .contact-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  height: 34px;
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: left;
  color: var(--text-100);
}
.contact-us .contact-container .contact-input input::placeholder {
  color: var(--text-100);
}
.contact-us .contact-container .contact-input input.sent {
  transition: opacity 1s, transform 1s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.contact-us .contact-container .contact-input img {
  cursor: pointer;
}
.contact-us .contact-container .input-subtext {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
  margin-bottom: 63px;
  color: var(--primary-contrast-80);
  width: 95%;
  max-width: 541px;
}
.contact-us .contact-bottom {
  width: 100%;
  height: 154px;
  background-image: url("/static/images/contact_us.png");
  background-size: cover;
  background-position: center;
  opacity: 14%;
}

.footer {
  max-width: 1824px;
  width: 100%;
  padding: 110px 104px;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom {
  display: flex;
  column-gap: 75px;
  width: 100%;
}
.footer .footer-bottom .footer-col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.footer .footer-bottom .footer-col .title {
  font-weight: 600;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  margin-bottom: 10px;
  width: fit-content;
}
.footer .footer-bottom .last-col {
  flex: 1;
  text-align: right;
  align-items: flex-end;
}

.solutions-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 35px;
  row-gap: 35px;
  width: 100%;
  padding-inline: 84px;
}
.solutions-blocks .solutions-block {
  height: fit-content;
  min-height: 322px;
  background: var(--white-10);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  color: var(--text-100);
  background: rgba(247, 247, 247, 0.1);
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.solutions-blocks .solutions-block .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  text-transform: capitalize;
  word-break: break-word;
}
.solutions-blocks .solutions-block .description {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 21px;
  word-break: break-word;
  width: 66%;
}
.solutions-blocks .solutions-block img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 33%;
}

.qna-info-block {
  display: flex;
  column-gap: 44px;
  width: 100%;
  height: fit-content;
  padding-inline: 84px;
}
.qna-info-block .text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}
.qna-info-block .text-col .qna {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
  padding: 25px 129px 25px 33px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
.qna-info-block .text-col .qna.open .plus {
  opacity: 0;
  transform: rotate(90deg);
}
.qna-info-block .text-col .qna.open .minus {
  opacity: 100;
}
.qna-info-block .text-col .qna:not(.open) .plus {
  opacity: 100;
}
.qna-info-block .text-col .qna:not(.open) .minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.qna-info-block .text-col .qna .q {
  font-weight: 600;
  font-size: 21px;
  line-height: 21px;
  letter-spacing: 0;
  word-break: break-word;
}
.qna-info-block .text-col .qna .a {
  padding-top: 23px;
  font-weight: 500;
  font-size: 16.8px;
  line-height: 21.7px;
  letter-spacing: -2%;
  word-break: break-word;
  transition: max-height 0.5s;
  overflow: hidden;
  max-height: 0;
}
.qna-info-block .text-col .qna .plus, .qna-info-block .text-col .qna .minus {
  position: absolute;
  width: 28px;
  right: 46px;
  top: 29px;
  transition: 0.5s;
}
.qna-info-block .text-col .qna .minus {
  top: 42px;
}
.qna-info-block .media-col {
  width: 577px;
  min-height: fit-content;
  flex: 1;
  max-width: 40%;
}
.qna-info-block .media-col .send-q {
  background: rgba(255, 255, 255, 0.25);
  width: 100%;
  height: 100%;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding-block: 93px 53px;
  padding-inline: 10px;
  align-items: center;
  row-gap: 20px;
}
.qna-info-block .media-col .send-q img {
  width: 96.443359375px;
  height: 86.1328125px;
}
.qna-info-block .media-col .send-q .title {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  width: 264px;
}
.qna-info-block .media-col .send-q .p {
  font-weight: 500;
  font-size: 16.8px;
  line-height: 21.7px;
  letter-spacing: -2%;
  text-align: center;
  flex: 1;
  width: 380px;
  word-break: break-word;
  max-width: 100%;
}
.qna-info-block .media-col .send-q .btn {
  padding: 22px;
  font-weight: 800;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
}

.fof-container {
  padding-inline: 84px;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}
.fof-container .page-subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 19.6px;
  text-align: center;
  width: 480px;
  color: var(--text-60);
}

.backdrop {
  position: absolute;
  z-index: -5;
  filter: blur(900px);
  opacity: 0.9;
}

pre {
  font-family: inherit; /* same font as surrounding text */
  font-size: inherit; /* same size */
  color: inherit; /* same color */
  background: none; /* remove gray background (if any) */
  border: none; /* remove borders */
  margin: 0; /* reset spacing */
  white-space: pre-line; /* keep line breaks, but not extra spaces */
}

.book-demo {
  display: flex;
  padding: 50px 80px;
  justify-content: space-between;
  background-color: var(--primary-rgb);
  position: relative;
  color: var(--primary-contrast);
  max-width: 1824px;
  width: calc(100% - 168px);
  margin-inline: auto;
  border-radius: 40px;
  overflow: hidden;
}
.book-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/images/about_us1.jpg") no-repeat center/cover;
  z-index: -1;
}
.book-demo-text {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  width: 55%;
  word-break: break-word;
}
.book-demo-text .title {
  font-weight: 600;
  font-size: 63px;
  line-height: 70px;
}
.book-demo-text .subtitle {
  font-weight: 600;
  font-size: 24.5px;
  line-height: 38.5px;
  letter-spacing: -2%;
  text-align: justify;
  text-transform: capitalize;
  max-width: 400px;
  width: 100%;
}
.book-demo-form {
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 10px;
}
.book-demo-form .form-group {
  display: flex;
  flex-direction: column;
}
.book-demo-form .form-group label {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 24.5px;
  letter-spacing: 0;
}
.book-demo-form .form-group input {
  width: 100%;
  height: 35px;
  border-radius: 25px;
  background: var(--primary-contrast);
  color: var(--text-100);
  outline: none;
  border: none;
  padding-inline: 10px;
}
.book-demo-form .form-note {
  flex: 1;
  align-items: end;
  display: flex;
}

.help-card-title {
  text-align: left;
  padding-inline: 84px;
}

.help-cards {
  padding-inline: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}
.help-cards .help-card {
  background: var(--background);
  border-radius: 20px;
  min-height: 312.2px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  justify-content: space-between;
  cursor: pointer;
  height: fit-content;
  width: 100%;
  flex-wrap: wrap;
  word-break: break-word;
}
.help-cards .help-card .title {
  color: var(--text-100);
  font-weight: 600;
  font-size: 39.2px;
  line-height: 46.2px;
  text-transform: capitalize;
}
.help-cards .help-card .subtitle {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--text-100);
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  text-transform: capitalize;
}
.help-cards .help-card .subtitle img {
  height: 20px;
  width: 20px;
}

.property-owners-block .left-col {
  max-width: 490px;
}
.property-owners-block .right-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.property-owners-block .right-col .property {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.property-owners-block .right-col .property .col-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
}
.property-owners-block .right-col .property .col-1 img {
  width: 60px;
}
.property-owners-block .right-col .property .col-2 .title {
  font-weight: 600;
  font-size: 22.4px;
  line-height: 28px;
  text-transform: capitalize;
}
.property-owners-block .right-col .property .col-2 .description {
  font-weight: 280;
  font-size: 14px;
  line-height: 27px;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 100%;
}
.coming-soon h1 {
  margin-top: 0;
  text-align: left;
  font-size: 120px;
  line-height: 120px;
  font-family: "Space Mono", monospace;
}
.coming-soon .bottom {
  flex: 1;
  display: flex;
  column-gap: 75px;
  position: relative;
  min-height: fit-content;
  overflow-y: hidden;
  padding-bottom: 50px;
}
.coming-soon .bottom pre {
  width: 45%;
}
.coming-soon .bottom .media-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

@media (max-width: 1200px) {
  .info-block .media-col {
    max-width: 45%;
  }
  .users {
    row-gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .users .user-block {
    min-width: 40%;
    max-width: 40%;
  }
  .footer .footer-bottom {
    display: grid;
    row-gap: 40px;
    grid-template-areas: "a b c d" "e e e e";
  }
  .footer .footer-bottom .footer-col.last-col {
    width: 100%;
  }
  .footer .footer-bottom .footer-col.last-col pre {
    white-space: nowrap;
    width: 100% !important;
  }
  .footer .footer-bottom .footer-col:nth-child(1) {
    grid-area: a;
  }
  .footer .footer-bottom .footer-col:nth-child(2) {
    grid-area: b;
  }
  .footer .footer-bottom .footer-col:nth-child(3) {
    grid-area: c;
  }
  .footer .footer-bottom .footer-col:nth-child(4) {
    grid-area: d;
  }
  .footer .footer-bottom .footer-col:nth-child(5) {
    grid-area: e;
  }
}
@media (min-width: 1060px) {
  .mobile-btn {
    display: none;
  }
}
@media (max-width: 1060px) {
  .navbar:not(.open) .nav-btns {
    display: none;
  }
  .navbar .nav-btns {
    position: fixed;
    display: flex;
    flex-direction: column;
    background: var(--background);
    width: 100svw;
    height: 100svh;
    top: 0;
    left: 0;
    z-index: 500;
    justify-content: center;
    row-gap: 20px;
  }
  .navbar .nav-btns a {
    font-size: 30px;
  }
  .navbar .nav-btns .lang-btn .icon-24 {
    width: 40px;
    height: 40px;
  }
  .navbar .x-btn {
    display: block !important;
    transform: rotate(45deg);
    position: fixed;
    top: 40px;
    right: 40px;
    cursor: pointer;
  }
  .navbar #mobile-lang-btn {
    display: flex;
    width: 150px;
    justify-content: space-around;
    border-width: 3px;
  }
  .navbar #lang-btn {
    display: none;
  }
  .navbar #burger-btn {
    display: flex;
  }
  .navbar .right-btns, .navbar .logo-container {
    width: fit-content !important;
  }
  .navbar #mobile-payment-btn {
    display: flex;
  }
  .navbar #payment-btn {
    display: none;
  }
}
@media (max-width: 980px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14.7px;
    text-align: center;
  }
  .footer .footer-top .hide-on-mobile {
    display: none;
  }
  .footer .footer-bottom {
    display: grid;
    row-gap: 40px;
    grid-template-areas: "a b" "c d" "e e";
  }
  .footer .footer-bottom .footer-col.last-col {
    width: 100%;
  }
  .footer .footer-bottom .footer-col.last-col pre {
    white-space: nowrap;
  }
  .footer .footer-bottom .footer-col:nth-child(1) {
    grid-area: a;
  }
  .footer .footer-bottom .footer-col:nth-child(2) {
    grid-area: b;
  }
  .footer .footer-bottom .footer-col:nth-child(3) {
    grid-area: c;
  }
  .footer .footer-bottom .footer-col:nth-child(4) {
    grid-area: d;
  }
  .footer .footer-bottom .footer-col:nth-child(5) {
    grid-area: e;
  }
  .solutions-blocks {
    grid-template-columns: 1fr 1fr;
  }
  .help-cards {
    grid-template-columns: auto;
    row-gap: 40px;
  }
  .qna-info-block {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .qna-info-block .backdrop {
    top: -700px !important;
    transform: translateX(-50%) rotate(-45deg) !important;
    opacity: 0.7 !important;
  }
  .qna-info-block .media-col {
    width: 100% !important;
    max-width: 650px;
  }
  .qna-info-block .media-col .send-q {
    row-gap: 40px;
  }
  .property-owners-block {
    align-items: center;
  }
  .property-owners-block .left-col {
    align-items: center;
    text-align: center;
  }
  .property-owners-block {
    flex-direction: column;
    row-gap: 80px;
  }
  .book-demo {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .book-demo .book-demo-text, .book-demo .book-demo-form {
    width: 100%;
  }
  .book-demo .book-demo-text .btn, .book-demo .book-demo-form .btn {
    display: none;
  }
  .book-demo .mobile-btn {
    display: flex !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .info-block, .help-card-title, .help-cards, .why-section, .main-inline-padding, .page-subtitle,
  .solutions-blocks.qna-info-block .fof-container, .navbar, .solutions-blocks, .qna-info-block {
    padding-inline: 34px;
  }
  .book-demo, .footer, .contact-us {
    width: calc(100% - 68px);
  }
  .footer {
    padding: 110px 0;
  }
}
@media (max-width: 800px) {
  .qna {
    padding-right: 33px !important;
  }
  .qna .q {
    padding-right: 97px;
  }
  .qna .a {
    padding-top: 23px;
  }
  .qna .plus, .qna .minus {
    position: absolute;
    width: 28px;
    right: 46px;
    top: 29px;
    transition: 0.5s;
  }
  .qna .minus {
    top: 42px;
  }
  .help-card-title {
    margin-top: 0;
  }
  h1, h2 {
    padding-inline: 15px;
  }
  .hide-on-mobile {
    display: none;
  }
  .users {
    flex-direction: column;
  }
  .users .user-block {
    width: 100%;
    max-width: 470px;
  }
  .solutions-blocks {
    grid-template-columns: 1fr;
  }
  .info-block {
    flex-direction: column !important;
    align-items: center;
    row-gap: 30px;
  }
  .info-block .media-col {
    align-items: center;
    max-width: 100% !important;
    max-height: 35svh !important;
  }
  .info-block .media-col img, .info-block .media-col .img-box, .info-block .media-col .background-block {
    height: 35svh !important;
  }
  .info-block .media-col .img-box {
    overflow: hidden;
  }
  .info-block .media-col .img-box img {
    height: unset !important;
  }
  .info-block .media-col .background-image.img-box {
    top: 50px;
  }
  .info-block .text-col {
    align-items: center;
    text-align: center;
  }
  .info-block.blue-theme {
    margin-bottom: 200px;
  }
  .property-owners-block {
    row-gap: 60px;
  }
  .property-owners-block .right-col {
    grid-template-columns: 1fr;
  }
  .property-owners-block .right-col .property {
    flex-direction: column;
    gap: 20px;
  }
  .property-owners-block .right-col .property .description {
    max-width: 300px;
  }
  .coming-soon-backdrop {
    transform: scale(0.5);
    top: -400px;
  }
  .coming-soon h1 {
    margin-top: 0;
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    font-family: "Space Mono", monospace;
    word-break: break-word;
  }
  .coming-soon .bottom {
    flex: 1;
    flex-direction: column;
    position: static;
    padding-bottom: 350px;
  }
  .coming-soon .bottom pre {
    width: 100%;
  }
  .coming-soon .bottom .media-box {
    top: unset;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .footer-bottom {
    text-align: center;
    display: grid;
    row-gap: 40px;
    grid-template-areas: "a" "b" "c" "d" "e" !important;
  }
  .footer-bottom .footer-col {
    width: calc(100vw - 68px);
  }
  .footer-bottom .footer-col.last-col {
    width: calc(100vw - 68px);
    margin-inline: auto;
  }
  .footer-bottom .footer-col.last-col pre {
    white-space: nowrap;
  }
  .footer-bottom .footer-col:not(.last-col) {
    width: calc(100vw - 68px);
    align-items: center;
  }
  .footer-bottom .footer-col:not(.last-col) pre {
    word-break: break-word;
  }
  .footer-bottom .footer-col:nth-child(1) {
    grid-area: a;
  }
  .footer-bottom .footer-col:nth-child(2) {
    grid-area: b;
  }
  .footer-bottom .footer-col:nth-child(3) {
    grid-area: c;
  }
  .footer-bottom .footer-col:nth-child(4) {
    grid-area: d;
  }
  .footer-bottom .footer-col:nth-child(5) {
    grid-area: e;
  }
}

/*# sourceMappingURL=styles.css.map */
