@font-face {
  font-family: "Inter-Light";
  font-weight: 300;
  src: url("../fonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter-Regular";
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter-Medium";
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Inter-SemiBold";
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Bold";
  font-weight: 700;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-ExtraBold";
  font-weight: 800;
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Black";
  font-weight: 900;
  src: url("../fonts/Inter-Black.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf");
}
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter";
  font-weight: normal;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  min-height: 100%;
}

@media only screen and (min-width: 460px) {
  .body_HO {
    background:
      linear-gradient(0deg, rgb(0 0 0 / 45%), rgb(0 0 0 / 45%)),
      url("../img/homehub-landing.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
  }
}

.custom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* box-shadow: 0px 0.1px 1px rgba(0, 0, 0, 0.25); */
}

::-webkit-scrollbar {
  width: 0.25rem;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.loader {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.inter-bold {
  font-weight: 700;
  font-family: "Inter-Bold";
}

button:disabled,
.btn:disabled {
  opacity: 0.8;
}

.btn {
  background: #000 !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-outline {
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 8px;
  letter-spacing: 0.1em;
  font-family: "Inter-Bold";
  font-weight: 700;
  color: #000;
}
.btn:hover,
.btn-primary:hover {
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}
.btn-outline:hover {
  color: #ffffff;
  background: #000;
  transition: all 0.3s ease-in-out;
}
.btn-primary {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 16px;
  line-height: 10px;
  padding: 14px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}

.higher-btn {
  padding: 24px 21px 25px 21px;
  border-radius: 10px;
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 22px;
  line-height: 22px;
}

.started-btn {
  padding: 16px 45px 16px 45px;
  border-radius: 12px;
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 25px;
  line-height: 34px;
}

.offer-btn {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 14px;
  letter-spacing: 0.09em;
  width: 100%;
  box-shadow: 0px 12px 21px 4px rgba(68, 97, 242, 0.15);
  border-radius: 5px;
  padding: 16px 0;
}

.address input {
  padding-left: 19px;
  font-size: 20px;
  line-height: 24px;
  width: calc(100% - 150px);
  height: 67px;
  outline: 0;
  /* padding-right: 19px; */
}
.home-value input {
  width: calc(100% - 205px);
  padding-left: 19px;
  font-size: 20px;
  line-height: 24px;
  height: 67px;
  outline: 0;
}
.nav-number {
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 16px;
  line-height: 10px;
  letter-spacing: 0.1em;
  color: #000;
}

.hero {
  background: url("../img/bg.svg") no-repeat center / cover;
  width: 100%;
  margin-top: 58px;
}

.hero h1 {
  font-weight: 900;
  font-family: "Inter-Black";

  font-size: 50px;
  line-height: 61px;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.cash-offer {
  margin-top: 86px;
}
.cash-offer h1 {
  color: #000;
  font-family: "Inter-Black";
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
  font-size: 70px;
  font-weight: 800;
  line-height: normal;
}
.title {
  font-weight: 900;
  font-family: "Inter-Black";

  font-size: 40px;
  line-height: 54px;
  color: #000;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
  font-family: Inter;
}

.description {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 30px;
  line-height: 38px;
  color: #696d72;
}
.discriptions {
  font-weight: 500;
  font-family: "Inter-Medium";
  font-size: 18px;
  line-height: 25px;
  color: #696d72;
}

.bg {
  background: linear-gradient(
    179.67deg,
    rgba(230, 230, 230, 0.19) 61.42%,
    rgba(230, 230, 230, 0.0812422) 81.38%,
    rgba(230, 230, 230, 0) 87.58%
  );
  border-radius: 5px;
}
.nav-list {
  align-items: center;
  gap: 34px;
}
.nav-list li a {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 17px;
  line-height: 10px;
  letter-spacing: 0.1em;
  color: #000;
}
.navlist li {
  padding-bottom: 30px;
}

/* overlay  */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
}

.overlay .closebtn {
  position: absolute;
  right: 19px;
  font-size: 31px;
}
.map {
  background: rgba(217, 217, 217, 0.5);
  border-radius: 6px;
  padding: 8px;
}
/* pricing section  */
.offer-price {
  background: #f3f4f5;
  border: 0.5px solid #192841;
  border-radius: 12px;
  padding: 48px 54px;
  max-width: 1243px;
  margin: auto;
}

.pricing {
  display: flex;
  gap: 38px;
}

.pricing div {
  background: #ffffff;
  border: 5px solid #000;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 29px;
}

.pricing h3 {
  color: #000;
  font-weight: 900;
  font-family: "Inter-Black";

  font-size: 18px;
  line-height: 24px;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 24.85px;
}

.pricing img:not(:last-child) {
  margin-bottom: 22.64px;
}

/* average section  */

.low-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 5px solid #c4c4c4;
  border-radius: 12px;
  color: #000;
  padding: 46px 45.2px;
}

.low-pricing p {
  font-weight: 900;
  font-family: "Inter-Black";

  font-size: 125px;
  line-height: 78px;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.average-subtitle {
  max-width: 240px;
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  color: #ffffff;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.heading {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 45px;
  line-height: 62px;
  color: #000;
  letter-spacing: 0.1em;
}

.works p {
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #595959;
}
.paragraph {
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0.1em;
  color: #595959;
}

.btn-login {
  padding: 11px 70.5px;
  background: #000;
  color: #ffffff;
}
.btn-join {
  padding: 15.5px 36px;
}

.works-offer {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer div span {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 17px;
  line-height: 35px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.works-offer div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}

.works-offer img {
  max-width: 120px;
}

.works-offer div p {
  max-width: 173px;
  font-weight: 500;
  font-family: "Inter-Medium";
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #000;
}

/*get-started  */

.get-started p {
  font-weight: 500;
  font-family: "Inter-Medium";
  font-size: 25px;
  line-height: 35px;
  text-align: center;
  color: #696d72;
}

/* footer  */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .footer-list h3 {
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 25px;
  line-height: 34px;
  color: #c0f0f7;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.footer-list li {
  line-height: 24px;
}

.footer-list a {
  font-weight: 500;
  font-family: "Inter-Medium";
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.footer-content nav h3 {
  font-family: Roboto;
  font-size: 17px;
  line-height: 10px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.footer-content p {
  font-size: 12px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.footer-nav {
  display: flex;
  font-size: 14px;
  font-family: "Roboto";
  color: #6c98b3;
  align-items: center;
}
.footer-nav span {
  color: #6c98b3;
}
/* offer-request page   */
.navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar ul li a {
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 16px;
  line-height: 10px;
  letter-spacing: 0.1em;
  color: #000;
}

.offer-home {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.offer-home p {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #5c576a;

  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.offer-form {
  background: #f3f4f5;
  border: 0.5px solid #c4c4c4;
  border-radius: 1rem;
  padding: 2.6875rem;
  padding-bottom: 1.5rem;
}

.field {
  position: relative;
  width: 100%;
  height: 55px;
}

.input-field input {
  border-radius: 5px;
  width: 100%;
  padding: 17.04px 14px 17.17px 47px;
  font-size: 13px;
  line-height: 18px;
  color: #5c576a;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
  outline: 1px solid transparent;
}

.invalid input {
  border: 1px solid #d93025;
}

.field .error {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter-Regular";
  color: #d93025;
  position: absolute;
  left: 9px;
  bottom: -21px;
}
.formik_error {
  outline-color: #d93025 !important ;
  z-index: 30;
}

.invalid .error {
  display: flex;
}

.error p {
  font-weight: 600;
  font-family: "Inter-SemiBold";
  font-size: 12px;
  color: #d93025;
  text-shadow: 0px 0px 0px rgb(0 0 0 / 25%);
}

.icon {
  position: absolute;
  left: 15px;
  top: 15px;
}
.bg-blue {
  position: relative;
}
.bg-blue::after {
  position: absolute;
  top: -284px;
  width: 100%;
  max-width: 1440px;
  content: url("../img/blue.svg");
  z-index: -1;
  left: 0px;
}
.bg-agent::after {
  top: -240px;
}
.bg-seller::after {
  top: -230px;
}
.hero-title {
  font-weight: 700;
  font-family: "Inter-Bold";
  font-size: 40px;
  line-height: 62px;
  letter-spacing: 0.1em;
  color: #3b4249;
}
.success,
.danger {
  display: flex;
  align-items: flex-start;
  padding: 5px;
  width: 100%;
  border-radius: 5px;
  gap: 10px;
  border: 1px solid;
}
.success p {
  color: green;
  font-size: 12px;
  letter-spacing: 1px;
}
.danger p {
  color: red;
  font-size: 15px;
  letter-spacing: 1px;
}

.input-field input:focus-visible {
  outline-color: rgb(26 200 219);
}
.formik_error.input-field input:focus-visible {
  outline-color: transparent !important;
}
.formik_error {
  @apply border-[0.0625rem] border-scarletRed;
}
/* terns & Condition */
.terms-content,
.terms-service,
.privacy-policy {
  margin-top: 11.25rem;
  padding: 0 6rem;
  margin-bottom: 8.75rem;
}
.terms-service p {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.5625rem;
}
.terms-service h2 {
  color: #000;
  font-size: 22px;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
}
.terms-service h3 {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}

.terms-service ol {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.terms-service ol > li {
  margin-bottom: 1.5625rem;
}
.terms-service ol > li > span {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.terms-service ol > li > p {
  margin-bottom: 0rem;
  display: inline;
}
.terms-service ol > li > h3 {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  display: inline;
}

.terms-content h2,
.privacy-policy h2 {
  color: #000;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 30px;
  line-height: 32px;
}

.terms-content p,
.privacy-policy p {
  color: #696d72;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}
.terms-content h5 {
  color: #696d72;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.privacy-policy h5 {
  color: #696d72;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 26px;
}
.privacy-policy ol {
  list-style: auto;
  padding-left: 25px;
  margin-bottom: 27px;
}
.privacy-policy ol.alphabets {
  list-style: upper-alpha;
}
.privacy-policy ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 27px;
}
.privacy-policy ol li,
.privacy-policy ul li,
.privacy-policy span {
  color: #696d72;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.privacy-policy__anchor {
  text-decoration: underline;
}

.tenant-container {
  padding: 10px;
}

.tenant-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tenant-avatar {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 30px;
}

.tenant-name {
  font-size: 1.875rem;
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
}

.tenant-logo {
  max-height: 70px;
  max-width: 200px;
}

/* .homehub_landing-bg { 
  min-height: 100%;
  background: linear-gradient(0deg, rgb(0 0 0 / 45%), rgb(0 0 0 / 45%)), url(../../homehublanding//img/homehub-landing.png);
  background-size: cover;
} */

@media only screen and (max-width: 1200px) and (min-width: 1024px) {
  .hero h1,
  .cash-offer h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .paragraph {
    font-size: 18px;
    line-height: 25px;
  }

  .description {
    font-size: 22px;
    line-height: 28px;
  }

  .offer-price {
    padding: 48px 38px;
  }

  .heading {
    font-size: 42px;
    line-height: 52px;
  }
  .hero-title {
    font-size: 38px;
    line-height: 50px;
  }
  .works p {
    font-size: 18px;
    line-height: 30px;
  }

  .pricing div {
    padding: 15px 22px;
  }
}
@media only screen and (max-width: 460px) {
  .body_HO {
    background:
      linear-gradient(0deg, rgb(0 0 0 / 45%), rgb(0 0 0 / 45%)),
      url("../img/homehub-landing-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
  }

  .terms-content,
  .terms-service,
  .privacy-policy {
    margin-top: 7.5rem;
    padding: 0 3.125rem;
    margin-bottom: 5.625rem;
  }
  .terms-content h2,
  .privacy-policy h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 640px) {
  .hero h1 {
    font-size: 41px;
    line-height: 49px;
  }
  .cash-offer h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .paragraph {
    font-size: 15px;
    line-height: 25px;
  }
  .higher-btn {
    padding: 21px;
  }

  .title {
    font-size: 33px;
    line-height: 41px;
  }

  .description {
    font-size: 20px;
    line-height: 24px;
  }
  .hero-title {
    font-size: 30px;
    line-height: 45px;
  }
  .heading {
    font-size: 41px;
    line-height: 37px;
  }

  .offer-price {
    padding: 48px 10px;
  }

  .average {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .works p {
    font-size: 17px;
    line-height: 27px;
  }

  .low-pricing {
    padding: 36px;
  }

  .low-pricing p {
    font-size: 104px;
    line-height: 66px;
  }
  .pricing {
    gap: 20px;
  }
  .get-started p {
    font-size: 17px;
    line-height: 27px;
  }

  .works-offer {
    flex-wrap: wrap;
  }

  .offer-form {
    flex-direction: column;
  }

  .footer img {
    order: -1;
  }

  .higher-btn {
    font-size: 14px;
    padding: 14px;
  }

  .address input {
    font-size: 17px;
    width: calc(100% - 128px);
    height: 46px;
  }
  .home-value input {
    font-size: 17px;
    width: calc(100% - 183px);
    height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .paragraph-center {
    margin: auto;
  }
  .terms-content,
  .terms-service,
  .privacy-policy {
    margin-top: 5rem;
    padding: 0 1.25rem;
    margin-bottom: 1.875rem;
  }
  .terms-content h2,
  .terms-content h3,
  .privacy-policy h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .terms-service > h2,
  .terms-service ol,
  .terms-service p {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
  .terms-service h3 {
    font-size: 1rem;
  }
  .terms-service ol > li > span,
  .terms-service ol > li > h3,
  .terms-service ol > li > p {
    font-size: 1rem;
  }
  .terms-content h5,
  .terms-content p,
  .privacy-policy h5,
  .privacy-policy p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .privacy-policy ol,
  .privacy-policy ul {
    margin-bottom: 20px;
  }
  .privacy-policy ol li,
  .privacy-policy ul li,
  .privacy-policy span {
    font-size: 16px;
  }
}

@media only screen and (max-width: 639px) {
  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .cash-offer h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .paragraph {
    font-size: 12px;
    line-height: 25px;
  }
  .higher-btn {
    font-size: 14px;
    padding: 8px;
  }
  .hero-title {
    font-size: 30px;
    line-height: 40px;
  }
  .title {
    font-size: 28px;
    line-height: 35px;
    text-align: center;
  }

  .description {
    font-size: 18px;
    line-height: 22px;
  }

  .heading {
    font-size: 30px;
    line-height: 35px;
  }

  .offer-price {
    padding: 48px 10px;
  }

  .average {
    text-align: center;
    gap: 20px;
  }

  .average-subtitle {
    font-size: 17px;
    line-height: 25px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .works p {
    font-size: 14px;
    line-height: 22px;
  }

  .low-pricing {
    padding: 30px;
  }

  .low-pricing p {
    font-size: 90px;
    line-height: 57px;
  }

  .get-started {
    text-align: center;
  }

  .get-started p {
    font-size: 17px;
    line-height: 27px;
  }

  .works-offer {
    flex-wrap: wrap;
  }

  .pricing {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing div {
    padding: 8px;
  }

  .pricing h3 {
    margin-bottom: 0;
    font-size: 12px;
  }
  .pricing img:not(:last-child) {
    margin-bottom: 8px;
  }

  .offer-form {
    flex-direction: column;
    padding: 20px;
  }

  .offer-home p {
    font-size: 12px;
    line-height: 27px;
    text-align: center;
  }

  .offer-btn {
    font-size: 12px;
  }

  .footer img {
    order: -1;
  }

  .footer .footer-list h3 {
    font-size: 22px;
  }

  .footer-list a {
    font-size: 15px;
  }
  button {
    cursor: pointer;
  }
  .bg-blue {
    position: relative;
  }

  .started-btn {
    padding: 13px 22px;
    font-size: 20px;
    line-height: 21px;
  }

  .footer-content nav h3 {
    font-size: 15px;
  }

  .higher-btn {
    font-size: 14px;
    padding: 14px;
  }

  .address input {
    font-size: 14px;
    width: calc(100% - 128px);
    height: 46px;
  }
  .home-value input {
    font-size: 14px;
    width: calc(100% - 181px);
    height: 46px;
  }
  .works-offer img {
    max-width: 84px;
  }
  .pricing img {
    max-width: 30%;
  }
  .pricing {
    gap: 20px;
  }
  .g-recaptcha {
    transform: scale(0.72);
    transform-origin: 0 0;
  }
}
@media only screen and (max-width: 375px) {
  .pricing {
    gap: 9px;
  }
}
