.get-to-know-us-banner {
  position: relative;
  overflow: hidden;
  min-height: 823px;
}
.get-to-know-us-banner .get-to-know-us-bg {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-position: top right;
  object-position: top right;
}
.get-to-know-us-banner .cloude-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-top: 50px;
  padding-left: 50px;
}
.get-to-know-us-banner .cloude-right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: 80px;
  padding-right: 50px;
}
.get-to-know-us-banner .birds {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: 283px;
  padding-right: 125px;
}
.get-to-know-us-banner .birds img {
  width: 15vw;
  height: auto;
  max-width: 237px;
}
.get-to-know-us-banner .content {
  max-width: 1200px;
  width: 80.8333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 190px 0 220px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.get-to-know-us-banner .content .content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.get-to-know-us-banner .content .content-wrapper h1 {
  color: #9a9480;
  background: -o-linear-gradient(347deg, #a59973 10.66%, #3c3727 72.72%);
  background: linear-gradient(103deg, #a59973 10.66%, #3c3727 72.72%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 86px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3.44px;
  padding-bottom: 31px;
}
.get-to-know-us-banner .content .content-wrapper h2 {
  color: #7a7a6f;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.get-to-know-us-banner .mountains {
  position: absolute;
  bottom: -1px;
  width: 100%;
  max-width: 100%;
  z-index: 0;
}
.get-to-know-us-banner .mountains img {
  width: 100%;
  height: auto;
}
.get-to-know-us-banner .boat-wrapper {
  position: absolute;
  z-index: 2;
  -webkit-animation: moveBoat 40s linear infinite;
  animation: moveBoat 40s linear infinite;
  bottom: 0;
}
.get-to-know-us-banner .lake {
  position: absolute;
  bottom: -1px;
  width: 100%;
  max-width: 100%;
  z-index: 1;
}
.get-to-know-us-banner .lake img {
  width: 100%;
  height: auto;
}

.water {
  position: relative;
  z-index: 0;
}
.water img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

@-webkit-keyframes moveBoat {
  0% {
    -webkit-transform: translateX(-372px);
    transform: translateX(-372px);
  }
  100% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}
@keyframes moveBoat {
  0% {
    -webkit-transform: translateX(-372px);
    transform: translateX(-372px);
  }
  100% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}
.move-smooth-top {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-animation: moveSmoothTopOpacity 1s ease-out forwards;
  animation: moveSmoothTopOpacity 1s ease-out forwards;
}

@-webkit-keyframes moveSmoothTopOpacity {
  0% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moveSmoothTopOpacity {
  0% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.move-mountains {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-animation: moveMountains 1s ease-out forwards;
  animation: moveMountains 1s ease-out forwards;
}

@-webkit-keyframes moveMountains {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moveMountains {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.move-cloude-left {
  opacity: 0;
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-animation: moveCloudeLeft 1s ease-out forwards;
  animation: moveCloudeLeft 1s ease-out forwards;
}

@-webkit-keyframes moveCloudeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveCloudeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.move-cloude-right {
  opacity: 0;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-animation: moveCloudeRight 1.2s ease-out forwards;
  animation: moveCloudeRight 1.2s ease-out forwards;
}

@-webkit-keyframes moveCloudeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveCloudeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.who-are-we-section {
  background: -o-linear-gradient(285deg, rgb(26, 173, 224) -37.92%, rgb(26, 173, 224) 53.52%);
  background: linear-gradient(165deg, rgb(26, 173, 224) -37.92%, rgb(26, 173, 224) 53.52%);
}
.who-are-we-section .who-are-we-content {
  border-top: 1px solid #ffffff;
  border-radius: 20px 20px 0px 0px;
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 40%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), color-stop(40%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 40%);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
  padding: 64px 30px 65px;
  position: relative;
  top: -9vw;
}
.who-are-we-section .who-are-we-content h2 {
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0.58px;
  padding-bottom: 25px;
  text-align: center;
}
.who-are-we-section .who-are-we-content .sub-title {
  letter-spacing: 0.24px;
  font-weight: 400;
  line-height: 38px;
  font-size: 24px;
  color: #14263b;
  max-width: 800px;
  margin-inline: auto;
  padding-bottom: 72px;
  text-align: center;
}
.who-are-we-section .who-are-we-content .tile-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  gap: 50px;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box {
  border: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: url(../assets/images/tile-box-bg.svg);
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  -ms-flex: 0 0 calc(50% - 25px);
  flex: 0 0 calc(50% - 25px);
  overflow: hidden;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box img {
  max-width: 100%;
  height: auto;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content {
  padding: 8px 30px 44px 54px;
  height: 100%;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content.bg {
  background: url(../assets/images/tile-content-1.svg);
  background-repeat: no-repeat;
  background-position: 120% bottom;
  padding-top: 24px;
  opacity: 0.8;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content h3 {
  padding-bottom: 16px;
  color: #000000;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content .bullet {
  position: relative;
  padding-left: 28px;
  padding-right: 20px;
  margin-left: -8px;
  padding-top: 16px;
  opacity: 1;
}
.who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content .bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 6px;
  height: 12px;
  border-bottom: 2px solid #304b61;
  border-right: 2px solid #304b61;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bottom-section {
  padding-top: 6vw;
}
.bottom-section .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 65px;
  gap: 4vw;
  position: relative;
}
.bottom-section .content:nth-last-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.bottom-section .content::before {
  content: "";
  background: url(../assets/images/content-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.bottom-section .content:nth-of-type(1) {
  background: url(../assets/images/bottom-section-img-1-bg.svg);
  background-repeat: no-repeat;
  background-position-x: -20px;
}
.bottom-section .content:nth-of-type(2) {
  background: url(../assets/images/bottom-section-img-2-bg.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% + 20px);
}
.bottom-section .content .content-left {
  width: 60%;
  position: relative;
}
.bottom-section .content .content-left h2 {
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0.58px;
  padding-bottom: 25px;
}
.bottom-section .content .content-left p {
  letter-spacing: 0.24px;
  font-weight: 400;
  font-size: 22px;
  color: #14263b;
  line-height: 164%;
}
.bottom-section .content .content-right {
  width: 40%;
}
.bottom-section .content .content-right img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

.section-water-layer {
  position: relative;
}
.section-water-layer::before {
  content: "";
  height: 144px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, #ffffff), color-stop(98%, rgba(253, 187, 45, 0)));
  background: -o-linear-gradient(bottom, #ffffff 1%, rgba(253, 187, 45, 0) 98%);
  background: linear-gradient(0deg, #ffffff 1%, rgba(253, 187, 45, 0) 98%);
}
.section-water-layer img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom center;
  object-position: bottom center;
  height: auto;
}

@media (min-width: 1920px) {
  .get-to-know-us-banner .content {
    padding-top: 10.5vw;
  }
  .get-to-know-us-banner .content .content-wrapper h1 {
    font-size: 6.5rem;
  }
  .get-to-know-us-banner .content .content-wrapper h2 {
    font-size: 1.6rem;
  }
  .who-are-we-section .who-are-we-content {
    top: -19vw;
  }
  .who-are-we-section .who-are-we-content .tile-boxes {
    margin-bottom: -10vw;
  }
  .who-are-we-section .who-are-we-content h2 {
    font-size: 65px;
  }
  .bottom-section .z-container {
    max-width: 105rem;
  }
  .bottom-section .content .content-left h2 {
    font-size: 3.2rem;
    padding-bottom: 34px;
  }
}
@media (max-width: 1000px) {
  .get-to-know-us-banner .cloude-left {
    padding-top: 96px;
  }
  .get-to-know-us-banner .cloude-right {
    padding-top: 90px;
  }
  .get-to-know-us-banner .birds {
    padding-right: 46px;
  }
}
@media (max-width: 992px) {
  .get-to-know-us-banner .cloude-left {
    padding-top: 14vh;
  }
  .get-to-know-us-banner .cloude-right {
    padding-top: 14vh;
  }
}
@media (max-width: 768px) {
  .get-to-know-us-banner {
    min-height: unset;
    max-height: 65vh;
    min-height: 50vh;
  }
  .get-to-know-us-banner .cloude-right {
    padding-left: 0;
    padding-top: 18vh;
    right: -36px;
  }
  .get-to-know-us-banner .cloude-right img {
    max-width: 135px;
  }
  .get-to-know-us-banner .cloude-left {
    display: none;
  }
  .get-to-know-us-banner .birds img {
    width: 22vw;
  }
  .get-to-know-us-banner .get-to-know-us-bg {
    -o-object-position: top left;
    object-position: top left;
  }
  .get-to-know-us-banner .mountains {
    bottom: -25px;
  }
  .get-to-know-us-banner .mountains img {
    min-height: 35vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .get-to-know-us-banner .lake img {
    min-height: 15vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
  }
  .get-to-know-us-banner .boat-wrapper {
    width: 100vw;
  }
  .get-to-know-us-banner .boat-wrapper img {
    max-width: 28vh;
    height: auto;
    margin-bottom: -2vh;
  }
  .get-to-know-us-banner .content {
    width: 100%;
    padding: 7rem 0 220px;
  }
  .get-to-know-us-banner .content .content-wrapper h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    padding-top: 2vh;
    padding-bottom: 22px;
    background: -o-linear-gradient(347deg, #91845a 10.66%, #3c3727 72.72%);
    background: linear-gradient(103deg, #91845a 10.66%, #3c3727 72.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .get-to-know-us-banner .content .content-wrapper h2 {
    font-size: 1.1rem;
    line-height: 124%;
    max-width: 14rem;
    text-align: center;
  }
  .who-are-we-section .who-are-we-content .tile-boxes {
    gap: 30px;
    max-width: 397px;
  }
  .who-are-we-section .who-are-we-content .tile-boxes .tile-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .bottom-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    text-align: center;
  }
  .bottom-section .content .content-left {
    width: 80%;
  }
  .bottom-section .content .content-left h2 {
    font-size: 2rem;
    letter-spacing: 0;
    padding-bottom: 24px;
    line-height: 124%;
  }
  .bottom-section .content .content-left p {
    font-size: 1rem;
    line-height: 158%;
  }
  .bottom-section .content .content-right {
    width: 100%;
  }
  .bottom-section .content .content-right img {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    -o-object-fit: none;
    object-fit: none;
  }
  .bottom-section .content:nth-last-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .bottom-section .content:nth-last-of-type(odd) .content-right img {
    max-width: 350px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  @-webkit-keyframes moveBoat {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(100vw);
      transform: translateX(100vw);
    }
  }
  @keyframes moveBoat {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(100vw);
      transform: translateX(100vw);
    }
  }
}
@media (max-width: 600px) {
  .get-to-know-us-banner .content .content-wrapper h1 {
    background: -o-linear-gradient(347deg, #8a7944 10.66%, #3c3727 72.72%);
    background: linear-gradient(103deg, #8a7944 10.66%, #3c3727 72.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .get-to-know-us-banner .cloude-right {
    padding-top: 30vh;
  }
  .who-are-we-section .who-are-we-content {
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), color-stop(10%, rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 10%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 10%);
  }
  .who-are-we-section .who-are-we-content h2 {
    font-size: 2.2rem;
    letter-spacing: 0;
    padding-bottom: 10px;
  }
  .who-are-we-section .who-are-we-content .sub-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 148%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content {
    padding: 8px 20px 44px 25px;
  }
  .who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content .bullet {
    margin-left: 8px;
    padding-left: 24px;
  }
  .who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content .bullet::before {
    width: 4px;
    height: 9px;
  }
  .who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content h3 {
    font-size: 22px;
    max-width: 280px;
  }
  .who-are-we-section .who-are-we-content .tile-boxes .tile-box .tile-content p {
    font-size: 14px;
    line-height: 156%;
  }
  .bottom-section .z-container {
    padding-left: 0;
    padding-right: 0;
  }
  .bottom-section .content {
    padding-bottom: 108px;
  }
  .bottom-section .content .content-left {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .bottom-section .content .content-left h2 {
    font-size: 1.8rem;
  }
  .bottom-section .content .content-left p {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-section .content .content-right img {
    margin-bottom: 34px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0;
  }
  .bottom-section .content:nth-of-type(1) {
    background-size: contain;
  }
  .bottom-section .content:nth-of-type(3) {
    padding-bottom: 62px;
  }
  .section-water-layer::before {
    height: 43px;
  }
  .section-water-layer img {
    height: 230px;
    margin-bottom: -30px;
  }
}
