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

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

body {
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.6px;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  p {
    font-size: 1.8rem;
  }
}

.strike-text {
  position: relative;
}
.strike-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7rem;
  background: #152F56;
  top: 60%;
  transform: translateY(-50%);
}

/*==========================
NAV 
============================*/
.nav {
  background: #152F56;
  padding: 2rem 0;
}
.nav__logo {
  color: #fff;
  font-weight: 700;
}

/*==========================
LANDSCAPE
============================*/
.landscape {
  width: 100%;
  height: calc(100vh - 7.6rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0ecbf4 0%, #0a1892 100%);
}
.landscape__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgb(56, 60, 95) 50%, rgb(44, 77, 126) 50%);
  opacity: 0.67;
}
.landscape-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
}

.img-wrapper {
  display: block;
  position: absolute;
  width: 200%;
  height: 100vh;
  left: 60%;
  bottom: 0;
  object-fit: cover;
  transform: translateX(-50%);
}

.component {
  position: absolute;
  bottom: 0;
}

/*==========================
HERO
============================*/
.hero {
  position: relative;
}
.hero-wrapper {
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.hero-content > * {
  flex-basis: 100%;
}
.hero__heading {
  color: #fff;
  font-size: 3rem;
  line-height: 110%;
}
@media (min-width: 560px) {
  .hero__heading {
    font-size: 4.5rem;
  }
}
@media (min-width: 992px) {
  .hero__heading {
    font-size: 6rem;
  }
}
@media (min-width: 1025px) {
  .hero__heading {
    font-size: 7.5rem;
  }
}
@media (min-width: 1440px) {
  .hero__heading {
    font-size: 8.5rem;
  }
}
.hero__heading--end {
  width: fit-content;
  align-self: center;
  position: relative;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .hero__heading--end {
    align-self: flex-end;
  }
}
.hero__heading--end::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 50%;
  background: #0B98FF;
  bottom: 0;
  left: 0;
}
.hero-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-img-wrapper {
  transform: translate(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
}
.hero-words-wrapper {
  overflow: hidden;
  height: 4rem;
  position: relative;
}
.hero-words-wrapper::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 40%;
  background: #0B98FF;
  bottom: 0;
}
@media (min-width: 560px) {
  .hero-words-wrapper {
    height: 6rem;
  }
}
@media (min-width: 992px) {
  .hero-words-wrapper {
    height: 8rem;
  }
}
@media (min-width: 1440px) {
  .hero-words-wrapper {
    height: 9rem;
  }
}
.hero__word {
  border: 1px orange;
  animation: spinWords 10s infinite;
}

.custom-shape-divider-bottom-1677859213 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}

.custom-shape-divider-bottom-1677859213 svg {
  position: relative;
  display: block;
  width: calc(152% + 1.3px);
  height: 64px;
}

.custom-shape-divider-bottom-1677859213 .shape-fill {
  fill: #152F56;
}

@keyframes spinWords {
  11% {
    transform: translateY(-100%);
  }
  22% {
    transform: translateY(-200%);
  }
  33% {
    transform: translateY(-300%);
  }
  44% {
    transform: translateY(-400%);
  }
  55% {
    transform: translateY(-500%);
  }
  66% {
    transform: translateY(-600%);
  }
  77% {
    transform: translateY(-700%);
  }
  100% {
    transform: translateY(-800%);
  }
}
/*==========================
LIST MY RENTAL
============================*/
.list-my-rental-container {
  position: relative;
}

.list-my-rental {
  overflow: hidden;
  position: relative;
  padding: 10rem 0;
  padding-bottom: 25rem;
  background: #152F56;
  z-index: 100;
}
.list-my-rental__heading {
  font-size: 3rem;
  color: #fff;
}
@media (min-width: 560px) {
  .list-my-rental__heading {
    font-size: 4.5rem;
  }
}
@media (min-width: 768px) {
  .list-my-rental__heading {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .list-my-rental__heading {
    font-size: 7.5rem;
  }
}
@media (min-width: 992px) {
  .list-my-rental__heading {
    font-size: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .list-my-rental__heading {
    font-size: 9rem;
  }
}
@media (min-width: 1440px) {
  .list-my-rental__heading {
    font-size: 10rem;
  }
}
.list-my-rental__subheading {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (min-width: 560px) {
  .list-my-rental__subheading {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .list-my-rental__subheading {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1200px) {
  .list-my-rental__subheading {
    font-size: 4rem;
  }
}
.list-my-rental__text {
  position: relative;
  max-width: 65.5rem;
  color: #b9c1cc;
  z-index: 3;
}
@media (min-width: 1025px) {
  .list-my-rental__text {
    font-size: 2.5rem;
  }
}
.list-my-rental__img {
  position: absolute;
  right: -7rem;
  width: 60%;
  bottom: -0.5rem;
}
@media (min-width: 425px) {
  .list-my-rental__img {
    right: -10rem;
    bottom: 0rem;
  }
}
@media (min-width: 768px) {
  .list-my-rental__img {
    right: 3rem;
    width: 40%;
    bottom: 5rem;
  }
}
@media (min-width: 1670px) {
  .list-my-rental__img {
    width: 30%;
    bottom: 2rem;
  }
}

.custom-shape-divider-top-1678121797 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.custom-shape-divider-top-1678121797 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1678121797 .shape-fill {
  fill: #152f56;
}

/*==========================
WE BELIEVE
============================*/
.we-believe {
  padding: 20rem 0 0 0;
  background: #0B98FF;
  position: relative;
}
.we-believe__subheading {
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
}
@media (min-width: 560px) {
  .we-believe__subheading {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .we-believe__subheading {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .we-believe__subheading {
    font-size: 5.5rem;
  }
}
.we-believe__heading {
  color: #fff;
  font-size: 3rem;
  line-height: 110%;
  margin-bottom: 3.5rem;
}
@media (min-width: 560px) {
  .we-believe__heading {
    font-size: 4.5rem;
  }
}
@media (min-width: 768px) {
  .we-believe__heading {
    font-size: 6rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .we-believe__heading {
    font-size: 7.5rem;
  }
}
@media (min-width: 992px) {
  .we-believe__heading {
    font-size: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .we-believe__heading {
    font-size: 9rem;
  }
}
@media (min-width: 1440px) {
  .we-believe__heading {
    font-size: 10rem;
  }
}
.we-believe-text-wrapper {
  margin-bottom: 5rem;
}
@media (min-width: 560px) {
  .we-believe-text-wrapper {
    display: flex;
    gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .we-believe-text-wrapper {
    margin-bottom: 10rem;
  }
}
.we-believe__text {
  color: #fff;
  max-width: 57.5rem;
  text-align: justify;
}
.we-believe__text:not(:last-child) {
  margin-bottom: 2rem;
}
.we-believe__img {
  width: 100%;
}
.we-believe-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.we-believe__icon {
  position: absolute;
  width: 4rem;
}
@media (min-width: 560px) {
  .we-believe__icon {
    width: 6rem;
  }
}
@media (min-width: 768px) {
  .we-believe__icon {
    width: 7rem;
  }
}
@media (min-width: 1025px) {
  .we-believe__icon {
    width: 8.5rem;
  }
}

.house-1 {
  left: 2%;
}
@media (min-width: 1440px) {
  .house-1 {
    width: 12rem;
  }
}

.bike-1 {
  left: 20%;
  top: 4rem;
}
@media (min-width: 768px) {
  .bike-1 {
    left: 12%;
  }
}
@media (min-width: 1440px) {
  .bike-1 {
    top: 6rem;
    width: 10rem;
  }
}

.boat-1 {
  left: 15%;
  top: -3rem;
}
@media (min-width: 768px) {
  .boat-1 {
    left: 25%;
  }
}
@media (min-width: 1440px) {
  .boat-1 {
    width: 8rem;
    top: -2rem;
  }
}

.car-1 {
  left: 35%;
  top: -5rem;
}
@media (min-width: 1440px) {
  .car-1 {
    width: 11rem;
    left: 35%;
  }
}

.bike-2 {
  left: 42%;
  top: 65px;
}
@media (min-width: 1440px) {
  .bike-2 {
    width: 10rem;
    left: 42%;
  }
}

.house-2 {
  left: 50%;
}
@media (min-width: 1440px) {
  .house-2 {
    width: 8rem;
    left: 55%;
  }
}

.boat-2 {
  left: 68%;
}
@media (min-width: 1440px) {
  .boat-2 {
    left: 75%;
    width: 11rem;
  }
}

.car-2 {
  left: 68%;
  top: 10rem;
}
@media (min-width: 1440px) {
  .car-2 {
    width: 12rem;
    left: 65%;
    top: 12rem;
  }
}

.house-3 {
  left: 85%;
  top: 4rem;
}
@media (min-width: 1440px) {
  .house-3 {
    width: 18rem;
    top: 20rem;
    left: 78%;
  }
}

.wrapper {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .wrapper {
    padding: 0 3.5rem;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    padding: 0 6rem;
  }
}
@media (min-width: 1440px) {
  .wrapper {
    max-width: 1440px;
    padding: 0 6rem;
  }
}
@media (min-width: 1670px) {
  .wrapper {
    padding: 0;
  }
}