@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
 * @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-BlackItalic.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;
}
body {
  font-family: "Satoshi-Variable";
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.navigationTopContainer {
  display: flex;
  height: 4rem;
  background-color: #dedede;
  position: relative;
  z-index: 2;
}

.mobileBannerContainer {
  height: calc(100dvh - 4rem);
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mobileBannerContainer .bannerImageWrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.mobileBannerContainer .bannerImageWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobileBannerContainer .bannerGradientBackground {
  height: 110%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mobileBannerContainer .bannerGradientBackground img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobileBannerContainer .contentContainer {
  height: -moz-fit-content;
  height: fit-content;
  width: 95%;
  margin-inline: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.mobileBannerContainer .contentContainer .mainHeading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #26387B;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.mobileBannerContainer .contentContainer .mainSubheading {
  margin-top: 1rem;
  background: linear-gradient(176deg, #E2EBF3 49.09%, rgba(226, 235, 243, 0) 96.23%);
  width: 100%;
  max-width: 500px;
  min-height: 5rem;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 0.5rem 1rem;
}
.mobileBannerContainer .contentContainer .mainSubheading .subheadingText {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #26387B;
}
.mobileBannerContainer .contentContainer .descriptionText {
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  margin-top: 2rem;
  font-size: 1rem;
  font-family: "Satoshi-Medium";
}
.mobileBannerContainer .contentContainer .propertySearchBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  margin-top: 2rem;
  margin-inline: auto;
  border: none;
  border-radius: 4px;
  background-color: #26387B;
  color: #fff;
  font-family: "Satoshi-Bold";
  font-size: 0.8rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
  text-wrap: nowrap;
  padding: 0 1rem;
  align-items: center;
  gap: 1rem;
}
.mobileBannerContainer .contentContainer .propertySearchBtn .iconContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}

.mobileBannerContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: linear-gradient(176deg, rgba(226, 235, 243, 0.69) 42.91%, rgba(226, 235, 243, 0.05) 91.36%);
}

.desktopBannerContainer {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobileBannerContainer {
    display: none;
  }
  .desktopBannerContainer {
    display: block;
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }
  .desktopBannerContainer .contentContainer {
    position: relative;
    width: 90%;
    top: 4rem;
    max-width: 1210px;
    z-index: 4;
    margin-inline: auto;
  }
  .desktopBannerContainer .contentContainer .mainWrapper {
    width: 20rem;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .mainHeading {
    color: #26387B;
    font-size: 2.2rem;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .subheadingText {
    font-size: 1rem !important;
    margin-top: 1.5rem;
    color: #26387B;
    font-family: "Satoshi-Bold";
  }
  .desktopBannerContainer .contentContainer .mainWrapper .descriptionText {
    color: #333;
    font-family: "Satoshi-Medium";
    width: 80%;
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .propertySearchDeskopBtn {
    display: flex;
    margin-top: 2rem;
    height: 2.5rem;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #26387B;
    color: #fff;
    font-family: "Satoshi-Bold";
    font-size: 0.75rem;
    text-decoration: none;
    padding: 0 1rem;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    border: none;
    text-wrap: nowrap;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .propertySearchDeskopBtn .iconContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    width: 1rem;
  }
  .desktopBannerContainer .contentContainer .exploreBtn {
    display: flex;
    margin-top: 4rem;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    font-family: "Satoshi-Bold";
    font-size: 0.8rem;
    color: #26387B;
  }
  .desktopBannerContainer .contentContainer .exploreBtn .scrollIcon {
    display: flex;
    width: 1rem;
    height: 1rem;
    background-color: #fff;
    border-radius: 50%;
  }
  .desktopBannerContainer .bannerImageWrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    height: 100%;
    width: 50%;
  }
  .desktopBannerContainer .bannerImageWrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBannerGradientBackground {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 100%;
  }
  .contentBannerGradientBackground img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBackgroundWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
  }
  .contentBackgroundWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .desktopBannerContainer {
    display: block;
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }
  .desktopBannerContainer .contentContainer {
    position: relative;
    width: 90%;
    top: 4rem;
    max-width: 1210px;
    z-index: 4;
    margin-inline: auto;
  }
  .desktopBannerContainer .contentContainer .mainWrapper {
    width: 30rem;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .mainHeading {
    color: #26387B;
    font-size: 2.5rem;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .subheadingText {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #26387B;
    font-family: "Satoshi-Medium";
  }
  .desktopBannerContainer .contentContainer .mainWrapper .descriptionText {
    color: #333;
    font-family: "Satoshi-Medium";
    margin-top: 1.5rem;
    font-size: 1rem;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .propertySearchDeskopBtn {
    display: flex;
    margin-top: 2rem;
    height: 2.5rem;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #26387B;
    color: #fff;
    font-family: "Satoshi-Bold";
    font-size: 0.75rem;
    text-decoration: none;
    padding: 0 1rem;
    align-items: center;
    gap: 1rem;
    border-radius: 4px;
    border: none;
    text-wrap: nowrap;
  }
  .desktopBannerContainer .contentContainer .mainWrapper .propertySearchDeskopBtn .iconContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    width: 1rem;
  }
  .desktopBannerContainer .contentContainer .exploreBtn {
    display: flex;
    margin-top: 4rem;
    text-decoration: none;
    align-items: center;
    gap: 1rem;
    font-family: "Satoshi-Bold";
    font-size: 0.8rem;
    color: #26387B;
  }
  .desktopBannerContainer .contentContainer .exploreBtn .scrollIcon {
    display: flex;
  }
  .desktopBannerContainer .bannerImageWrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    height: 95%;
    width: 55%;
  }
  .desktopBannerContainer .bannerImageWrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBannerGradientBackground {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 115%;
    margin-top: -10%;
  }
  .contentBannerGradientBackground img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBackgroundWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 105%;
    width: 100%;
    margin-top: -5%;
    z-index: 1;
  }
  .contentBackgroundWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1280px) {
  .desktopBannerContainer {
    height: 90vh;
  }
  .bannerImageWrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    height: unset;
    height: 100% !important;
    width: 50%;
    margin-top: -5%;
  }
  .bannerImageWrapper img {
    height: 110% !important;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBannerGradientBackground {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 120%;
    margin-top: -12%;
  }
  .contentBannerGradientBackground img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBackgroundWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 118%;
    width: 100%;
    margin-top: -8.5rem;
    z-index: 1;
  }
  .contentBackgroundWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1440px) {
  .contentContainer {
    position: relative;
    width: 90%;
    height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 10rem !important;
    max-width: 1380px !important;
    z-index: 4;
    margin-inline: auto;
  }
  .contentContainer .mainWrapper {
    width: 20rem;
  }
  .contentContainer .mainWrapper .mainHeading {
    color: #26387B;
    font-size: 3rem !important;
  }
  .contentContainer .mainWrapper .subheadingText {
    font-size: 1rem;
    margin-top: 1.5rem;
    color: #26387B;
    font-family: "Satoshi-Bold";
  }
  .contentContainer .mainWrapper .descriptionText {
    color: #333;
    font-family: "Satoshi-Medium";
    width: 100% !important;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
  .contentContainer .mainWrapper .propertySearchDeskopBtn {
    display: flex;
    margin-top: 3rem !important;
    height: 2.5rem;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #26387B;
    color: #fff;
    font-family: "Satoshi-Bold";
    font-size: 0.9rem !important;
    text-decoration: none;
    padding: 0 1rem;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    border: none;
    text-wrap: nowrap;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .contentContainer .mainWrapper .propertySearchDeskopBtn .iconContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
    transition: all 0.3s ease-in-out;
  }
  .contentContainer .mainWrapper .propertySearchDeskopBtn:hover {
    background-color: #050d27;
    color: #fff;
    cursor: pointer;
  }
  .contentContainer .mainWrapper .propertySearchDeskopBtn:hover .iconContainer {
    transform: translateX(0.5rem);
  }
  .contentContainer .exploreBtn {
    display: flex;
    margin-top: 4rem;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    font-family: "Satoshi-Bold";
    font-size: 0.8rem;
    color: #26387B;
  }
  .contentContainer .exploreBtn .scrollIcon {
    display: flex;
    width: 1rem;
    height: 1rem;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .contentContainer .exploreBtn:hover .scrollIcon {
    transform: translateY(0.5rem);
  }
  .desktopBannerContainer {
    height: 100vh;
    max-height: 55rem;
  }
  .bannerImageWrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    height: unset;
    height: 100% !important;
    width: 50%;
  }
  .bannerImageWrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBannerGradientBackground {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 135%;
    margin-top: -15%;
  }
  .contentBannerGradientBackground img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBackgroundWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 132%;
    width: 100%;
    margin-top: -13%;
    z-index: 1;
  }
  .contentBackgroundWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 2560px) {
  .desktopBannerContainer {
    height: 100vh !important;
    max-height: 80rem;
  }
  .contentBannerGradientBackground {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 125%;
    margin-top: -9%;
  }
  .contentBannerGradientBackground img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentBackgroundWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 128%;
    width: 100%;
    margin-top: -10%;
    z-index: 1;
  }
  .contentBackgroundWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contentContainer {
    position: relative;
    width: 90%;
    height: 35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 10rem !important;
    max-width: 2160px !important;
    z-index: 4;
    margin-inline: auto;
  }
  .contentContainer .mainWrapper {
    width: 20rem;
  }
  .contentContainer .mainWrapper .mainHeading {
    color: #26387B;
    font-size: 4rem !important;
  }
  .contentContainer .mainWrapper .subheadingText {
    font-size: 1.5rem !important;
    margin-top: 2rem !important;
    color: #26387B;
    font-family: "Satoshi-Bold";
  }
  .contentContainer .mainWrapper .descriptionText {
    color: #333;
    font-family: "Satoshi-Medium";
    width: 100% !important;
    margin-top: 2rem !important;
    font-size: 1.2rem !important;
  }
  .contentContainer .mainWrapper .propertySearchDeskopBtn {
    display: flex;
    margin-top: 2rem;
    height: 3rem !important;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #26387B;
    color: #fff;
    font-family: "Satoshi-Bold";
    font-size: 1rem !important;
    text-decoration: none;
    padding: 0 1.5rem !important;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    border: none;
    text-wrap: nowrap;
  }
  .contentContainer .mainWrapper .propertySearchDeskopBtn .iconContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
  }
  .contentContainer .exploreBtn {
    display: flex;
    margin-top: 4rem;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    font-family: "Satoshi-Bold";
    font-size: 1rem !important;
    color: #26387B;
  }
  .contentContainer .exploreBtn .scrollIcon {
    display: flex;
    width: 1rem;
    height: 1rem;
    background-color: #fff;
    border-radius: 50%;
  }
}/*# sourceMappingURL=style.css.map */