/* common css ******************************************************************************/
/* font-family */
@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato/Lato-Bold.ttf");
}

@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato/Lato-Regular.ttf");
}

@font-face {
  font-family: "Lato-Thin";
  src: url("../fonts/Lato/Lato-Thin.ttf");
}

@font-face {
  font-family: "OPTIMA";
  src: url("../fonts/optima/OPTIMA.TTF");
}

:root {
  --white: #fff;
  --black: #000;
  --black-222222: #222222;
  --light-gray: #ddd6d6;
  --golden: #d1ba87;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}

body {
  background: #fff;
  font-family: "Lato-Regular";
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--white);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--white);
}

p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 16px;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}

span {
  display: inline-block;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading.left {
  text-align: left;
}

.section-heading h2 {
  font-family: "OPTIMA";
  text-transform: uppercase;
}

.btn-common {
  font-size: 16px;
  padding: 12px 30px;
  background-color: var(--black-222222);
  color: var(--white);
  border-radius: 50px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

img,
video {
  max-width: 100%;
}

.button-box {
  padding-top: 20px;
}

.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.owl-nav {
  margin-top: 0;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.form-control-common {
  background: var(--white);
  border: 1px solid transparent;
  font-size: 18px;
  padding: 10px 50px 10px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black-222222);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}

select {
  border: 1px solid transparent;
  font-size: 18px;
  padding: 10px 50px 10px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black-222222);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
  appearance: none;
  background: url("../images/down-arrow.png") no-repeat var(--white);
  background-position: 98%;
  background-size: 20px;
}

.input-group {
  padding-bottom: 30px;
}

.swiper-slide {
  width: auto !important;
  display: inline-block;
  padding: 10px;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  background-color: var(--white);
}

#header.show .main-nav nav ul li a {
  color: var(--black-222222);
}

#header.show .main-nav nav ul li a::after {
  background-color: var(--black-222222);
}

#header {
  background: #0000001c;
  padding: 15px 0;
  transition: 0.5s all;
  position: relative;
  backdrop-filter: blur(30px);
  z-index: 9999;
}

#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .left-part {
  display: flex;
  align-items: center;
  gap: 50px;
}

#header .logo-box {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

#header .logo-box img {
  max-width: 100px;
  width: 100%;
}

#header .logo-box .center-border {
  width: 1px;
  height: 60px;
  background-color: var(--golden);
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}

#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}

#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}

#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}

#header .main-nav nav ul li a {
  color: var(--white);
  padding: 5px;
  font-size: 16px;
  position: relative;
  transition: 0.5s;
}

#header .main-nav nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.5s;
}

#header .main-nav nav ul li a:hover::after {
  opacity: 1;
}

/* homeBanner css ******************************************************************************/

.home-banner {
  margin-top: -101px;
  padding: 0;
}

.home-banner .homeBanner-part {
  background: url("../images/bannerBg2.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 100dvh;
  position: relative;
  padding: 80px 0;
}

.home-banner .homeBanner-part::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.7;
}

.home-banner .homeBanner-box {
  position: relative;
  z-index: 9;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-banner .box.box1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-banner .box img {
  max-width: 200px;
  margin-bottom: 15px;
}

.home-banner .box p {
  color: var(--white);
  font-family: "OPTIMA";
}

.home-banner .container-fluid {
  height: 100%;
}

.home-banner .widget-box {
  background-color: var(--light-gray);
  padding: 15px 15px;
  display: flex;
  gap: 20px;
  max-width: 70%;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 20px;
}

.home-banner .widget-box .part {
  width: 33.33%;
  font-size: 16px;
  color: var(--black-222222);
  border-right: 1px solid var(--black-222222);
}

.home-banner .widget-box .part span {
  font-size: 20px;
}

.home-banner .widget-box .part:last-child {
  border: none;
}

/* community css ******************************************************************************/

.community {
  background: url("../images/community-bg.jpg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.community .box1 p {
  font-size: 18px;
  margin-bottom: 3px;
}

.community h5 {
  font-family: "OPTIMA";
  text-transform: uppercase;
}

.community .text-box P {
  font-family: "Lato-Thin";
  font-weight: 600;
  letter-spacing: 2px;
}

.community .part:not(:last-child) {
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.community .part:not(:last-child)::after {
  content: "";
  width: 40%;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  bottom: 0;
}

/* discover css ******************************************************************************/
.discover .discover-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.discover .img-box img {
  width: 100%;
  height: 100%;
}

.discover .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  padding: 12px 30px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0000001f;
  font-family: "OPTIMA";
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.discover .modal-dialog {
  max-width: 100%;
  height: 100%;
  margin-block: 0;
}

.discover .modal-dialog .modal-content {
  max-height: 100%;
  overflow: hidden;
  height: 100%;
}

.discover .video-box {
  height: 100%;
}

.discover .modal-header {
  border: none;
}

.discover .btn-close:focus {
  box-shadow: none;
}

/* gallary css ******************************************************************************/

.gallary .swiper-slide p {
  color: var(--black);
  text-align: center;
}

.gallary .swiper-slide .img-logo-box img {
  max-width: 200px;
}

.gallary .btn-common_G {
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--black-222222);
  background-color: transparent;
  border: 1px solid var(--black-222222);
}

.gallary .img-logo-box {
  margin-block: 70px;
  display: flex;
  justify-content: center;
}

.gallary .button-box {
  display: flex;
  justify-content: center;
}

.gallary .img-box {
  max-height: 600px;

  overflow: hidden;
  border-radius: 15px;
}

.gallary .img-box img {
  width: 100%;
  height: 100%;
  /* min-height: 600px; */
  object-fit: cover;
}

.gallary .gallary-slider {
  padding-bottom: 60px;
}

.gallary .swiper-pagination-progressbar {
  background: var(--light-gray);
  height: 1px;
  top: unset;
  bottom: 20px;
  transform: translate3d(0, 0, 0) translateX(-50%);
  max-width: 70%;
  left: 43%;
}

.gallary .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--black-222222);
}

.gallary .swiper-button-next:after,
.gallary .swiper-button-prev:after {
  display: none;
}

.gallary .swiper-button-next {
  right: unset;
  left: 85%;
  bottom: -1px;
  top: unset;
}

.gallary .swiper-button-prev {
  left: 81%;
  right: unset;
  bottom: -1px;
  top: unset;
}

.gallary .swiper-slide {
  place-self: center;
}

/* amenities css ******************************************************************************/

.ameniites .icons-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 50px;
  overflow: auto;
}

.ameniites .icons-wrapper img {
  width: 70px;
  height: 70px;
  opacity: 0.5;
  margin-bottom: 5px;
  object-fit: contain;
}

.ameniites .icons-wrapper p {
  color: var(--black-222222);
  opacity: 0.5;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}

.ameniites .icons-wrapper .icon.active p {
  opacity: 1;
}

.ameniites .icons-wrapper .icon.active img {
  opacity: 1;
}

.ameniites .icons-wrapper .icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ameniites .swiper-slide {
  max-width: 600px;
  position: relative;
  padding: 0;
}

.ameniites .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.ameniites .swiper-slide:hover::after {
  opacity: 0.5;
}

.ameniites .swiper-slide img {
  border-radius: 20px;
}

.ameniites .swiper-slide p {
  font-family: "Lato-Bold";
  position: absolute;
  left: 50%;
  bottom: 35px;
  z-index: 9;
  transform: translate(-50%, 0);
  font-size: 18px;
  color: var(--white);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.ameniites .swiper-slide:hover p {
  opacity: 1;
  text-align: center;
}

.ameniites .swiper-slide:nth-child(even) p {
  margin-top: 15px;
}

/* section css ******************************************************************************/

section.dubai-map {
  overflow: clip;
}

/* .dubai-map .map-box {
  position: relative;
} */

.dubai-map .timeline {
  display: flex;
  background: #ddd6d6b5;
  position: relative;
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  max-width: 80%;
  margin: 0 auto;
  padding: 10px 20px;
  backdrop-filter: blur(1px);
  position: sticky;
  /* top: 100%; */
  bottom: 140px;
  width: 100%;
}

.dubai-map .timeline .label {
  text-align: center;
  position: relative;
}

.dubai-map .timeline .line {
  width: 2px;
  height: 40px;
  background-color: var(--black-222222);
}

.dubai-map .timeline .label p {
  color: var(--black-222222);
  display: block;
  min-width: 200px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.3;
}

.dubai-map .timeline .label p span {
  font-size: 30px;
  line-height: 1;
}

.dubai-map iframe {
  height: 100vh;
  margin-bottom: 30px;
}

/* other css ******************************************************************************/

.other .section-heading img {
  max-width: 150px;
  vertical-align: baseline;
}

.other .box {
  background-size: 100% 100% !important;
  background-position: center !important;
  height: 100dvh;
  position: relative;
  transition: 0.5s;
}

.other .box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#00000025, #0000006b);
}

.other .box a {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: relative;
  z-index: 9;
  padding: 60px 20px;
}

.other .box-1 {
  background: url("../images/explore-1.jpg") no-repeat;
}

.other .box-2 {
  background: url("../images/explore-2.jpg") no-repeat;
}

.other .box img {
  max-width: 150px;
  margin-bottom: 50px;
}

.other .box h4 {
  text-transform: uppercase;
  font-family: "OPTIMA";
  margin-bottom: 30px;
}

.other .box p {
  text-transform: uppercase;
  text-decoration: underline;
  font-family: "OPTIMA";
  transition: 0.3s;
}

.other .box:hover p {
  color: var(--golden);
}

.other .box:hover {
  background-size: 110% 110% !important;
}

/* section css ******************************************************************************/
.port {
  padding-top: 0;
}

.port .swiper-slide {
  width: 100% !important;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.port .swiper-wrapper {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.convenient .plan-container {
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 3px 2px 20px 0px #0000002b;
}

.convenient .plan-container .timeline {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
}

.convenient .plan-container .timeline .label {
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
  color: var(--black-222222);
  font-size: 14px;
}

.convenient .plan-container .timeline .label p {
  color: var(--black-222222);
  display: block;
  min-width: 200px;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.3;
}

.convenient .plan-container .timeline .label p span {
  font-size: 30px;
  line-height: 1;
}

.convenient .plan-container .timeline .plan {
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #8899a1;
  border-radius: 50%;
  /* outline: 7px solid var(--white); */
}

.convenient .plan-container .timeline .line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--light-gray);
  transform: translateY(-50%);
  z-index: 0;
  width: 95%;
  margin: 0 auto;
}

.convenient .plan-container .first-plan {
  left: 25%;
}

.convenient .plan-container .second-plan {
  left: 50%;
}

.convenient .plan-container .third-plan {
  left: 75%;
}

/* footer css ******************************************************************************/
.footer {
  overflow: hidden;
}

.footer .form-box {
  background: url("../images/footer-bg.avif") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 70px 0;
}

.footer .form-box .logos-box {
  display: flex;
  flex-wrap: wrap;
  /* allow second row */
  justify-content: center;
  align-items: center;
  gap: 70px;
  row-gap: 30px;
  margin-bottom: 50px;
  max-width: 500px;
  /* control width so 3rd wraps */
  margin-left: auto;
  margin-right: auto;
}

.footer .form-box .logos-box img {
  max-width: 150px;
  width: 100%;
}

/* Make 3rd logo take full row and center */
.footer .form-box .logos-box img.project-logo {
  flex: 0 0 100%;
  text-align: center;
}

.footer .form-box .section-heading h2 {
  font-size: 25px;
}

.footer .form-box form {
  max-width: 70%;
  margin: 0 auto;
  background: #474c46;
  padding: 20px 20px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.342));
}

.footer label {
  color: var(--white);
  margin-bottom: 10px;
}

.footer .btn-common {
  width: 100%;
}

.footer .qr-box {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.footer .video-box {
  height: 100%;
}

.footer .video-box video {
  height: 100%;
  object-fit: cover;
}

.fixed-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 5px 1px 18px;
  border-radius: 100px;
  max-width: 80%;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #e5e2e270;
  z-index: 999;
}

.fixed-box .logo-box {
  padding: 5px;
}

.fixed-box .logo-box img {
  max-width: 80px;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}

/* Thank You Page Styling */
.thank-you {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #fdfcfb 0%, var(--golden) 100%); */
  background-color: #c4ae7f38;
  padding: 20px;
}

.thank-you .thank-you-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 70px 40px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.8s ease;
}

.thank-you h4 {
  font-weight: bold;
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.thank-you p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.thank-you .button-bx {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.thank-you .cmn-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--black-222222);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: max-content;
}

.thank-you .cmn-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: #111e37;
  box-shadow: 0 6px 18px rgb(0 0 0 / 37%);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.right-part.mobile .button-box {
  margin-left: 15px;
  margin-top: 10px;
}

.right-part.mobile a {
  background-color: var(--white);
  color: var(--black-222222);
}

.dubai-map .tab-content {
  position: sticky;
  bottom: 140px;
  width: 100%;
}

.dubai-map .nav-pills {
  justify-content: center;
}

.dubai-map .nav-pills .nav-link {
  font-family: "OPTIMA";
  color: var(--black);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.dubai-map .nav-pills .nav-link.active {
  opacity: 1;
  background-color: transparent;
  font-weight: 700;
}