@charset "UTF-8";
/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2023 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-Variable";
  src: url("./fonts/Satoshi-Variable.woff2") format("woff2"), url("./fonts/Satoshi-Variable.woff") format("woff"), url("./fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
  * This is a variable font
  * You can controll variable axes as shown below:
  * font-variation-settings: 'wght' 900.0;
  *
  * available axes:

  * 'wght' (range from 300.0 to 900.0)

  */
@font-face {
  font-family: "Satoshi-VariableItalic";
  src: url("./fonts/Satoshi-VariableItalic.woff2") format("woff2"), url("./fonts/Satoshi-VariableItalic.woff") format("woff"), url("./fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Light";
  src: url("./fonts/Satoshi-Light.woff2") format("woff2"), url("./fonts/Satoshi-Light.woff") format("woff"), url("./fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("./fonts/Satoshi-LightItalic.woff2") format("woff2"), url("./fonts/Satoshi-LightItalic.woff") format("woff"), url("./fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"), url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("./fonts/Satoshi-Italic.woff2") format("woff2"), url("./fonts/Satoshi-Italic.woff") format("woff"), url("./fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2"), url("./fonts/Satoshi-Medium.woff") format("woff"), url("./fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("./fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("./fonts/Satoshi-MediumItalic.woff") format("woff"), url("./fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2"), url("./fonts/Satoshi-Bold.woff") format("woff"), url("./fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("./fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("./fonts/Satoshi-BoldItalic.woff") format("woff"), url("./fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2"), url("./fonts/Satoshi-Black.woff") format("woff"), url("./fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2"), url("./fonts/Satoshi-BlackItalic.woff") format("woff"), url("./fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
* {
  box-sizing: border-box;
}

*::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  /* background-color: red; */
}


#search-failed .main-container {
  width: 80%;
  margin: auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#search-failed .main-container .main-heading {
  font-family: "Satoshi-Bold";
  color: #1a1a1a;
  font-size: 2rem;
  padding-top: 1rem;
}
#search-failed .main-container .main-description {
  width: 80%;
  text-align: center;
  margin: auto;
  font-family: "Satoshi-Medium";
}
#search-failed .main-container .bottom-container {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  font-family: "Satoshi-Bold";
}
#search-failed .main-container .bottom-container a {
  display: flex;
  gap: 0.5rem;
}
#search-failed .main-container .bottom-container a span {
  display: flex;
  align-items: center;
}
#search-failed .main-container .bottom-container a span img {
  height: 100%;
}
#search-failed .main-container .bottom-container .contact-us-btn {
  height: 2rem;
  background: #008000;
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
}
#search-failed .main-container .bottom-container .try-again-btn {
  height: 2rem;
  background: transparent;
  color: #1a1a1a;
  border: 1.2px solid #1a1a1a;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.first-tab-item p, .second-tab-item p, .third-tab-item p {
  margin: 0;
  padding: 0;
  font-family: "Satoshi-Medium";
  padding-bottom: 1rem;
  opacity: 0.7;
}

.first-tab-item .search-property-btn, .second-tab-item .search-property-btn, .third-tab-item .search-property-btn {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.first-tab-item, .second-tab-item, .third-tab-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}



.uk-subnav > * {
  flex: none;
  padding-left: 0 !important;
  position: relative;
}

.uk-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 0 !important;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.uk-modal-body {
  /* padding: 30px 30px; */
  padding: unset;
  padding: 0 !important;
  border-radius: 10px;
}
.uk-modal-body .top-wrapper {
  width: 100%;
  height: 3rem;
  background-color: #008000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}
.uk-modal-body .top-wrapper .heading {
  font-family: "Satoshi-bold";
  color: #fff;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  font-size: 1.2rem;
}
.uk-modal-body .content-wrapper {
  width: 90%;
  margin: auto;
  padding-top: 1rem;
}
.uk-modal-body .content-wrapper .property-detail {
  border-bottom: 1px solid rgba(26, 26, 26, 0.4784313725);
  padding: 0.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.uk-modal-body .content-wrapper .property-detail .detail {
  font-family: "Satoshi-Medium";
  color: #1a1a1a;
  align-items: left;
  font-size: 0.9rem;
}
.uk-modal-body .content-wrapper .property-detail .value {
  font-family: "Satoshi-Regular";
  font-size: 0.9rem;
}
.uk-modal-body .bottom-wrapper {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: 1rem 0;
  gap: 0.5rem;
}
.uk-modal-body .bottom-wrapper a {
  height: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Satoshi-Bold";
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.uk-modal-body .bottom-wrapper a span {
  height: 1.2rem;
  display: flex;
  align-items: center;
}
.uk-modal-body .bottom-wrapper a span img {
  height: 100%;
}
.uk-modal-body .bottom-wrapper .property-search {
  background-color: #008000;
  color: #fff;
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.uk-modal-body .bottom-wrapper .login-btn {
  background-color: transparent;
  color: #1a1a1a;
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.8rem;
  display: flex;
  border: 1.2px solid #1a1a1a;
  align-items: center;
  border-radius: 4px;
}

.disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 80%;
  padding: 1rem 0;
  margin: auto;
}
.disclaimer .description {
  width: 90%;
  text-align: center;
  color: #1a1a1a;
  font-size: 0.8rem;
  font-family: "Satoshi-Medium";
}

.street-address-container {
  display: flex;
  gap: 1rem;
}
.street-address-container span {
  font-family: "Satoshi-Medium";
  color: #1a1a1a;
  opacity: 0.8;
}
.street-address-container ::-moz-placeholder {
  font-size: 0.8rem;
  color: #1a1a1a;
  opacity: 0.5;
}
.street-address-container ::placeholder {
  font-size: 0.8rem;
  color: #1a1a1a;
  opacity: 0.5;
}

.span-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.span-items input {
  height: 2.5rem;
  border: 1.2px solid #dedede;
  border-radius: 4px;
  padding-left: 0.5rem;
  outline: none;
}

.search-property-btn {
  background-color: #008000;
  color: #fff;
  height: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  margin-top: 1rem;
  gap: 0.5rem;
  font-family: "Satoshi-Bold";
  border-radius: 4px;
  text-decoration: none;
  z-index: 2;
}

.search-property-btn:hover {
  text-decoration: none;
  color: #fff;
}

.input-tabs-container {
  padding: 0.5rem;
}

.uk-subnav-pill {
  height: 3rem;
  margin: unset;
  padding: 1.5rem;
}
.uk-subnav-pill .uk-active a {
  height: 3rem;
  background-color: unset;
  background-color: #6BC68F !important;
  text-transform: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 1.5rem;
}

.search-preview-container {
  height: 100%;
  width: 100%;
}
.search-preview-container .heading {
  font-size: 1.2rem;
  font-family: "Satoshi-Bold";
  color: #1a1a1a;
}
.search-preview-container .property-container {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.search-preview-container .property-container a {
  padding: 0.3rem 0.5rem;
  background: #eeeeee;
  color: #1a1a1a;
  opacity: 0.8;
  font-size: 0.8rem;
  border-radius: 4px;
  font-family: "Satoshi-Medium";
  text-decoration: none;
}
.search-preview-container .property-container a:hover {
  color: #008000;
}


.about-container {
  /* height: 100%; */
  width: 1210px;
  margin: 2rem auto;
}
.about-container .about-heading {
  height: 2rem;
  width: 6rem;
  background: #CCE6CC;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-container .about-heading .sub-heading {
  font-size: 1rem;
  color: #008000;
  position: relative;
  top: 50%;
  margin-top: 0.3rem;
  font-family: "Satoshi-Black";
  transform: translateY(-50%);
}
.about-container .top-about-band-container {
  margin-top: 2rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  width: 45%;
}
.about-container .top-about-band-container .main-heading {
  font-size: 2rem;
  font-family: "Satoshi-Bold";
  width: unset;
  width: fit-content;
  line-height: 1.1;
  margin: unset;
  margin: 0;
}
.about-container .top-about-band-container .layered-images {
  height: 10rem;
}
.about-container .top-about-band-container .layered-images img {
  height: 100%;
}
.about-container .about-side-side > div {
  width: 45%;
}
.about-container .about-side-side {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 5rem;
}

.about-container .about-side-side .video-container {
  position: relative;
  height: 30rem;
  scale: 1.3;
  transform: translateY(2.5rem);
}
.about-container .about-side-side .video-container .main-video-container {
  position: absolute;
  z-index: 2;
  width: 73%;
  left: 50%;
  top: 10rem;
  height: 16rem;
  transform: translateX(-50%);
}
.about-container .about-side-side .video-container .main-video-container iframe {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.about-container .about-side-side .video-container .mockup-container {
  position: absolute;
  top: 0%;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.about-container .about-side-side .left p {
  font-family: "Satoshi-Regular";
  color: #1a1a1a;
}
.about-container .about-side-side .left .about-description {
  width: 100%;
}
.about-container .about-side-side .left .cta-btn {
  background: #008000;
  color: #fff;
  margin-top: 2rem;
  border-radius: 4px;
  display: flex;
  font-size: 0.9rem;
  height: 2rem;
  width: fit-content;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Satoshi-Bold";
  padding: 0 0.5rem;
}
.about-container .about-side-side .right {
  margin: 0;
  width: 100%;
}
.about-container .about-side-side .right .right-heading h2 {
  font-size: 1.2rem;
  font-family: "Satoshi-Bold";
  width: 100%;
  margin: unset;
}
.about-container .about-side-side .right .listed-container {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.about-container .about-side-side .right .listed-container p {
  font-size: 0.9rem;
}
.about-container .about-side-side .right .listed-container > div {
  display: flex;
  align-items: center;
  height: 1.5rem;
  gap: 1rem;
}
.about-container .about-side-side .right .listed-container > div p {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-family: "Satoshi-Medium";
}

.simpleParallax{
  height: 100%;
}

.services-container {
  background: #F4F4F4;
  margin-top: 2rem;
  padding: 2rem 0;
}
.services-container .main-heading {
  font-family: "Satoshi-Bold";
  font-size: 1.5rem;
  text-transform: capitalize;
  width: 90%;
  text-align: center;
  margin: auto;
}
.services-container .description {
  width: 90%;
  text-align: center;
  margin: auto;
  padding-top: 1rem;
}
.services-container .services-card-container {
  width: 90%;
  margin: auto;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.services-container .services-card-container .top-cards-container,
.services-container .services-card-container .bottom-cards-container {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 3rem;
  margin: auto;
}
.services-container .services-card-container .card-component {
  border: 1.2px solid #dedede;
  border-radius: 10px;
  width: 90%;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: auto;
  position: relative;
}
.services-container .services-card-container .card-component .card-btn {
  background: #CCE6CC;
  margin: 2rem auto 0 auto;
  display: flex;
  height: 2rem;
  border-radius: 4px;
  align-items: center;
  font-family: "Satoshi-Medium";
  padding: 0 1rem;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: #008000;
  text-transform: capitalize;
  font-family: "Satoshi-Bold";
}
.services-container .services-card-container .card-component .card-heading {
  font-family: "Satoshi-Bold";
  font-size: 1.2rem;
  margin: 0;
  padding-top: 1rem;
  text-align: center;
}
.services-container .services-card-container .card-component .card-description {
  font-family: "Satoshi-Regular";
  font-size: 0.9rem;
  margin: 0;
  padding-top: 1rem;
  text-align: center;
}
.services-container .services-card-container .card-component .icon-container {
  height: 4rem;
  border-radius: 4px;
  width: 4rem;
  border: 1.2px solid #dedede;
  margin-top: -2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.services-container .services-card-container .card-component .icon-container img {
  height: 100%;
  width: 100%;
}

.map-containers {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.map-containers .map-container {
  width: 100%;
  height: 50vh;
}
.map-containers .map-container iframe {
  width: 100%;
}
.map-containers .map-heading {
  font-size: 1.2rem;
  font-family: "Satoshi-Bold";
}
.map-containers .map-heading span {
  font-size: 0.9rem;
  font-family: "Satoshi-Medium";
}

.contact-us-container {
  width: 90%;
  padding-top: 1rem;
  margin: auto;
}
.contact-us-container .wrapper .main-description {
  font-size: 1rem;
  font-family: "Satoshi-Regular";
}
.contact-us-container .main-heading {
  font-size: 1.5rem;
  font-family: "Satoshi-Bold";
  margin-top: 2rem;
  text-transform: capitalize;
}
.contact-us-container .form-container {
  margin-top: 3rem;
  border: 1.2px solid #dedede;
  border-radius: 10px;
  padding: 1rem;
}
.contact-us-container .form-container input, .contact-us-container .form-container textarea {
  outline: none;
}
.contact-us-container .form-container input {
  width: 100%;
  margin-top: 0.5rem;
  height: 2rem;
  border: 1.2px solid #dedede;
  border-radius: 4px;
  padding-left: 0.5rem;
  font-family: "Satoshi-Medium";
}
.contact-us-container .form-container textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 1.2px solid #dedede;
  border-radius: 4px;
  padding-left: 0.5rem;
  font-family: "Satoshi-Medium";
  padding-top: 0.5rem;
}
.contact-us-container .form-container .heading {
  font-size: 1.2rem;
  font-family: "Satoshi-Bold";
}
.contact-us-container .form-container .legend {
  margin: 0;
  font-family: "Satoshi-Medium";
  font-size: 0.9rem;
  padding-top: 1rem;
  color: #1a1a1a;
}
.contact-us-container .form-container .submit-btn {
  margin-top: 1rem;
  background: #008000;
  color: #fff;
  display: flex;
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  font-family: "Satoshi-Medium";
  font-size: 0.9rem;
  padding: 0 1rem;
  text-decoration: none;
  align-items: center;
}

.freaquently-asked-wrapper {
  width: 90%;
  margin: 2rem auto 0 auto;
}
.freaquently-asked-wrapper .main-heading {
  font-size: 1.5rem;
  font-family: "Satoshi-Bold";
}
.freaquently-asked-wrapper .faq-container {
  margin-top: 1rem;
}
.freaquently-asked-wrapper .faq-container a {
  border: 1.2px solid #dedede;
  padding: 0.5rem;
  font-size: 0.9rem;
  border-radius: 4px;
  font-family: "Satoshi-Medium";
}
.freaquently-asked-wrapper .faq-container p {
  font-size: 0.9rem;
  padding-left: 0.5rem;
}

.parallax-container {
  height: 50vh;
  width: 100%;
  background: #000;
  margin-top: 4rem;
  position: relative;
}
.parallax-container .image {
  height: 100% !important;
}
.parallax-container img {
  position: relative;
  height: 50vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.parallax-container .parallax-overlay {
  top: 0;
  left: 0;
  height: 50vh;
  width: 100%;
  background: linear-gradient(141deg, #000 0%, rgba(0, 0, 0, 0) 93.23%);
  position: absolute;
  z-index: 1;
}
.parallax-container .wrapper {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.parallax-container .wrapper .my-container {
  position: relative;
  width: 90%;
  margin: auto;
  text-align: center;
}
.parallax-container .wrapper .my-container .main-heading {
  font-size: 2.5rem;
  font-family: "Satoshi-Black";
  color: #fff;
  width: 90%;
  margin: auto;
}
.parallax-container .wrapper .my-container .description-text {
  margin: auto;
  width: 90%;
  color: #fff;
  margin-top: 2rem;
}
.parallax-container .wrapper .my-container .cta {
  margin-top: 2rem !important;
  display: flex;
  height: 2rem;
  margin: auto;
  align-items: center;
  padding: 0 1rem;
  font-family: "Satoshi-Bold";
  background: #008000;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Satoshi-Variable";
}
body .slider-wrapper {
  position: relative;
}
body .slider-wrapper .slider-container {
  position: relative;
}
body .user-account {
  display: none;
}
body .mobile-logos img {
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
body .overlay-gradient {
  position: relative;
  z-index: 2;
  height: 100dvh;
  width: 100%;
  background: linear-gradient(180deg, #1A1A1A 0%, rgba(255, 255, 255, 0) 100%);
}
body .slider-cards-navigation {
  margin-top: 2rem !important;
  display: flex;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
  width: 440px;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
body .slider-cards-navigation > a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.2px solid #dedede;
  background-color: #f7f7f7;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  text-decoration: none;
  color: #1a1a1a;
  font-family: "Satoshi-Bold";
  gap: 0.5rem;
  border-radius: 10px;
  width: 10rem;
}
body .my-sliders {
  margin-top: 2rem;
  position: relative;
}
body .my-sliders .slider {
  z-index: -1;
}
body .my-sliders .description-text {
  margin: unset !important;
  padding: 0 !important;
  width: 100%;
}
body .my-sliders .banner-container {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  padding: 4rem 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .my-sliders .banner-container .ecadastre-logo {
  position: relative;
  z-index: 100;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
body .my-sliders .banner-container .ecadastre-logo img {
  height: 5rem;
}
body .my-sliders .banner-container .ecadastre-logo p {
  color: #fff;
  opacity: 0.9;
  font-family: "Satoshi-Black";
}
body .my-sliders .banner-container .main-heading {
  font-family: "Satoshi-Bold";
  color: #fff;
  text-align: center;
}
body .my-sliders .banner-container .description-text {
  font-family: "Satoshi-Medium";
  color: #fff;
  text-align: center;
}
body .my-sliders .banner-container .btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 2rem;
  margin-top: 1.5rem;
  background: #008000;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: "Satoshi-Bold";
  padding: 0.5rem 0.6rem;
  text-transform: capitalize;
}

.container-shaun{
  height: inherit !important;
}

@media (min-width: 1400px) {
  body {
    height: 100%;
    width: 100%;
  }
  body ::-moz-placeholder {
    font-size: 0.9rem !important;
  }
  body ::placeholder {
    font-size: 0.9rem !important;
  }
  body .banner-container .main-heading {
    font-size: 4rem !important;
  }
  body .banner-container .cta {
    height: 2.5rem !important;
  }
}
@media (min-width: 1200px) {
  body {
    width: 100%;
    height: 100%;
  }
  .gvt-logo,
  .dsg-logo {
    visibility: unset;
    height: 5.9rem !important;
    width: 10rem;
  }
  .gvt-logo img,
  .dsg-logo img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider-wrapper .slider-cards-navigation {
    width: 700px !important;
  }
  .banner-container {
    width: 90% !important;
  }
}
@media (min-width: 992px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .user-account {
    visibility: unset;
    display: block !important;
  }
  .user-account .logout-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Satoshi-Bold";
    background: #e23e3e;
    border-radius: 4px;
    margin-top: 1rem;
  }
  .user-account .logout-btn:hover {
    color: #fff;
    background: #b31a1a;
  }
  .user-action {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #008000;
    background: #cce6cc;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .user-action .username {
    color: #008000;
  }
  .user-action .avatar {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .user-action .avatar .user-icon {
    color: #1a1a1a;
  }
  .user-action span {
    text-decoration: none;
    color: #008000;
    font-family: 0.9rem;
    font-family: "Satoshi-Bold";
  }
  .user-action .user-icon {
    color: #008000;
  }
  .user-action:hover {
    text-decoration: none;
  }
  body {
    font-family: "Satoshi-Variable";
    height: 100%;
    width: 100%;
    overflow-x: hidden;
  }
  .btn {
    margin-top: 2rem !important;
  }
  .container {
    height: 100vh;
    width: 100%;
  }
  .slider-container {
    padding-top: 1rem;
    height: 82vh;
    width: 100%;
    position: relative;
  }
  .slider-container .cards-container {
    position: relative;
    z-index: 10;
    transform: translateY(-2rem);
  }
  .slider-container .overlay-gradient {
    height: 90vh;
    width: 100%;
    top: 0;
    position: absolute;
    z-index: 1;
    background: linear-gradient(109deg, #000E00 0%, rgba(26, 26, 26, 0) 100%);
  }
  .slider-container .my-sliders {
    margin-top: -6.5rem;
    position: relative;
  }
  .slider-container .slider-cards-navigation {
    padding: unset !important;
    width: 800px !important;
    justify-content: space-between;
    position: relative;
    z-index: 3;
  }
  .slider-container .slider-cards-navigation a {
    text-decoration: none;
    background: #fff;
    width: 12rem;
    border-radius: 4px;
    color: #1a1a1a;
    font-family: "Satoshi-Bold";
    padding: 0.3rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease-in-out;
  }
  .slider-container .slider-cards-navigation a:hover {
    transform: translateY(-0.2rem);
    background: #fff;
    scale: 1.02;
    border: 1.2px solid #1a1a1a;
  }
  .slider-container .banner-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: unset !important;
    align-items: unset !important;
  }
  .slider-container .banner-container .ecadastre-logo {
    position: unset;
    margin-top: 3rem !important;
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2 !important;
  }
  .slider-container .banner-container .ecadastre-logo img {
    position: relative;
    z-index: 100;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider-container .banner-container .ecadastre-logo p {
    font-family: "Satoshi-Bold" !important;
    color: #fff;
    letter-spacing: 0.2px;
    font-size: 1.3rem;
    opacity: 0.8;
  }
  .slider-container .banner-container .main-heading {
    margin-top: 1rem;
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: "Satoshi-Bold";
    text-align: unset !important;
  }
  .slider-container .banner-container .description-text {
    color: #fff;
    margin-top: 1rem;
    font-family: "Satoshi-Medium";
    font-size: 1.2rem;
    font-family: "Satoshi-Bold";
    text-align: unset !important;
    width: 50%;
    opacity: 0.9;
  }
  .slider-container .banner-container .cta {
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.3rem;
    width: 10rem;
    font-family: "Satoshi-Bold";
    text-transform: capitalize;
    height: 2rem;
    color: #fff;
    border-radius: 4px;
    background: #008000;
  }


/* 
xxxxxxxxxxxxxxxxxxxxxxx
start
xxxxxxxxxxxxxxxxxxxx
*/
.search-properties-container {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  height: 12rem;
  width: 30rem;
  background: #fff;
  border-radius: 25px;
}
.search-properties-container .icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
}
.search-properties-container .top {
  display: flex;
  gap: 1rem;
  padding-left: 1.4rem;
}
.search-properties-container .top button {
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  border-radius: 10rem;
  font-family: "Satoshi-Medium";
  border: 1.2px solid #dedede;
  background-color: #fff;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.8);
}
.search-properties-container .bottom {
  margin-top: 1rem;
  padding-left: 1.4rem;
  display: flex;
  align-items: center;
}
.search-properties-container .bottom input {
  height: 2.4rem;
  width: 24rem;
  border-radius: 10rem;
  border: 1.2px solid #dedede;
  outline: none;
  padding-left: 1rem;
}
.search-properties-container .bottom ::-moz-placeholder {
  font-size: 0.8rem !important;
}
.search-properties-container .bottom ::placeholder {
  font-size: 0.8rem !important;
}
.search-properties-container .bottom .search-btn {
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  background: #008000;
  color: #fff;
  text-decoration: none;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 10rem;
  margin-left: -6rem;
  font-size: 0.8rem;
  font-family: "Satoshi-Bold";
  display: flex;
  gap: 0.5rem;
}
.search-properties-container .bottom .searchIcon {
  height: 1rem;
  width: 1rem;
  display: flex;
  align-items: center;
}
.search-properties-container .switcherNav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-left: 1rem;
  border-bottom: 2px solid rgba(222, 222, 222, 0.3882352941);
}
.search-properties-container .switcherNav button {
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  border: 2px solid rgba(0, 128, 0, 0.2);
  border-bottom: none;
  background: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: #1a1a1a;
  cursor: pointer;
  font-family: "Satoshi-Bold";
}
.search-properties-container .switcherNav .uk-active {
  color: #fff !important;
  border: 2px solid #6BC68F;
  background-color: #6BC68F;
}


/* 
xxxxxxxxxxxxxxxxxxxxxxx
end
xxxxxxxxxxxxxxxxxxxx
*/



  ::-moz-placeholder {
    font-family: "Satoshi-Medium";
  }
  ::placeholder {
    font-family: "Satoshi-Medium";
  }
  .about-container {
    /* height: 100%; */
    width: 1210px;
    margin: 5rem auto;
    /* padding-top: 3rem; */
  }
  .about-container .about-heading {
    height: 2rem;
    width: 6rem;
    background: #CCE6CC;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .about-container .about-heading .sub-heading {
    font-size: 1rem;
    color: #008000;
    position: relative;
    top: 50%;
    margin-top: 0.3rem;
    font-family: "Satoshi-Black";
    transform: translateY(-50%);
  }
  .about-container .top-about-band-container {
    margin-top: 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    width: 45%;
  }
  .about-container .top-about-band-container .main-heading {
    font-size: 2rem;
    font-family: "Satoshi-Bold";
    width: unset;
    width: fit-content;
    line-height: 1.1;
    margin: unset;
    margin: 0;
  }
  .about-container .top-about-band-container .layered-images {
    height: 10rem;
  }
  .about-container .top-about-band-container .layered-images img {
    height: 100%;
  }
  .about-container .about-side-side > div {
    width: 45%;
  }
  .about-container .about-side-side {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 5rem;
  }
  /* .about-container .about-side-side .video-container {
    margin-top: -10rem !important;
  } */
  .about-container .about-side-side .video-container iframe {
    margin-top: -9rem !important;
    height: 100% !important;
    width: 100%;
  }
  .about-container .about-side-side .left p {
    font-family: "Satoshi-Regular";
    color: #1a1a1a;
  }
  .about-container .about-side-side .left .about-description {
    width: 100%;
  }
  .about-container .about-side-side .left .cta-btn {
    background: #008000;
    color: #fff;
    margin-top: 2rem;
    border-radius: 4px;
    display: flex;
    font-size: 0.9rem;
    height: 2rem;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Satoshi-Bold";
  }
  .about-container .about-side-side .right {
    margin: 0;
    width: 100%;
  }
  .about-container .about-side-side .right .right-heading h2 {
    font-size: 1.2rem;
    font-family: "Satoshi-Bold";
    width: 100%;
    margin: unset;
  }
  .about-container .about-side-side .right .listed-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-direction: column;
  }
  .about-container .about-side-side .right .listed-container > div {
    display: flex;
    align-items: center;
    height: 1.5rem;
    gap: 1rem;
  }
  .about-container .about-side-side .right .listed-container > div p {
    color: #1a1a1a;
    font-size: 0.9rem;
    font-family: "Satoshi-Medium";
  }
  .services-container {
    background: #F4F4F4;
    margin-top: 4rem;
    padding: 2rem 0;
    padding-bottom: 4rem;
  }
  .services-container .services-subheading {
    background: #CCE6CC;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    height: 2rem;
    position: relative;
  }
  .services-container .services-subheading h2 {
    font-family: "Satoshi-Black";
    color: #008000;
    font-size: 1rem;
    position: relative;
    top: 50%;
    padding: 0 0.5rem;
    transform: translateY(-50%);
  }
  .services-container .main-heading {
    width: -moz-fit-content;
    width: fit-content;
    font-family: "Satoshi-Bold";
    color: #1a1a1a;
    text-transform: capitalize;
    font-size: 2rem;
    padding-top: 1rem;
    margin: auto;
  }
  .services-container .description {
    width: 35rem;
    text-align: center;
    padding-top: 1.5rem;
    margin: auto;
    color: #1a1a1a;
    opacity: 0.9;
    font-family: "Satoshi-Medium";
  }
  .services-card-container {
    display: flex;
    gap: 4rem;
    flex-direction: column;
    margin-top: unset;
    width: 1210px;
    align-items: center;
    margin: auto;
  }
  .services-card-container .top-cards-container {
    margin-top: 2rem !important;
  }
  .services-card-container .top-cards-container,
  .services-card-container .bottom-cards-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
  }
  .services-card-container .top-cards-container .card-component,
  .services-card-container .bottom-cards-container .card-component {
    border: 1.2px solid #dedede;
    border-radius: 10px;
    width: 22rem;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
  }
  .services-card-container .top-cards-container .card-component .icon-container,
  .services-card-container .bottom-cards-container .card-component .icon-container {
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
    transform: unset;
    left: unset;
    border: unset;
    margin-top: -1.5rem;
    justify-content: start;
    background-color: transparent;
  }
  .services-card-container .top-cards-container .card-component .icon-container img,
  .services-card-container .bottom-cards-container .card-component .icon-container img {
    display: flex;
    justify-content: start;
    position: relative;
    left: 0;
    width: 4rem;
    height: 4rem;
    border: 1.2px solid #dedede;
    height: 100%;
    border-radius: 4px;
  }
  .services-card-container .top-cards-container .card-component .card-btn,
  .services-card-container .bottom-cards-container .card-component .card-btn {
    margin: unset;
    display: flex;
    background: #6BC68F;
    color: #fff;
    height: 2rem;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 4px;
    font-family: "Satoshi-Bold";
  }
  .services-card-container .top-cards-container div,
  .services-card-container .bottom-cards-container div {
    background: #fff;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 18rem;
    padding-right: 1rem;
  }
  .services-card-container .top-cards-container div .card-heading,
  .services-card-container .bottom-cards-container div .card-heading {
    margin: 0;
    padding-top: 2rem;
    font-size: 1.2rem;
    color: #1a1a1a;
    text-align: left !important;
    font-family: "Satoshi-Bold";
  }
  .services-card-container .top-cards-container div .card-description,
  .services-card-container .bottom-cards-container div .card-description {
    font-family: "Satoshi-Medium";
    margin: 0;
    padding-top: 1rem;
    color: #1a1a1a;
    opacity: 0.8;
    font-size: 0.9rem !important;
    color: #1a1a1a;
    padding-bottom: 2rem;
    text-align: left !important;
  }
  .survey-registration-container {
    width: 100%;
    height: 100%;
    padding-bottom: 4rem;
  }
  .survey-registration-container .wrapper {
    margin-top: 4rem !important;
    width: 1210px;
    margin: auto;
  }
  .survey-registration-container .wrapper .section-heading {
    background: #CCE6CC;
    display: flex;
    height: 2rem;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 0.5rem;
    position: relative;
  }
  .survey-registration-container .wrapper .section-heading h2 {
    position: relative;
    margin-top: -0.2rem;
    top: 50%;
    width: 8rem;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateY(-50%);
    font-size: 1rem;
    font-family: "Satoshi-Black";
    color: #008000;
  }
  .survey-registration-container .wrapper .main-heading {
    margin: 0;
    font-family: "Satoshi-Bold";
    font-size: 2rem;
    padding-top: 1rem !important;
  }
  .survey-registration-container .wrapper .main-description {
    width: 45%;
    padding-top: 1rem;
    color: #1a1a1a;
    opacity: 0.9;
    font-family: "Satoshi-Medium";
  }
  .survey-registration-container .wrapper .side-side {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
  }
  .survey-registration-container .wrapper .side-side .left-side {
    margin-top: 2rem;
  }
  .survey-registration-container .wrapper .side-side .left-side .heading {
    font-family: "Satoshi-Bold";
    font-size: 1.2rem;
  }
  .survey-registration-container .wrapper .side-side .left-side .sub-heading {
    margin: 0;
    font-size: 1rem;
    color: #1a1a1a;
    opacity: 0.8;
    font-family: "Satoshi-Medium";
  }
  .survey-registration-container .wrapper .side-side .left-side .listed-points {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: unset;
    margin-top: 1rem !important;
  }
  .survey-registration-container .wrapper .side-side .left-side .listed-points li {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #1a1a1a;
    opacity: 0.9;
    padding: 0;
    margin: 0 !important;
    height: 2.2rem;
  }
  .survey-registration-container .wrapper .side-side .right-side {
    margin-top: -12rem;
  }
  .survey-registration-container .wrapper .side-side .right-side .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .survey-registration-container .wrapper .side-side .right-side .content-wrapper {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .survey-registration-container .wrapper .side-side .right-side .content-wrapper .bar {
    height: 8rem;
    width: 2px;
    background-color: #008000;
  }
  .survey-registration-container .wrapper .side-side .right-side .content-wrapper .description {
    font-family: "Satoshi-Medium";
    color: #1a1a1a;
    opacity: 0.9;
    font-size: 0.9rem;
    width: 80%;
  }
  .survey-registration-container .wrapper .side-side > div {
    width: 45%;
  }
  .freaquently-asked-wrapper {
    width: 1210px;
    margin: auto;
    margin-top: 4rem;
  }
  .freaquently-asked-wrapper .main-subheading {
    background: #CCE6CC;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0.5rem;
    margin: 0;
  }
  .freaquently-asked-wrapper .main-subheading h3 {
    font-family: "Satoshi-Black";
    color: #008000;
    font-size: 1rem;
  }
  .freaquently-asked-wrapper .main-heading {
    font-family: "Satoshi-Bold";
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
  }
  .freaquently-asked-wrapper .faq-container {
    margin-top: 2rem;
  }
  .freaquently-asked-wrapper .faq-container a {
    border: 1.2px solid #dedede;
    padding: 1rem;
    color: #1a1a1a;
    font-family: "Satoshi-Medium";
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  .freaquently-asked-wrapper .faq-container a:hover {
    background: #fdfdfd;
    border: 1.2px solid #008000;
  }
  .freaquently-asked-wrapper .faq-container p {
    padding-left: 1rem;
  }
  .project-launch-container {
    width: 1210px;
    margin: auto;
    margin-top: 4rem !important;
  }
  .project-launch-container .main-subheading {
    background: #CCE6CC;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0.5rem;
    margin: 0;
  }
  .project-launch-container .main-subheading h3 {
    font-family: "Satoshi-Black";
    color: #008000;
    font-size: 1rem;
  }
  .project-launch-container .main-heading {
    font-family: "Satoshi-Bold";
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
  }
  .project-launch-container .description {
    font-family: "Satoshi-Medium";
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
    padding-top: 1rem;
  }
  .project-launch-container .description span {
    font-family: "Satoshi-Bold";
    color: #008000;
  }
  .project-launch-container .launch-slider-container {
    margin-top: 2rem;
  }
  .project-launch-container .launch-slider-container li {
    border-radius: 10px;
  }
  .launch-magazine {
    margin-top: 1rem;
    display: flex;
    height: 2rem;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1rem;
    background: #008000;
    color: #fff;
    font-family: "Satoshi-Bold";
    border-radius: 4px;
    font-size: 0.9rem;
    align-items: center;
    text-decoration: none;
  }
  .launch-magazine:hover {
    text-decoration: none;
    color: #fff;
  }
  .topographic-maps-container {
    margin-top: 2rem;
    background: #f7f7f7;
  }
  .topographic-maps-container .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1210px;
    margin: auto;
    padding: 2rem 0;
    padding-bottom: 4rem;
  }
  .topographic-maps-container .wrapper .image-container img {
    height: 30rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .topographic-maps-container .wrapper .content-wrapper {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .topographic-maps-container .wrapper .content-wrapper .bar {
    height: 8rem;
    width: 2px;
    background-color: #008000;
  }
  .topographic-maps-container .wrapper .content-wrapper .description {
    font-family: "Satoshi-Medium";
    color: #1a1a1a;
    opacity: 0.9;
    font-size: 0.9rem;
    width: 80%;
  }
  .topographic-maps-container .wrapper .main-subheading {
    background: #CCE6CC;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0.5rem;
    margin: 0;
  }
  .topographic-maps-container .wrapper .main-subheading h3 {
    font-family: "Satoshi-Black";
    color: #008000;
    font-size: 1rem;
  }
  .topographic-maps-container .wrapper .subheading {
    font-family: "Satoshi-Medium";
  }
  .topographic-maps-container .wrapper .main-heading {
    font-family: "Satoshi-Bold";
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
  }
  .topographic-maps-container .wrapper .listed-points {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: unset;
    margin-top: 1rem !important;
  }
  .topographic-maps-container .wrapper .listed-points li {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #1a1a1a;
    opacity: 0.9;
    padding: 0;
    margin: 0 !important;
    height: 2.2rem;
  }
  .topographic-maps-container .wrapper > div {
    width: 45%;
  }
  .contact-us-container {
    margin-top: 4rem;
    padding-bottom: 4rem;
  }
  .contact-us-container .wrapper {
    width: 1210px;
    margin: auto;
  }
  .contact-us-container .wrapper .main-heading {
    font-family: "Satoshi-Bold";
    color: #1a1a1a;
    font-size: 2rem;
    text-align: unset;
  }
  .contact-us-container .wrapper .main-description {
    width: 50%;
    font-size: 1rem;
    color: #1a1a1a;
    opacity: 0.9;
  }
  .contact-us-container .wrapper .side-side {
    display: flex;
    width: 100%;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
  }
  .contact-us-container .wrapper .side-side .form-container {
    margin-top: 1rem;
    border: 1.2px solid #dedede;
    padding: 1rem;
    padding-bottom: 2rem;
    border-radius: 10px;
  }
  .contact-us-container .wrapper .side-side .form-container .heading {
    font-family: "Satoshi-Bold";
    font-size: 1.5rem;
    color: #1a1a1a;
    opacity: 0.8;
  }
  .contact-us-container .wrapper .side-side .form-container .legend {
    margin: 0;
    padding-left: 0.5rem;
    padding-top: 1rem;
    font-size: 1rem;
    font-family: "Satoshi-Medium";
    color: #1a1a1a;
  }
  .contact-us-container .wrapper .side-side .form-container input {
    height: 2.2rem;
    outline: none;
    border: 1.2px solid #dedede;
    padding-left: 0.5rem;
    border-radius: 4px;
    width: 30rem;
    margin-top: 0.5rem;
  }
  .contact-us-container .wrapper .side-side .form-container textarea {
    outline: none;
    border: 1.2px solid #dedede;
    padding-left: 0.5rem;
    border-radius: 4px;
    width: 30rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .contact-us-container .wrapper .side-side .form-container .submit-btn {
    display: flex;
    height: 2rem;
    text-decoration: none;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1rem;
    background: #008000;
    color: #fff;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-family: "Satoshi-Bold";
    border-radius: 4px;
  }
  .contact-us-container .wrapper .side-side .map-containers {
    display: flex;
    margin-top: -1rem;
    flex-direction: column;
  }
  .contact-us-container .wrapper .side-side .map-containers h2 {
    margin: 0;
    font-family: "Satoshi-Black";
    color: #1a1a1a;
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .contact-us-container .wrapper .side-side .map-containers .map-heading span {
    font-size: 0.9rem;
    font-family: "Satoshi-Medium";
    padding-left: 0.5rem;
    color: #4d4d4d;
  }
  .contact-us-container .wrapper .side-side .map-containers .map-container {
    margin-top: 1rem;
    height: 16rem;
  }
  .contact-us-container .wrapper .side-side .map-containers .map-container iframe {
    height: 100%;
    border-radius: 10px;
  }
  .parallax-container {
    height: 70vh;
    width: 100%;
    background: #000;
    margin-top: 0 !important;
    position: relative;
  }
  .parallax-container .image {
    height: 100% !important;
  }
  .parallax-container img {
    position: relative;
    height: 70vh;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .parallax-container .parallax-overlay {
    top: 0;
    left: 0;
    height: 70vh;
    width: 100%;
    background: linear-gradient(141deg, #000 0%, rgba(0, 0, 0, 0) 93.23%);
    position: absolute;
    z-index: 1;
  }
  .parallax-container .wrapper {
    position: absolute;
    top: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .parallax-container .wrapper .my-container {
    position: relative;
    width: 1210px;
    margin: auto;
    text-align: center;
  }
  .parallax-container .wrapper .my-container .main-heading {
    font-size: 3.5rem;
    font-family: "Satoshi-Black";
    color: #fff;
    width: 50%;
    margin: auto;
  }
  .parallax-container .wrapper .my-container .description-text {
    margin: auto;
    width: 50%;
    color: #fff;
    margin-top: 2rem;
  }
  .parallax-container .wrapper .my-container .cta {
    margin-top: 2rem !important;
    display: flex;
    height: 2rem;
    margin: auto;
    align-items: center;
    padding: 0 1rem;
    font-family: "Satoshi-Bold";
    background: #008000;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
  }

  .login-signup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .login-signup a {
    display: flex;
    width: fit-content;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: "Satoshi-Bold";
  }
  .login-signup a:hover {
    text-decoration: none;
  }
  .login-signup .login {
    width: fit-content;
    background: #008000;
    color: #fff;
    padding: 0 .8rem;
    font-size: .8rem !important;
  }
  .login-signup .make-account {
    /* background: #008000; */
    border: 1.2px solid #008000;
    color: #1a1a1a;
    display: flex;
    gap: 0.4rem;
    width: fit-content;
    padding: 0 0.5rem;
    font-size: .8rem !important;
  }


  body .under-construction a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.2px solid #dedede;
    background-color: #f7f7f7;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    text-decoration: none;
    color: #1a1a1a;
    font-family: "Satoshi-Bold";
    gap: 0.5rem;
    border-radius: 10px;
    width: 10rem;
  }
  body .under-construction .under-construction-drop {
    background: rgba(212, 70, 70, 0.919);
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    font-family: "Satoshi-Bold";
    border-radius: 4px;
    height: fit-content;
    width: 15rem;
    padding: 0 !important;
  }
  body .under-construction .under-construction-drop section {
    display: flex;
    gap: 0.5rem;
    height: 2rem;
    width: fit-content;
    margin-inline: auto;
    align-items: center;
    padding: 0 !important;
  }
  body .under-construction .under-construction-drop section span {
    padding: 0 !important;
    height: 1.5rem;
    width: 1.5rem;
  }
  body .under-construction .under-construction-drop section img {
    padding: 0 !important;
    height: 100%;
    width: 100%;
  }
  body .under-construction .under-construction-drop p {
    padding: 0 !important;
    padding: unset;
    text-align: center;
    align-items: center;
  }

  .main-heading span img{
   width: 10rem !important;
  }
  }/*# sourceMappingURL=style.css.map */