@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Parkinsans:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p,button,a,span,label,li{
  font-family: "ABeeZee", sans-serif;
}
h1,h2,h3,h4{
  font-weight: 500;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Chivo", sans-serif;
}
:root {
  --primary-color: #0b1a37;
  --golden-color: #000;
}

.sec_padding {
  padding: 90px 0 90px;
}

.sub-heading {
  font-size: 50px;
  font-weight: 400;
}

.sec_title {
  font-size: 50px;
}

.sec_title span {
  background: linear-gradient(45deg, #9c802e 10%, #52410e);
  background-clip: text;
  color: transparent;
}

/* button css  */
a {
  text-decoration: none;
}
.name_error,.email_error,.phone_error{
  color: red;
}


.btn-grad {
  display: inline-block;
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 50px;
  display: inline-block;
  background-image: linear-gradient(to right, #9c802e 0%, #b59d56 51%, #988756 100%);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

/* header  */

.header {
  padding: 30px 0;
  background-color: #00000000;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header.active {
  position: fixed;
  background-color: #000000c2;
  backdrop-filter: blur(3px);
  animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header.active .logo_width {
  width: 35px;
}
.header.active .logo img {
  width: 140px;
    margin-left: -32px;
    margin-top: 6px;
}

header .nav-links {
  gap: 60px;
  list-style: none;
  align-items: center;
  justify-content: center;
}
header .nav-links li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.4s;
}

.logo_width {
  width: 80px;
  margin-right: 20px;
}

.logo {
  position: relative;
}

.logo img {
  width: 125px;
  border-radius: 3px;

}

.logo p {
  position: absolute;
  bottom: 0;
  background-color: #fff;
}
header .nav-links{
  overflow-x: scroll;
    scrollbar-width: none;  
  -ms-overflow-style: none;
}
header .nav-links::-webkit-scrollbar {
  display: none;
}
header .nav-links li a::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--golden-color);
  height: 1px;
  bottom: -5px;
  transform: scaleX(0);
  transition: all 0.4s;
}
header .nav-links li a:hover {
  color: #9c802e;
}
header .nav-links li a:hover::before {
  transform: scaleX(1);
}

/* end of header css  */

/* menu bar icon  */

.menu-button {
  display: none;
  z-index: 99;
  position: relative;
  padding: 14px 0;
}
.menu-button label {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.menu-button label span {
  background: var(--golden-color);
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-button span:nth-of-type(1) {
  width: 50%;
}

.menu-button span:nth-of-type(2) {
  width: 100%;
}

.menu-button span:nth-of-type(3) {
  width: 75%;
}

.menu-button input[type="checkbox"] {
  display: none;
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(5px, 0px);
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(13px, -5px) rotatez(45deg);
}

@media screen and (max-width: 768px) {
  .ForDesktop {
    display: none;
  }
  .ForMobile {
    display: block;
  }

  .menu-button {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    padding-right: 10px;
  }

  .header.active {
    position: fixed;
    background-color: #000000f5;
    backdrop-filter: none;
    animation: slideDown 0.5s ease forwards;
  }

  .nav-links {
    position: fixed;
    visibility: hidden;
    transition: all 0.7s;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    opacity: 0;
    left: 30%;
    right: 0;
    top: 0;
    background: #000000ac;
    backdrop-filter: blur(10px);
    z-index: 99;
    padding-top: 25%;
    transform: translateX(100%);
    list-style: none;
    transition: all 0.6s;
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    height: 100vh;
    transform: translateX(0%);
  }

  .nav-links li {
    padding: 6px;
  }

  .nav-links li a {
    font-size: 20px;
    font-weight: 200;
  }

  .nav-links.active li a:hover {
    transform: translateX(100%);
  }

  .sec_padding {
    padding: 40px 0 40px;
  }

  .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
  }
}

.banner {
  background-image: url(../images/lodha-img/banner2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding-top: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner-form-sec{
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
.banner-form-sec input{
  color:#000 !important;
}
.banner h1 {
  color: #000000;
  font-size: 30px;
}

.banner p {
  font-size: 18px;
  color: #000000;
}
.banner-content {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.border-right{
  border-right: 1px solid #ddd;
}
/**Key Heightlight ***/
.key-highlights{
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #ddd;
}
.key-highlights .text-3{
  width: 70%;
  text-align: center;
  margin: auto;
  margin-top: 10px;
}
/* From Uiverse.io by Spacious74 */
.outer {
  width: 26vw;
  height: 70px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #9c802e, #60a734);
  position: relative;
}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 30px);
  }
  50% {
    top: calc(100% - 10px);
    right: calc(100% - 50px);
  }
  75% {
    top: calc(100% - 10px);
    right: 10%;
  }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #202222;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, #444444ba, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
}
.ray {
  width: 26vw;
  height: 53px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.card .text {
  font-weight: bolder;
  font-size: 17px;
  color: #fff;
  /* background: linear-gradient(45deg, #000000 4%, #fff, #000);
  background-clip: text;
  color: transparent; */
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2c2c2c;
}
.topl {
  top: 10%;
  background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.bottoml {
  bottom: 10%;
}
.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}
/*******/
.table-responsive {
    padding: 10px;
}
.table-23 {
  border-radius: 20px;
  border: 1px solid #9c802e;
  overflow: hidden;
  box-shadow: 0px 0px 0px 1px #9c802e;
  padding-bottom: 20px;
}
.table-23 thead {
  background-color: #9c802e;
  color: #fff;
}
.table-23 th, .table-23 td {
  padding: 14px;
  vertical-align: middle;
}
.table-23 tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}
.table-23 .btn-cost {
  background-color: #9c802e;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
.table-23 .btn-cost:hover {
  background-color: #b39b49;
  color: #fff;
}
.table-23  .btn-grad {
    margin: 0px;
    padding: 10px 25px;
}
@media (max-width: 576px) {
  .table-23 th,
  .table-23 td {
    display: block;
    width: 100%;
    text-align: center;
  }

  .table-23 tr {
    margin-bottom: 1rem;
    display: block;
    border-bottom: 1px solid #ddd;
    width: 90vw;
  }

  .table-23 thead {
    display: none;
  }
  colgroup col{
    width: 100%;
  }
}
/**********master plan*******/
.plan_sec{
  background-color: #EFEBEB;
}
.master_plan img{
  border-radius: 20px;
}
.master_plan .img_text{
  background-color: #fff;
  padding: 20px;
  position: absolute;
  top: 40%;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
}
.master_plan .plan_img{
  position: relative;
  border: 5px solid #fff;
  border-radius: 20px;
}
.about_us p {
  font-size: 18px;
}

/* highlight_sec */

.highlight_sec ul {
  padding: 30px;
}
.highlight_sec ul li {
  color: #fff;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #8a8a8a;
}

.highlight_sec ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.highlight_sec .btn-grad {
  position: absolute;
  bottom: 20px;
  left: 35%;
}
/****Key Hightlights****/
.key-highlights-2 {
  display: flex;
  flex-wrap: wrap;       
  gap: 20px;   
}
.img-raius-20{
  border-radius: 20px;
}
.key-highlights-2 .image-box:hover{
  transform: scale(1.03);
}

.key-highlights-2 .image-box {
  flex: 0 0 calc(50% - 10px);
  transition: all 0.3s; 
}
/* Gallery 23 */
.image-gallery-23 {
  width: 100%;
  height: 100%;
}

.image-gallery-23 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.image-gallery-23 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.image-gallery-23 .swiper-pagination-bullet {
  background: #9c802e;
  opacity: 1;
}

.image-gallery-23 .swiper-pagination-bullet-active {
  background: #c2a84b;
}
.image-gallery-23 .swiper-button-next{
  left: 20px;
}
.image-gallery-23 .swiper-button-next,
.image-gallery-23 .swiper-button-prev {
  color: #9c802e;
  transition: all 0.3s ease;
}

.image-gallery-23 .swiper-button-next:hover,
.image-gallery-23 .swiper-button-prev:hover {
  color: #c2a84b;
}

.image-gallery-23 .swiper-button-next::after,
.image-gallery-23 .swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
}
.slide-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
  margin-top: 20px;
  margin-bottom: 10px;
}

.slide-nav .swiper-button-prev,
.slide-nav .swiper-button-next {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9c802e;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-nav .swiper-button-prev:hover,
.slide-nav .swiper-button-next:hover {
  color: #c2a84b;
}
.swiper-button {
    width: 20px !important;
    padding: 20px !important;
    background: #ffffff !important;
    border-radius: 50px !important;
    box-shadow: 0px 2px 2px 1px #9999 !important;
}
/*************/
.project-details{
     background-color: #fff;
     color: #000;
     padding: 20px;
     border-radius: 20px;
}
.project-details .offset {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--Primary-color);
    color: #333;
    padding: 4px 15px;
    min-width: 60%;
    max-width: 90%;
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    border-bottom: none;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px 10px 0 0;
}
.offerBox {padding:5px; color:#333; font-weight:500; font-size:14px; width:95%; background:fixed; margin:10px auto; transform:scale(1); text-align:center;}
.offerBox .innerBox {border:2px dashed var(--Secondary-color); padding:8px 4px;}
.offerBox .innerBox p {font-size:14px;}
.offerBox .innerBox hr {
    margin: 6px;
    opacity: 1;
    border-top: 1px solid;
    height: 0;
}
.offerBox .innerBox {
    border: 2px dashed #9c802e;
    padding: 8px 20px;
}
.animatedtext
 {
    background: linear-gradient(to right top, #9c802e, #f9e9b9, #f9e9b9, #f9e9b9);
    background-size: 400% 200%;
}
.price-text {
    font-size: 20px;
    margin: 0px 0px 8px 0px;
    text-align: center;
    font-weight: 600;
}
/*****/
.video-02 iframe{
  border-radius: 20px;
}
.img-sticky{
  position: sticky;
  top: 100px;
}

.overlaay-23{
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000000bc;
  top: 0;
  left: 0;
}

.no_dont_lie ul {
  padding-left: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  margin-top: -60px;
}
.no_dont_lie li {
  list-style: none;
  width: 20%;
  text-align: center;
}
.no_dont_lie li .circle {
  height: 120px;
  width: 120px;
  margin: auto;
  padding: 25px;
  background-color: #fff;
  border: 2px solid #9c802e;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.no_dont_lie li .circle img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.no_dont_lie li h6 {
      font-size: 16px;
    font-weight: 600;
    color: #242422;
    margin-top: 15px;
    margin-bottom: 5px;
}
.no_dont_lie li p {
  font-size: 15px;
  font-weight: 500;
}

/* amenities_wrapper */

.amenities_wrapper * {
  color: #fff;
}
.amenities_wrapper h2 {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  display: inline-block;
  text-align: center;
}

.amenities_wrapper h3 {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed #9c802e;
  margin-bottom: 20px;
  display: inline-block;
  color: #9c802e;
}
.image-box {
  margin-bottom: 20px;
  min-height: 125px;
  background-color: #191919;
  padding: 13px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.image-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.image-box p {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
}

.amenities_wrapper .col-lg-2 {
  width: 14% !important;
}

/* ==================== Footer Start ==================== */
.innerFooter {
  background: #000;
  color: #fff;
}

.innerFooter p {
  font-size: 15px;
  line-height: 1.5;
}

.footerlogo {
  width: 100px !important;
}

/* contact us  */

.sticky_part {
  position: sticky;
  position: -webkit-sticky;
  top: 30px;
}

.Masterplanbox {
  background-color: #eae8e5;
}
.Masterplanbox ol {
  padding-left: 0px !important;
}
.Masterplanbox ol li {
  font-size: 15px;
  margin-bottom: 7px;
}

.cta_sec {
  height: 100%;
  width: 100%;
}
.cta_sec img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.connect-icon {
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.connect-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
}
input {
  color: #000;
}
.phone-sec {
  display: flex;
}

.phone-sec .country-code {
  width: 20% !important;
  border: none !important;
  top: 1px;
  background-color: transparent;
  border-right: 1px solid #e1e1e1;
}

.iti {
  position: absolute;
  width: 20% !important;
}

input:focus {
  box-shadow: none !important;
}

.form__select select {
  height: 50px;
  margin-top: 10px;
}
.form__select select:focus {
  box-shadow: none !important;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  width: 100%;
  background: transparent;
  border: none;
  height: 50px;
  border: 1px solid #000;
  border-radius: 0px;
  color: #000;
}
/* .input-group #phone {
  color: white;
} */

.phone-sec .phn-num {
  width: 100% !important;
  height: 50px;
  border: none;
  background-color: transparent;
  border: 1px solid #000;
  padding-left: 110px !important;
  outline: 0 !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 1px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid #d5d5d5;
  padding: 0 11px 0 8px;
  height: 50px;
}

.iti__arrow {
  opacity: 0;
}
.select2-container .select2-selection--single {
  height: 50px !important;
  padding-left: 16px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px;
  color: #757575;
  font-family: var(--Manrope);
  font-size: 14px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 30px;
  right: 12px;
  width: 21px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 10px 6px 0 7px;
}

.flag-icon.flag-icon-squared {
  width: 1em;
  margin-right: 8px;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: -1px;
  right: 0;
  padding: 0 !important;
}

.select2-search__field:focus-visible {
  outline: 0 !important;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

#mobile_code.form-select {
  padding-top: 0.9rem;
}

/* button  */

.theme_btn_3 {
  border: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 0.7em 2.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #000;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
}

.theme_btn_3 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 2px solid #000;
}

.theme_btn_3 span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: #f1f1f1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

.theme_btn_3:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #000;
}

.theme_btn_3:hover {
  color: white;
}

.theme_btn_3:active span::before {
  background: #000;
}

/* sticky_contact for mobile   */

.sticky_contact {
  display: none;
}
@media screen and (max-width: 992px) {
  .sticky_contact {
    display: block;
    background: #9c802e;
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9;
    padding: 7px 2px;
  }

  .sticky_contact ul.list-styled {
    justify-content: center;
    margin-bottom: 0 !important;
  }

  .sticky_contact ul.list-styled li {
    margin: 0 24px;
    padding: 3px 5px;
    border: 0;
    font-size: 16px;
    min-width: 108px;
    text-align: center;
    list-style: none;
    margin-bottom: 0;
    text-decoration: none;
  }
  .sticky_contact ul.list-styled li a {
    text-decoration: none;
  }
  .sticky_contact ul.list-styled li:first-child {
    border-right: 1px solid #fff;
    padding-right: 30px;
    margin-right: 0;
  }
}

/* sidebar form   */

.request-btn {
  position: fixed;
  background: #9c802e;
  right: -44px;
  top: 47%;
  transform: rotate(90deg) translateY(-50%);
  z-index: 2;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.request-btn.active {
  right: 330px;
  background: #ffdc09;
}
.request-btn:hover {
  color: #fff;
  background: #000;
}
.Sideform .close {
  color: #000;
  position: absolute;
  top: -30px;
  left: -15px;
  background: #fff;
  height: 30px;
  width: 30px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 0px;
  box-shadow: 0 0 15px #00000047;
  opacity: 0;
}
.Sideform.active .close {
  opacity: 1;
}
.Sideform input {
  font-size: 14px;
}
.Sideform input::placeholder {
  color: #fff !important;
}
.Sideform select {
  color: #fff !important;
  font-size: 14px;
}
.Sideform .iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}

.Sideform {
  width: 375px;
  background: #000000dc;
  padding: 40px 25px;
  position: fixed;
  right: -380px;
  top: 55%;
  transform: translateY(-50%);
  border-radius: 10px;
  background-blend-mode: color;
  transition: all 0.3s linear;
  z-index: 12;
}
.Sideform.active {
  right: 0;
}
.Sideform .text-yellow {
  color: var(--yellow);
}
.Sideform .btn {
  font-size: 16px;
  margin: 20px auto;
  display: block;
}
.Sideform .form-floating > .form-control,
.Sideform .form-floating > .form-control-plaintext,
.Sideform .form-floating > .form-select {
  height: calc(3rem + 2px);
  line-height: 1.25;
  padding: 1.25rem 0.75rem 0.5rem;
  background: #ffffff45;
  color: #fff;
  border: 0px;
  backdrop-filter: blur(3px);
  font-size: 14px;
}
.Sideform .form-floating > label {
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 15px;
}

.Sideform .input-group > .form-control,
.Sideform .input-group > .form-floating,
.Sideform .input-group > .form-select {
  width: 100%;
  background: transparent;
  border: none;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 0px;
  color: #000;
}

.Sideform .phone-sec .phn-num {
  width: 100% !important;
  height: 50px;
  border: none;
  background-color: transparent;
  border: 1px solid #fff;
  padding-left: 110px !important;
  outline: 0 !important;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background-color: #000;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  z-index: 999;
}

.modal-body,
.modal-content {
  padding: 0;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
}
.modal-body img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
select option {
  color: black;
}
.modal-body .form_wrapper {
  padding: 50px 20px !important;
}
.modal-body .form_wrapper h2 {
  font-size: 25px;
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 1000px !important;
  }
}
.logo_mbl {
  display: none;
}

#phone_error,
#email_error {
  font-size: 13px;
  color: red;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .no_dont_lie ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 40px;
  }
  .no_dont_lie li {
    list-style: none;
    width: 48%;
    text-align: center;
  }
  .amenities_wrapper .col-lg-2 {
    width: 100% !important;
  }
  .amenities_wrapper h3 {
    display: block !important;
  }
  .image-box {
    margin-bottom: 0px;
    width: 100% !important;
    min-height: 125px;
    background-color: #191919;
    padding: 8px;
  }
  .table-23 .btn-grad {
    margin: 0px;
    padding: 10px 25px;
    width: 230px;
    font-size: 14px;
}
.no_dont_lie ul {
  flex-wrap: wrap;
}
.col_wrapper {
  display: flex;
  flex-direction: row; 
  flex-wrap: wrap;     
  gap: 10px;          
  margin-top: 10px;
}
.innerBox{
  color:#000;
}

.col_wrapper .image-box {
  flex: 1 1 calc(50% - 10px); 
  box-sizing: border-box;   
}

  .form_wrapper {
    padding: 20px;
  }
  .highlight_sec .btn-grad {
    position: unset;
    margin: 30px 16%;
  }
  .sec_title {
    font-size: 30px;
  }
  .header {
    padding: 15px 0;
  }
  .logo_mbl {
    display: block;
  }
  .logo img {
    margin-left: 10px !important;
    width: 100px;
    position: static;
  }
  .header .menu-button {
    position: absolute;
    top: 5px;
    right: 0;
  }
  .menu-button label span {
    background-color: #fff;
  }
  .about_us p {
    font-size: 16px;
  }
  .logo_width {
    display: none;
  }
  .banner {
    min-height: auto;
    padding: 40% 0 20% 0;
  }
  .banner p {
    font-size: 16px;
    color: rgb(0, 0, 0)000;
  }
  .outer {
    width: 82vw;
    height: 70px;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #9c802e, #9c802e);
    position: relative;
  }
  .privay-sec-mob{
    margin-bottom: 40px;
  }
  #contact {
    background-color: #f1f1f1;
  }
  #Location {
    padding-top: 0;
  }
  .close-btn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .Sideform .close {
    color: #000;
    position: absolute;
    top: -11px;
    left: 8px;
  }
  .Sideform {
    width: 95% !important;
    right: -100%;
  }
  .connect-icon {
    display: none;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .header {
    padding: 25px 0;
  }
  header .nav-links {
    gap: 40px;
  }
  .logo img {
    width: 100px;

    /* top: -25px; */
  }
  .no_dont_lie li p {
    font-size: 14px;
    font-weight: 500;
  }
  .image-box p {
    font-size: 13px;
  }
  .image-box {
    padding: 13px 10px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .header {
    padding: 15px 0;
  }
  header .nav-links {
    gap: 40px;
  }
  .logo img {
    width: 130px;
    margin-left: -20px;
    /* top: -25px; */
  }
  header .nav-links li a {
    font-size: 14px;
  }
  .logo_width {
    width: 50px;
  }
  .image-box p {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .sec_title {
    font-size: 40px;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#autoPopup .row {
  border-radius: 10px;
}

#autoPopup .right-col {
  background: #eae8e5;
}

#autoPopup .right-col .modal-content {
  border: none;
}
#autoPopup .img-container {
  height: 100%;
}
#autoPopup .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.intro_embassy {
  height: 85vh;
  width: 100%;
  background-image: url(../images/Embassy-is-Introducing-Luxury-villas.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.intro_embassy h2 {
  color: #fff;
  text-transform: uppercase;
}

.intro_embassy h3 {
  font-size: 30px;
  display: flex;
  font-weight: 400;
  align-items: flex-start;
  color: #fff;
}
.intro_embassy h3 span {
  font-size: 100px;
  color: #fff;
  margin-top: -10px;
  font-weight: 600;
}
.intro_embassy .cr_rs {
  font-size: 30px;
  font-weight: 400;
  margin-top: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #autoPopup .img-container {
    max-height: 35vh;
    min-height: 250px;
  }

  #autoPopup .row {
    position: relative;
    padding: 14px;
  }

  #autoPopup .modal-content {
    position: static;
  }
  .border-right{
    border-right: 0px;
  }
  #autoPopup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .intro_embassy {
    height: 100vh;
    background-image: url(../images/Embassy-is-Introducing-Luxury-villas-Mobile.webp);
  }
  .intro_embassy br{
    display: none;
  }
  .intro_embassy h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
  }

  .intro_embassy h3 {
    font-size: 16px;
    display: flex;
    gap: 5px;
    font-weight: 400;
    align-items: flex-start;
    color: #fff;
  }
  .intro_embassy h3 span {
    font-size: 40px;
    color: #fff;
    margin-top: -10px;
    font-weight: 600;
  }
  .intro_embassy .cr_rs {
    font-size: 16px;
    font-weight: 400;
    margin-top: auto;
    margin-bottom:10px;
  }
}
