/* market ------------------------------------------ */
.market {
  padding-bottom: 20px;
}

.market .title {
  margin-bottom: 43px;
}

.market-info {
  display: flex;
  width: 100%;
  gap: 24px;
}

.market-info__left-text {
  font-size: 20px;
  line-height: 28px;
  padding-top: 2px;
}

.market-info__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* padding-bottom: 8px; */
}

.market-info__left-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  margin-top: auto;
}

.market-info__left-cards > div {
  background: linear-gradient(to bottom, #52b8cd, #95d8e5);
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 184px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0 10px;
}

.market-info__left-cards > div > span:first-child {
  font-size: 58px;
  font-weight: 700;
}

.market-info__right {
  width: 100%;
}

.market-info__right-cards {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.market-info__right-card {
  display: flex;
  gap: 8px;
}

.market-info__right-card-img {
  width: 32px;
  flex-shrink: 0;
}

.market-info__right-card-img img {
  object-fit: contain;
  width: 100%;
}

.market-info__right-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.market-info__right-card-info h5 {
  font-weight: 700;
  font-size: 24px;
  color: #00283c;
}

.market-info__right-card-info span {
  font-size: 18px;
  line-height: 25.2px;
}

.publish-btn {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  margin-top: 32px;
}

/* service ------------------------------------------------------------------------------------------ */
.service {
  padding-bottom: 137px;
  overflow: hidden;
}

.service .title {
  margin-bottom: 22px;
}

.service .cards-container {
  padding: 62px 0 0 0;
}

/* saved ------------------------------------------------------------------------------------------ */
.saved {
  padding-bottom: 123px;
  overflow: hidden;
}

.saved .title {
  letter-spacing: 1.1px;
  word-spacing: -5px;
}

.saved-container {
  background: linear-gradient(to bottom, #52b8cd, #95d8e5);
  width: 100%;
  padding: 56px 72px 0;
  border-radius: 16px;
  color: white;
  overflow: visible;
}

.saved-desc {
  font-size: 24px;
  margin-bottom: 31px;
  display: block;
  text-align: center;
}

.saved-container .title {
  margin-bottom: 28px;
  text-align: center;
  color: white;
}

.saved-range input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  height: 12px;
  background: linear-gradient(
    to right,
    #fff var(--saved-range-progress, 0%),
    #ffffff67 var(--saved-range-progress, 0%)
  );
}

.saved-range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 26px;
  width: 26px;
  background-color: #ffb21a;
  border-radius: 50%;
  border: 2px solid white;
  transition: 0.2s ease-in-out;
  box-shadow: 0 8px 14px #00283c5c;
  box-shadow: 0 8px 14px #00283c1f;
}

.saved-range input:hover::-webkit-slider-thumb {
  box-shadow: 0 8px 14px #00283c70;
  box-shadow: 0 8px 14px #00283c33;
  background-color: #ff941a;
}

.saved-range input::-moz-range-thumb {
  height: 24px;
  width: 24px;
  background-color: #ffb21a;
  border-radius: 50%;
  border: 2px solid white;
  transition: 0.2s ease-in-out;
}

.saved-range {
  width: 100%;
}

.saved-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.saved-info-min {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  gap: 10px;
}

.saved-info-min span {
  font-weight: 800;
}

.saved-info-current {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  text-align: center;
}

.saved-info-current span {
  font-weight: 800;
  font-size: 72px;
}

.saved-info-current > span {
  white-space: nowrap;
}

.saved-info-max {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  text-align: end;
  gap: 10px;
}

.saved-info-max span {
  font-weight: 800;
}

.saved-bottom {
  align-items: end;
  column-gap: 24px;
  display: grid;
  font-size: 24px;
  font-weight: 700;
  line-height: 39px;
  max-width: 100%;
  overflow: visible;
  padding-bottom: 0;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: 100%;
}

.saved-bottom-img-d {
  display: none;
}
.saved-bottom-img-s {
  display: block;
  min-width: 0;
  width: 100%;
}

.saved-bottom > div {
  text-align: center;
  width: 100%;
}

.saved-bottom > .saved-bottom-img {
  align-self: end;
  max-width: min(31vw, 420px);
  position: relative;
}

.saved-bottom img {
  max-width: none;
  width: 100%;
}

.saved-bottom > div:nth-child(2) {
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
  max-width: 400px;
  padding: 52px 0 28px;
}

.saved-bottom > div:first-child {
  justify-self: start;
  transform: translate(-10%, 12%);
}

.saved-bottom > div:last-child img {
  max-width: none;
}

.saved-bottom > div:last-child {
  justify-self: end;
  transform: translate(10%, 10%);
}

/* faq ------------------------------------------------------------------------------------------ */
.faq-title {
  text-align: center;
}

.faq {
  padding-bottom: 80px;
}

.faq-cards {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.faq .title {
  margin-bottom: 53px;
}

.faq-card {
  background: white;
  box-shadow: 0 24px 100px #00283c24;
  padding: 0 36px;
  border-radius: 16px;
  transition: all 0.2s;
}

.faq-card:hover {
  box-shadow: 0 32px 100px #00283c14;
}

.faq-card.expand .faq-card-trigger svg,
.faq-card[data-state="open"] .faq-card-trigger svg {
  transform: rotate(0deg);
}

.faq-card.expand .faq-card-content,
.faq-card[data-state="open"] .faq-card-content {
  height: auto;
}

.faq-card-content {
  height: 0;
  overflow: hidden;
}

.faq-card-content-container {
  padding-bottom: 27px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #00283cb2;
  font-size: 18px;
  line-height: 25.2px;
}

.faq-card-trigger svg {
  transform: rotate(180deg);
}

.faq-card-trigger {
  font-size: 24px;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: #00283c;
}

.faq-card-trigger:focus-visible {
  outline: 2px solid #52b8cd;
  outline-offset: 4px;
}

.faq-card.expand .faq-card-trigger,
.faq-card[data-state="open"] .faq-card-trigger {
  padding-bottom: 12px;
}

.faq-card-content-container ol {
  list-style: decimal;
  padding-left: 33px;
}

.faq-card-content-container ul {
  list-style: disc;
  padding-left: 41px;
  margin-top: 12px;
}

.faq-card-content-container ol li + li {
  margin-top: 9px;
}

.faq-card-content-container ul li + li {
  margin-top: 12px;
}

/* exposure ------------------------------------------------------------------------------------------ */

.exposure {
  padding-bottom: 70px;
}

.exposure button {
  margin-top: 38px;
}

.exposure-continer {
  background: linear-gradient(to bottom, #52b8cd, #95d8e5);
  width: 100%;
  border-radius: 16px;
}

.exposure-content {
  padding: 57px 10px 72px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 842px;
  margin: 0 auto;
  text-align: center;
}

.exposure-content-desc {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}

.exposure-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
}

.exposure-title strong {
  font-weight: 800;
}

/* exposure ------------------------------------------------------------------------------------------ */

.contact {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

.contact-container {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 100px #00283c24;
  padding: 57px 72px 72px;
  display: flex;
  gap: 24px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 8px;
  line-height: 28px;
  width: 100%;
  color: #00283cba;
}

.contact-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  gap: 12px;
}

.contact-right-fields {
  display: flex;
  flex-direction: column;
  gap: 22.4px;
}

.contact-right h6 {
  font-size: 24px;
  font-weight: 700;
  color: #00283c;
  line-height: 140%;
}

.contact-btn {
  width: 100%;
}

.contact-left-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-left-infos {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-left-info img {
  width: 52px;
  height: 52px;
}

.contact-left h5 {
  font-size: 64px;
  font-weight: 700;
  color: #00283c;
  line-height: 77.05px;
}

.contact-right-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-right-field .form-input {
  width: 100%;
  border-radius: 16px;
  padding-left: 20px;
}

.contact-right-field label {
  color: #00283cba;
  font-weight: 600;
}

.contact-right-field textarea::placeholder,
.contact-right-field input::placeholder {
  color: #00283c5d;
}

.contact-right-field input {
  background: transparent;
  width: 100%;
  height: 52px;
  /* padding: 0 20px; */
  font-size: 18px;
  transition: all 0.3s;
  color: #00283c;
  border: none;
  outline: none;
}

.contact-right-field .form-input {
  border: 1px solid #00283c3d;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.contact-right-field .form-input[data-validity="invalid"],
.contact-right-field .form-input--error {
  border-color: #cd5252;
}

.contact-right-field .form-error {
  color: #cd5252;
  font-size: 13px;
  font-weight: 500;
}

.contact-right .form-message {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.contact-right .form-message--success {
  background: #e6f4ea;
  color: #1e7e34;
}

.contact-right .form-message--error {
  background: #fdecea;
  color: #cd5252;
}

.contact-right-field .form-input:hover {
  border: 1px solid #00283c;
}

.contact-right-field-phonecode {
  display: flex;
  align-items: center;
  min-width: 88px;
  width: min-content;
  border-right: 1px solid #00283c1f;
  height: 80%;
  margin-right: 20px;
  font-size: 18px;
  font-weight: 600;
  gap: 1px;
  padding-left: 20px;
}

.contact-right-field-phonecode input {
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  padding: 5px;
}

.form-input.focus {
  border: 1px solid #00283c;
}

.contact-right-field textarea {
  transition: all 0.3s;
  background: transparent;
  border: none;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  font-size: 18px;
  color: #00283c;
  resize: none;
  padding: 20px 0;
}

.contact-right-field input:focus,
.contact-right-field textarea:focus {
  outline: none;
}

.contact-left-img-desc img {
  width: 138%;
  position: absolute;
  top: 0;
  object-fit: contain;
  right: 0;
}

.contact-left-img-mob img {
  width: 100%;
  object-fit: contain;
}

.contact-left-img-mob {
  display: none;
  width: 100%;
}

.contact-left-img-desc {
  margin-top: 46px;
  position: relative;
}

.contact-left-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(to bottom, #52b8cd, #95d8e5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-left-info-icon img {
  width: 24px;
  height: 24px;
}

/* footer ---------------------- */

@media screen and (max-width: 1280px) {
  .saved-bottom > .saved-bottom-img {
    max-width: min(28vw, 360px);
  }

  .saved-bottom > div:first-child {
    justify-self: start;
    transform: translate(-6%, 10%);
  }

  .saved-bottom > div:last-child {
    justify-self: end;
    transform: translate(6%, 10%);
  }
}

@media screen and (max-width: 1024px) {
  .market-info {
    gap: 32px;
  }

  .saved-bottom > div:nth-child(2) {
    grid-column: span 2;
    order: -1;
  }

  .saved-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0;
  }

  .saved-bottom > .saved-bottom-img {
    max-width: none;
  }

  .saved-bottom > div:first-child {
    display: flex;
    justify-content: end;
  }

  .saved-bottom > div:first-child,
  .saved-bottom > div:last-child {
    position: relative;
    transform: none;
  }

  .saved-bottom img {
    width: 141%;
  }

  .saved-bottom-img-d {
    display: block;
    inset: 0;
    min-height: 100px;
    position: absolute;
  }
}

@media screen and (max-width: 900px) {
  .market-info {
    gap: 24px;
  }

  .market-info__left-cards > div > span:first-child {
    font-size: 42px;
  }

  .market-info__left-text {
    font-size: 18px;
  }

  .market-info__right-card-info h5 {
    font-size: 22px;
  }

  .market-info__right-card-info span {
    font-size: 16px;
  }

  .market-info__left-cards > div {
    height: 133px;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .market {
    padding-bottom: 100px;
  }

  .market-info__right-cards {
    padding: 0;
    gap: 18px;
  }

  .market-info__right-card-info {
    gap: 6px;
  }

  .market-info__right-card-info .desc {
    line-height: 20px;
  }

  .market-info__right-card-img {
    width: 23px;
  }

  .market-info {
    flex-direction: column;
  }

  .market-info__left-cards > div > span:first-child {
    font-size: 36px;
  }

  .saved-container .title {
    margin-bottom: 34px;
  }

  .saved-info-min {
    font-size: 16px;
  }

  .saved-info-current span {
    font-size: 28px;
  }

  .saved-info-max {
    font-size: 16px;
  }

  .contact-left {
    font-size: 18px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-left-img-desc {
    display: none;
  }

  .contact-left-img-mob img {
    width: 150%;
    min-width: 110dvw;
  }

  .contact-left-img-mob {
    display: block;
    display: flex;
    justify-content: center;
  }

  .exposure-content {
    padding: 52px;
  }

  .plans {
    margin-bottom: 100px;
  }

  .contact {
    padding-bottom: 100px;
  }

  .service {
    padding-bottom: 100px;
  }

  .saved {
    padding-bottom: 100px;
  }

  .exposure {
    padding-bottom: 50px;
  }

  .faq {
    padding-bottom: 100px;
  }

  .faq-card-content-container {
    font-size: 16px;
  }

  .saved-container {
    padding: 42px 42px 0;
  }

  .plans-card-middle > span {
    margin-bottom: 32px;
  }

  .exposure-content-desc {
    font-size: 20px;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-container {
    padding-bottom: 0;
  }

  /* .publish {
    margin-bottom: 100px;
  } */

  .publish .title {
    margin-bottom: 24px;
  }

  .publish .radio-container > label {
    height: 40px;
  }

  .publish .publish-property-main .radio-container > label {
    height: 83px;
  }

  .publish-listing-price-input input,
  .publish-location-input {
    height: 45px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 640px) {
}

@media screen and (max-width: 480px) {
  .market-info__right-card-info span {
    font-size: 14px;
  }

  .market-info__right-card-info h5 {
    font-size: 20px;
  }

  .market-info__left-cards > div {
    font-size: 16px;
  }

  .market-info__left-cards > div > span:first-child {
    font-size: 32px;
  }

  .market-info__left-text {
    font-size: 16px;
    line-height: 22.2px;
  }

  .market-info__left-cards {
    gap: 16px;
  }

  .market .title {
    margin-bottom: 13.4px;
  }

  .market {
    padding-bottom: 50px;
  }

  .saved-container {
    padding: 27px 36px 0;
  }

  .saved-container .title {
    margin-bottom: 22px;
  }

  .saved-container .saved-desc {
    margin-bottom: 23px;
  }

  .saved-info {
    gap: 8px;
    margin-top: 24px;
  }

  .saved-info > div span {
    margin-top: auto;
    font-size: 16px;
  }

  .saved-info-min {
    font-size: 14px;
    gap: 4px;
  }

  .saved-bottom > div:nth-child(2) {
    padding: 25.6px 0;
    line-height: 30.5px;
  }

  .saved-bottom-img {
    display: flex;
    padding-top: 11px;
  }
  .saved-bottom-img-s {
    position: absolute;
    bottom: 0;
  }
  .saved-bottom-img-d {
    position: relative;
  }

  .saved-info-current {
    font-size: 14px;
    gap: 4px;
  }

  .saved-info-max {
    font-size: 14px;
    gap: 4px;
  }

  .saved-desc {
    font-size: 20px;
  }

  .saved-bottom > div:nth-child(2) {
    font-size: 20px;
  }

  .faq-card-trigger {
    font-size: 20px;
  }

  .contact-container {
    padding: 30px 36px 0;
  }

  .contact-left h5 {
    line-height: 39.62px;
  }

  .contact-left-infos {
    margin-top: 5px;
    gap: 24px;
  }

  .contact-right {
    padding-top: 0;
  }

  .contact-left h5 {
    font-size: 40px;
  }

  .contact-left {
    font-size: 16px;
    gap: 13px;
    line-height: 22px;
  }

  .contact-right-fields {
    gap: 21.7px;
  }

  .contact-right-field {
    gap: 5.7px;
  }

  .contact-left-info img {
    width: 40px;
    height: 40px;
  }

  .contact-right h6 {
    font-size: 20px;
  }

  .contact-right-field label {
    font-size: 14px;
  }

  .contact-right-field textarea {
    padding: 24.5px 0;
    border-radius: 12px;
    font-size: 16px;
  }
  .market-info {
    gap: 18px;
  }
  .contact-right-field .form-input {
    border-radius: 12px;
  }

  .contact-right-field input {
    height: 40px;
    border-radius: 12px;
    /* padding: 0 16px; */
    font-size: 16px;
  }

  .exposure-content {
    padding: 25px 36px 36px;
  }

  .contact {
    padding-top: 32px;
  }

  .exposure-content .title {
    margin-bottom: 17px;
  }
  .exposure button {
    margin-top: 28px;
  }

  .exposure-content-desc {
    margin-bottom: 0;
  }

  .plans {
    margin-bottom: 55px;
  }

  .service {
    padding-bottom: 64px;
  }

  .plans-desc {
    padding: 0;
    margin-bottom: 27px;
  }

  .plans .title {
    margin-bottom: 6px;
  }

  .saved {
    padding-bottom: 51px;
  }

  .faq .title {
    margin-bottom: 28px;
  }

  .faq-card.expand .faq-card-trigger {
    padding-bottom: 6.2px;
  }

  .faq-card-content-container {
    line-height: 20px;
    gap: 4px;
    font-size: 14px;
  }

  .faq-card-content-container ol {
    padding-left: 24px;
  }

  .faq-card-content-container ol ul {
    margin-top: 5px;
    padding-left: 24px;
  }

  .faq-card-content-container ol li + li,
  .faq-card-content-container ul li + li {
    margin-top: 5px;
  }

  .exposure {
    padding-bottom: 32px;
  }

  .faq {
    padding-bottom: 64px;
  }

  .faq-title {
    text-align: start;
  }

  .faq-card-content-container {
    font-size: 14px;
    padding-bottom: 29.5px;
  }

  .faq-cards {
    gap: 17px;
  }

  .exposure-content-desc {
    font-size: 18px;
  }

  .plans-desc {
    font-size: 20px;
  }

  .cards-container {
    padding: 0 0 51px;
  }

  .contact-left-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-left-info-icon img {
    width: 20px;
    height: 20px;
  }

  .plans-card-middle > div > span:first-child {
    font-size: 30px;
  }

  .plans-container {
    gap: 16px;
  }

  .plans-card-top-title-recomend {
    margin-top: 8px;
    justify-content: space-around;
    margin-bottom: 26px;
  }

  .service .title {
    margin-bottom: 0;
  }

  .service-info-left {
    font-size: 16px;
    line-height: 22px;
    gap: 21px;
  }

  .service-info {
    gap: 40px;
  }
}
