@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap"); 
@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap"); 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: Century Gothic;
  src: url(../font/Century-Gothic.otf);
    font-display: swap;
  font-weight: normal;
  font-style: normal;
}
:root {
    --font-primary:  "Montserrat", sans-serif;
    --font-secondary: Century Gothic;
    --theme-color: #fff;
    --primary-color: #d1af80;
    --accent-color: #EEDEC5;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --gradient-color: linear-gradient(210deg,rgba(175, 139, 94, 1) 11%, rgba(238, 207, 156, 1) 36%, rgba(192, 145, 92, 1) 73%, rgba(221, 197, 148, 1) 100%);
}

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--theme-color);
    color: var(--black-color);
}
  img{
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; 
  }
a.custom-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background: var(--gradient-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.2px;
    color: var(--black-color);
    text-decoration: none;
    background-size: 200% 100%;
    background-position: left center;
    border: 2px solid #d1af80;
    position: relative;
    overflow: hidden;
    transition: all 0.7s;
    z-index: 1;
    transition: background-position 0.7s ease;
    animation: btn-animation 3s ease-in-out infinite;
}
@keyframes btn-animation {
    0%{
          background-position: left center;
    }
    50%{
          background-position: right center;
    }
    70%{
           background-position: left center;
    }
}
/* a.custom-btn:before{
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    transition: all 0.7s;
    z-index: -1;
} */
/* a.custom-btn:hover:before{
    left: 0;
    transition: all 0.7s;
} */
/* a.custom-btn:hover{
    color: var(--black-color);
        transition: all 0.7s;
} */
/* a.custom-btn:hover {
   background-position: right center;
   transition: background-position 0.7s ease;
} */

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, background-color 0.35s ease-in-out;
    background-color: transparent;
    box-shadow: none;
}

header.sticky {
    transform: translateY(0px);
    background-color: #eedec5d9;
    box-shadow: rgba(115, 115, 115, 0.37) 0px 0px 50px;
    backdrop-filter: blur(10px);
}

header a.navbar-brand img {
    width: 140px;
    object-fit: contain;
    height: auto;
    /* filter: invert(1); */
}

header ul.navbar-nav {
    gap: 10px;
}

header ul.navbar-nav .nav-item a {
    color: var(--black-color);
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

header a.custom-btn {
      padding: 10px 20px 10px 10px;
      border: 0px;
      font-family: 'Forum';
      font-size: 16px;
      background: #fff;
      color: var(--black-color);
      font-weight: 400;
}

header a.custom-btn img {
    width: 20px;
    vertical-align: middle;
    transition: 0.7s;
    /* filter: invert(1); */
}

header a.custom-btn:hover img {
    /* filter: none; */
    transition: 0.7s;
}
.navbar-toggler{
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
button.navbar-toggler[aria-expanded="true"] .menu {
    display: none;
}

button.navbar-toggler[aria-expanded="false"] .menu {
    display: block;
}

button.navbar-toggler[aria-expanded="true"] .close {
    display: block;
}

button.navbar-toggler[aria-expanded="false"] .close {
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

section.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform-origin: center bottom;
}

section.hero-section img {
    width: 100%;
    height: 100%;
}
section.hero-section video {
    width: 100%;
    height: 100vh;
    object-fit: fill;
}
.overview-section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.overview-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../images/overview-pattern.webp");
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
    filter: invert(1);
}

.overview-section::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0px;
    width: 400px;
    height: 400px;
    background-image: url("../images/pattern-back.webp");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.07;
}

.overview-image {
    position: relative;
    overflow: visible;
}

.overview-image img, .overview-image video {
    border-radius: 20px;
    height: 600px;
    width: 500px;
    object-fit: cover;
    object-position: top;
    /* margin-top: 200px; */
    will-change: transform;
}

.overview-content .overview-right-image img {
    border-radius: 30px;
    height: 400px;
    width: 350px;
    object-fit: cover;
    display: block;
}

.overview-content span {
    /* margin-top: 80px; */
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.overview-content h1 {
    font-size: 36px;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0px;
    margin: 20px 0px 30px;
}

.overview-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.2px;
    margin-bottom: 0px;
    text-align: justify;
}

.overview-content ul {
    display: flex;
    list-style: none;
    padding: 0px;
    gap: 50px;
    margin: 30px 0px 50px;
}

.overview-content ul li {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.overview-content ul li img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* .overview-content a {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background-color: var(--black-color);
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    color: var(--theme-color);
    text-decoration: none;
} */

.define {
    position: relative;
    background-image: url("../images/define-balance.webp");
    background-size: cover;
    background-position: center center;
    height: 100vh;
    background-attachment: fixed;
}

.define .container {
    height: 100%;
}

.define .row {
    justify-content: end;
    align-items: center;
    height: 100%;
}

.define-content {
    width: 680px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 30px;
}

.define-content h2 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0px;
    color: rgb(255, 255, 255);
    position: relative;
}

.define-content h2::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -30px;
    width: 44px;
    height: 1px;
    background: rgb(244, 235, 228);
}

.define-content ul {
    list-style: none;
    padding: 0px;
    margin: 60px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.define-content ul li {
    width: calc(50% - 15px);
}

.define-content ul li {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--primary-color);
}
.define-content ul li img {
    width: 25px;
    height: 25px;
}
.define-content ul li sup {
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 0px;
    position: relative;
    top: -20px;
    color: var(--white-color);
}

.define-content a {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background-color: var(--white-color);
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    color: var(--black-color);
    text-decoration: none;
    transition: 0.7s;
}

.define-content a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    transition: 0.7s;
}

section.location-section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

/* section.location-section::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    transform: rotateY(180deg);
    width: 370px;
    height: 340px;
    opacity: 0.07;
}

section.location-section::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 20px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    width: 370px;
    height: 340px;
    opacity: 0.07;
} */

.section-title {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0px auto 80px;
}

.section-title span {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--primary-color);
}

.section-title h2 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 30px;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
}

.prime-location {
    text-align: center;
    padding: 0px 50px;
    position: relative;
}

section.location-section .col-lg-6:last-child .prime-location::after {
    display: none;
}

.prime-location::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(rgba(232, 216, 172, 0) 0px, rgb(227 28 35) 55%, rgba(249, 103, 53, 0.06) 100%);
    width: 1px;
    height: 100%;
}

.prime-location::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgb(227 28 35) 55%, rgba(249, 103, 53, 0.06) 100%);
    position: absolute;
    bottom: -55px;
    left: 0px;
    z-index: 99;
    padding: 0px;
}

.prime-location p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
}

.prime-location img {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
}

section.location-section .row {
    margin: 100px auto 120px;
    max-width: 1000px;
}

section.roset-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../images/roset-image.webp");
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

section.roset-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(51deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 100%);
    z-index: -1;
}

section.roset-section .container {
    height: 100%;
}

section.roset-section .row {
    height: 100%;
    justify-content: end;
    align-items: center;
}

.roset-content {
    max-width: 600px;
}

.roset-content img {
    max-width: 300px;
}

.roset-content-inner {
    padding-left: 150px;
    padding-top: 80px;
}

.roset-content-inner p {
    color: rgb(255, 255, 255);
    margin-bottom: 60px;
}

.roset-content-inner a {
    background-color: var(--white-color);
    color: var(--black-color);
    transition: 0.7s;
}

.roset-content-inner a:hover {
    background-color: var(--primary-color);
    transition: 0.7s;
}

section.amenities-section {
    padding: 100px 0px 50px 0;
    position: relative;
    background: var(--accent-color);
}

.bg-video-before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 400px;
    height: 700px;
    opacity: 0.2;
}

.bg-video-after {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 400px;
    height: 700px;
    transform: rotateY(180deg);
    opacity: 0.2;
}

.bg-video-before video, .bg-video-after video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video-before::before, .bg-video-after::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(253, 234, 227) 0%, rgba(253, 234, 227, 0.15) 92.45%), linear-gradient(rgb(250, 231, 225) 0%, rgba(255, 255, 255, 0.3) 19.43%), linear-gradient(rgba(0, 0, 0, 0) 81.89%, rgb(0, 0, 0) 100%);
    z-index: -1;
}

section.amenities-section .container {
    position: relative;
}
.amenities-box {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.amenities-box a {
    position: relative;
    height: 450px;
    display: block;
    overflow: hidden;
    /* border-radius: 10px 10px 0 0; */
    transition: 0.4s
}
/* .amenities-box a img{
      border-radius: 10px 10px 0 0;
}
.swiper.aminities-slider .swiper-slide:nth-child(even) .amenities-box a {
     border-radius: 0 0 10px 10px;
}
.swiper.aminities-slider .swiper-slide:nth-child(even) .amenities-box a img{
     border-radius: 0 0 10px 10px;
} */

.amenities-box-content {
    padding: 15px 0;
    position: absolute;
    z-index: 9;
    width: 100%;
    background: #0000006e;
}
.swiper.aminities-slider .swiper-slide:nth-child(odd) .amenities-box-content {
    top: 0;
}
.swiper.aminities-slider .swiper-slide:nth-child(even) .amenities-box-content {
    bottom: 0;
}
.amenities-icon{
    width: 45px;
    height: 45px;
    display: block;
    margin: auto;
}
.amenities-box a img {
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    object-fit: cover;
    transition: 0.8s;
}

.amenities-box a:hover img {
    transform: scale(1.2);
    transition: 0.8s;
}

.amenities-box h4 {
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-align: center;
    /* margin-top: 25px; */
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #fff;
        min-height: 40px;
}

.swiper.aminities-slider .swiper-slide .row {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 60px;
}

.swiper.aminities-slider .swiper-controls {
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    top: inherit;
    bottom: -70px;
    z-index: 999;
    width: 100%;
    gap: 60px;
}

.text-center.aminites-btn {
    position: absolute;
    bottom: 80px;
    width: auto;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
}

.swiper.aminities-slider .swiper-pagination, .swiper.aminities-slider-mob .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: max-content !important;
}

.swiper.aminities-slider .swiper-button-prev, .swiper.aminities-slider .swiper-button-next, .swiper.aminities-slider-mob .swiper-button-prev, .swiper.aminities-slider-mob .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    left: inherit;
    right: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper.aminities-slider .swiper-button-prev, .swiper.aminities-slider-mob .swiper-button-prev {
    border-left: 1px solid var(--primary-color);
}

.swiper.aminities-slider .swiper-button-next, .swiper.aminities-slider-mob .swiper-button-next {
    border-right: 1px solid var(--primary-color);
}

.swiper.aminities-slider .swiper-button-prev::after, .swiper.aminities-slider .swiper-button-next::after, .swiper.aminities-slider-mob .swiper-button-prev::after, .swiper.aminities-slider-mob .swiper-button-next::after {
    display: none;
}

.swiper.aminities-slider .swiper-button-prev img, .swiper.aminities-slider .swiper-button-next img, .swiper.aminities-slider-mob .swiper-button-prev img, .swiper.aminities-slider-mob .swiper-button-next img {
    width: 18px;
    height: 14px;
    object-fit: contain;
}

.swiper.aminities-slider, .swiper.aminities-slider-mob {
    padding-bottom: 100px;
    transform: translateZ(0px);
    backface-visibility: hidden;
}

.swiper.aminities-slider .swiper-pagination span.swiper-pagination-bullet, .swiper.aminities-slider-mob .swiper-pagination span.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--white-color);
    opacity: 1;
}

.swiper.aminities-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper.aminities-slider-mob span.swiper-pagination-bullet.swiper-pagination-bullet-active, .gallery-section .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
    border: 5px solid var(--white-color);
    width: 14px;
    height: 14px;
}

.gallery-section {
    padding-bottom: 80px;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.gallery-button-prev, .gallery-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-button-prev {
    border-left: 1px solid var(--primary-color);
}

.gallery-button-next {
    border-right: 1px solid var(--primary-color);
}

.gallery-button-prev::after, .gallery-button-next::after {
    display: none;
}

.gallery-button-prev img, .gallery-button-next img {
    width: 18px;
    height: 14px;
    object-fit: contain;
}

.gallery-section .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: max-content;
    top: inherit;
    bottom: inherit;
}

.gallery-section .swiper-pagination span.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgb(191, 191, 191);
    opacity: 1;
}

section.floor-plan {
    padding: 100px 0px;
}

.floor-plan-panel {
    padding-right: 100px;
}

.floor-plan-tab img {
    width: 24px;
    height: 24px;
    display: none;
    object-fit: fill;
}

.floor-plan-tabs {
    margin-bottom: 60px;
    display: flex;
}

.floor-plan-tab {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 30px;
}

.floor-plan-tab:first-child {
    padding-left: 0px;
    border-right: 1px solid rgb(241, 147, 121);
}

.floor-plan-tab:last-child {
    padding-right: 0px;
}

.floor-plan-tab.active {
    color: var(--primary-color);
}

.floor-plan-tab.active img {
    display: block;
}

.floor-plan-info {
    display: grid;
    gap: 24px;
}

.floor-plan-data {
    display: none;
}

.floor-plan-data.active {
    display: block;
}

.floor-plan-data {
    display: none;
}

#plan-master:checked ~ .floor-plan-info .plan-master, #plan-floor:checked ~ .floor-plan-info .plan-floor {
    display: block;
}

.floor-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--primary-color);
    padding: 24px 0px;
}

.floor-plan-item span {
   font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary-color);
}

.floor-plan-item strong {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--font-primary);
}

.floor-plan-actions {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: end;
    margin-top: 80px;
}

.floor-plan-btn {
    border: 0px;
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floor-plan-image-inner {
    height: 450px;
    width: 100%;
    border: 2px solid var(--black-color);
    border-radius: 20px;
    padding: 20px;
}

.floor-plan-image-inner img {
    width: 100%;
    height: 100%;
    filter: blur(5px);
}

.floor-plan-swiper {
    position: relative;
}

.floor-plan-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.floor-plan-image {
    position: relative;
}

.floor-plan-image a.custom-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

section.location-advantage {
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
    background: var(--black-color);
}

section.location-advantage::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 0px;
    width: 200px;
    height: 200px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    opacity: 0.1;
}

section.location-advantage .section-title h2 {
    color: var(--white-color);
}

.location-list {
    padding-left: 60px;
}

.location-list ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.location-list ul li {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
    color: var(--white-color);
}

.location-list ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    background-image: url("../images/sumit-casa-colored-icon.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.location-list-btn a.custom-btn {
    background-color: var(--white-color);
    color: var(--black-color);
}

.location-list-btn a.custom-btn:hover {
    background-color: var(--primary-color);
}

.location-map {
    height: 500px;
    position: relative;
}

.location-map img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

section.gallery-section {
    padding: 100px 0px;
    position: relative;
    background-color: var(--black-color);
}

section.gallery-section  .section-title h2{
    color: var(--white-color);
}

section.gallery-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 300px;
    height: 300px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    opacity: 0.07;
}

.gallery-swiper {
    position: relative;
    /* margin-left: 300px; */
}

.gallery-swiper .swiper-slide {
    opacity: 0.6;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.gallery-swiper .swiper-slide-next, .gallery-swiper .swiper-slide-prev {
    opacity: 0.8;
}

.gallery-swiper img {
    width: 100%;
    height: 550px;
    border-radius: 30px;
    object-fit: cover;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    position: absolute;
    right: 40px;
}
/* .gallery-section a.custom-btn{
    background-color: var(--primary-color);
    
} */
.about-developer-section {
    padding: 100px 0px;
    position: relative;
    background: #EEDEC5;
}
.about-developer-section .section-title span {
    color: var(--black-color);
}
.about-developer-section::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -50px;
    background-image: url("../images/flower-top.webp");
    transform: rotateY(180deg);
    width: 370px;
    height: 340px;
}
.about-developer-header .section-title {
    margin: 0 auto 50px;
}
.about-dev-content h3 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0px;
    margin-bottom: 40px;
}

.about-dev-content p {
    font-size: 15px;
    text-align: justify;
    font-weight: 500;
}

/* .about-developer-section .col-md-6:first-child {
    padding: 0px 100px 0px 0px;.about-developer-card
} */

/* .about-dev img {
    max-width: 220px;
} */

/* .about-developer-section .section-title {
    margin-bottom: 0px;
        margin: 0;
}

.about-developer-section .section-title h2 {
    font-size: 28px;
} */
.dev-content img {
   margin-bottom: 30px;
    margin-top: 20px;
    height: 60px;
    object-fit: contain;
}
.dev-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.2px;
    margin-bottom: 0px;
    text-align: justify;
}
.dev-content .col-md-6 h5{
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
section.contact-form-section {
    padding: 80px 0px;
    position: relative;
}

section.contact-form-section::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url("../images/pattern-back.webp") right center / contain no-repeat;
    opacity: 0.07;
    z-index: -1;
}

section.contact-form-section .container {
    position: relative;
}

section.contact-form-section .container::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgba(15, 61, 46, 0.37) 50%, rgba(232, 216, 172, 0.06) 100%);
    position: absolute;
    bottom: -80px;
    left: 0px;
    z-index: 99;
}

.gold-section img {
    width: 60px;
    height: 60px;
    margin-bottom: 50px;
}

.gold-section img.qr {
    border: 1px solid rgb(0, 0, 0);
}

.gold-section h3 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 48px;
    line-height: 44px;
    letter-spacing: 0px;
}

.gold-section h3 span {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 44px;
    letter-spacing: 0px;
    display: block;
}

.form {
     border-right: 1px solid var(--primary-color);
     border-left: 1px solid var(--primary-color);
     background: rgb(238 222 197);
     padding: 60px 70px;
     border-radius: 40px;
     max-width: 90%;
    margin: auto;
}

.form input.form-control {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.5px;
  padding: 17px 20px;
  border: 1px solid rgba(0, 0, 0, 0.29);
  background-color: var(--white-color);
  color: var(--black-color);
}

.form input.form-control::placeholder {
    color: var(--black-color);
    opacity: 0.5;
}

.form-control:focus {
    box-shadow: none;
}

label.form-check-label {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 8px;
    line-height: 12px;
    letter-spacing: 0px;
    color: var(--black-color);
}

button.custom-btn {
     display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.2px;
    color: var(--primary-color);
    text-decoration: none;
    background-size: 200% 100%;
    background-position: left center;
    border: 2px solid #d1af80;
    position: relative;
    overflow: hidden;
     transition: all 0.7s;
     z-index: 1;
}

button.custom-btn:before{
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    transition: all 0.7s;
    z-index: -1;
}
button.custom-btn:hover:before{
    left: 0;
    transition: all 0.7s;
}
button.custom-btn:hover{
    color: var(--black-color);
        transition: all 0.7s;
}
.form-check-input:checked{
    background-color: var(--primary-color);
    border-color: var(--primary-color)

}


footer {
    padding: 60px 0px 40px;
    position: relative;
    background-color: var(--black-color);
}

footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    opacity: 0.1;
    z-index: -1;
}

footer .container img {
    max-width: 240px;
    margin-bottom: 40px;
}

footer h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white-color);
}

.discalimerdiv p, span.reamoredbtn {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
    color: var(--white-color);
}

.gtfdiv p {
     font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 0;
}

.gtfdiv p a {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-content {
    background: rgb(238 222 197);
    border-radius: 30px;
    padding: 20px;
}

.modal-content .modal-header {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    border-bottom: 0px;
}

.modal-content .modal-header button {
    padding: 0px;
    opacity: 1;
    border: 1px solid var(--black-color);
    height: 40px;
    border-radius: 50%;
    width: 40px !important;
}

.modal-form .section-title {
    margin-bottom: 0px;
    color: var(--black-color);
}

.modal-form-inner .form-control {font-size: 14px;line-height: 100%;letter-spacing: 0.5px;padding: 17px 20px;border: 1px solid rgba(0, 0, 0, 0.29);background-color: var(--white-color);}
.modal-form-inner .form-control::placeholder{
     color: var(--black-color);
    opacity: 0.5;
}
.about-developer-card {
    position: relative;
    /* text-align: center; */
}

.about-developer-card::after {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgb(185 150 104) 55%, rgba(232, 216, 172, 0.06) 100%);
    position: absolute;
    top: -12px;
    right: 9%;
    z-index: 99;
    padding: 0px;
}

.about-developer-card::before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgb(185 150 104) 55%, rgba(232, 216, 172, 0.06) 100%);
    position: absolute;
    bottom: -12px;
    right: 9%;
    z-index: 99;
    padding: 0px;
}

.about-developer-card h4 {
    font-family: var(--font-primary);
    font-size: 36px;
    color: rgb(0, 0, 0);
    margin-bottom: 0;
}
.about-developer-card h4 span {
    font-size: 14px;
}
.about-developer-card p {
    color: rgb(0, 0, 0);
    margin: 0px;
    font-family: var(--font-primary);
        font-size: 12px;
}
.col-md-6.col-sm-6.col-6.mt-3:nth-child(3) .about-developer-card::after, .col-md-6.col-sm-6.col-6.mt-3:nth-child(4) .about-developer-card::after{
    display: none;
}
span.ai-img-caption {
    position: absolute;
    right: 10px;
    bottom: 5px;
    margin: 0px;
    font-size: 12px;
    color: rgb(255, 255, 255);
}

.amenities-box a {
    position: relative;
}

.gallery-swiper .swiper-slide > a {
    position: relative;
    display: block;
}

.gallery-swiper .swiper-slide span.ai-img-caption {
    right: 20px;
    bottom: 10px;
}

.overview-content span.ai-img-caption {
    right: inherit;
    left: 20px;
    bottom: 10px;
}

.mobile-bottom {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0px;
    background: var(--primary-color);
    display: none;
    justify-content: space-between;
    z-index: 99;
}

.mobile-bottom a {
     color: var(--black-color);
    font-size: 12px;
    padding: 8px 10px;
    text-decoration: none;
    border-right: 1px solid var(--white-color);
    text-align: center;
    width: 33.33%;
    font-weight: 500;
    text-transform: uppercase;
}

a.enquiry-btn {
    position: fixed;
    right: -50px;
    top: 50%;
    padding: 10px 40px;
    background: var(--white-color);
    border: 2px solid #d1af80;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0 0 10px 10px;
    transform: rotate(90deg);
    transform-origin: center;
    z-index: 9;
    overflow: hidden;
    display: none;
}
a.enquiry-btn:before{
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    transition: all 0.7s;
    z-index: -1;
}
a.enquiry-btn:hover:before{
    left: 0;
    transition: all 0.7s;
}
a.enquiry-btn:hover{
    color: var(--black-color);
        transition: all 0.7s;
}
a.float-whatsaap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: float-whatsapp-pulse 1.8s ease-in-out infinite;
}

a.float-whatsaap:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

a.float-whatsaap img {
    width: 50px;
    height: 50px;
    display: block;
}

@keyframes float-whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
    section.gallery-section .container-fluid {
        padding: 0px;
    }
    .modal-dialog {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.modal-content {
    top: 50%;
    transform: translateY(-50%);
}

.google-map-inner iframe, .google-map-inner img {
    border-radius: 30px;
}
.google-map-inner > img {
    border-radius: 30px;
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.pointer {
    position: absolute;
    top: 30%;
    left: 54%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.pointer img{
     animation: up-down 1.8s ease-in-out infinite;   
}
@keyframes up-down {
    0% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
  
}
.pointer:before{
    content: '';
    position: absolute;
    left: 10px;
    bottom: -15px;
    width: 20px;
    background: rgb(227, 28, 35);
    height: 20px;
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1) rotateX(60deg);
        box-shadow: 0 0 0 0 rgba(227, 28, 35, 0.3);
    }
    70% {
        transform: scale(1.04) rotateX(60deg);
        box-shadow: 0 0 0 30px rgba(227, 28, 35, 0);
    }
    100% {
        transform: scale(1) rotateX(60deg);
        box-shadow: 0 0 0 0 rgba(227, 28, 35, 0);
    }
}
.google-map-inner {
    position: relative;
}

.google-map {
    position: relative;
}
.google-content {
       position: absolute;
    max-width: 450px;
    bottom: 20px;
    background: #ffffffe3;
    right: 15px;
    padding: 30px;
    border-radius: 15px;
}

.google-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.google-content ul li img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    margin-right: 5px;
}
.google-content ul li {
    margin-bottom: 20px;
}

.google-content ul li:last-child {
    margin-bottom: 0;
}

section.location-section .section-title {
    margin: 0px auto 50px;
}
.google-map-inner h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: unset;
}
.modal-body {
    padding: 0;
}
.modal-form .section-title h2{
    margin-bottom: 0;
}
section.location-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


section.location-section ul li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
section.amenities-section .section-title span {
    color: var(--black-color);
}
.form label.invalid-data, .modal-form-inner label.invalid-data{
    font-size: 10px;
    background-color: transparent !important;
    padding: 0 !important;
}
.google-map-inner a {
    display: block;
    position: relative;
}

.google-map-inner a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.gtfdiv.d-flex.justify-content-center.flex-wrap-mb {
    display: block !important;
}
.dev-content {
    position: relative;
}

.dev-content:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(232, 216, 172, 0) 0px, rgb(185 150 104) 55%, rgba(232, 216, 172, 0.06) 100%);
}
@media (max-width: 1500px) {
    /* .overview-image img, .overview-image video {
        margin-top: 250px;
    } */
     .form {
         padding: 40px 30px;
        border-radius: 15px;
    }
    .modal-content .modal-header button {
        height: 30px;
        width: 30px !important;
        background-size: 10px;
    }
    .modal-form-inner .form-control, .form input.form-control {
        font-size: 13px;
        padding: 10px 15px;
    }
    .modal-form-inner  button.custom-btn, .form  button.custom-btn, a.custom-btn {
        padding: 15px 30px;
    }
    .modal-form .section-title h2{
        font-size: 18px;
        line-height: 15px;
    }
    .gold-section img {
        margin-bottom: 20px;
    }
section.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

}
@media (max-width: 1500px) {
    header ul.navbar-nav {
    gap: 0;
}
/* .gallery-swiper {
    margin-left: 100px;
} */
}
@media (max-width: 1024px) {
    .location-list {
        padding-left: 20px;
    }

    .gallery-swiper {
        margin-left: 0px;
    }

    .gallery-controls {
        right: 10%;
    }

    .about-developer-section .col-md-6:first-child {
        padding: 0px 50px 0px 0px;
    }

    section.gallery-section .container-fluid {
        padding: 0px;
    }
}
@media (max-width: 991px) {
      .container {
        max-width: 95%;
    }
    .overview-image img, .overview-image video{
        margin-top: 0;
    }
    .prime-location {
        margin-bottom: 100px;
    }
    .prime-location::after{
        display: none;
    }
    .section.location-section .col-lg-6:last-child .prime-location {
        margin-bottom: 0;
    }
    .overview-right-image.reveal{
        display: none;
    }
    .swiper.aminities-slider .swiper-slide .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}
.google-map-inner iframe, .google-map-inner img  {
    border-radius: 15px;
    height: 300px;
}
.form {
    padding: 40px 30px;
}
.floor-plan-panel {
    padding-right: 0;
}
section.about-developer-section .row .col-md-3 {
    width: 33.33%;
    margin-bottom: 20px;
}
}
@media (max-width: 767px) {
    .dev-content:before{
        display: none;
    }
    section.hero-section {
    height: 80vh;
}
    /* section.hero-section {
    height: 100%;
} */
    .swiper.aminities-slider .swiper-controls {
    justify-content: center;
    gap: 20px;
}
section.amenities-section .container-fluid {
    padding: 0;
}

.about-developer-card p {
    font-size: 10px;
}
.form{
    max-width: 100%;
}
      a.float-whatsaap {
        display: none;
    }
    a.enquiry-btn {
        display: none;
    }
    .container {
        max-width: 100%;
    }

    section.amenities-section .container {
        padding: 0px;
    }

    header ul.navbar-nav {
        padding-top: 10px;
        gap: 0px;
    }

    header ul.navbar-nav .nav-item a {
        text-align: center;
        font-family: var(--font-primary);
        font-size: 16px;
        border-bottom: 1px solid var(--primary-color);
        padding: 10px 0px;
    }

    .d-flex.header-btn {
        justify-content: center;
    }

    header a.custom-btn {
        display: none;
    }

    button.custom-btn {
        width: 100%;
        font-family: var(--font-primary);
        font-size: 16px;
    }

    header ul.navbar-nav .nav-item:last-child a {
        border-bottom: 0px;
    }

    header ul.navbar-nav .nav-item:first-child a {
        border-bottom: 1px solid var(--primary-color);
        border-top: 1px solid var(--primary-color)
    }

    .section-title {
           width: 100%;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 0px;
    }
.location-list ul li{
    font-size: 15px;
    margin-bottom: 15px;
}
    .overview-section {
        padding: 40px 0px;
    }
       .modal-content {
                padding: 25px 20px;
    }
    .overview-image img, .overview-image video {
        margin-top: 0px;
        /* height: 300px; */
        width: 100%;
    }
    .modal-content .modal-header button {
        height: 20px;
        width: 20px !important;
    }
    .modal-form .section-title p {
    font-size: 13px;
    margin: 10px 0;
}
    .overview-content {
        display: grid;
    }

    .overview-right-image {
        order: 2;
    }

    .overview-content-inner {
        order: 1;
        margin-bottom: 30px;
    }

    .overview-section::after {
        display: none;
    }

    .overview-content span {
        margin-top: 30px;
    }

    .overview-content .overview-right-image img {
        height: 300px;
        width: 100%;
    }

    .define-image {
        width: 100%;
        height: 400px;
    }

    .define-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    section.define {
        background-image: none;
        height: auto;
    }

    .define-content ul li {
        font-size: 30px;
        width: 50%;
    }

    .define-content ul {
        gap: 20px 0;
        margin: 60px 0px 30px;
    }

    section.location-section::after {
        display: none;
    }

    section.location-section {
        padding: 40px 0px;
    }

    .prime-location {
        padding: 0px;
        margin-bottom: 30px;
    }

    section.location-section .row {
        margin: 0px;
    }

    .roset-image {
        position: relative;
        height: 400px;
    }
.prime-location::before{
    display: none;
}
    .roset-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    section.roset-section {
        height: auto;
        background-image: none;
    }

    .roset-content, .define-content {
        border-radius: 0px;
        padding: 30px 15px;
        width: 100%;
        background-color: var(--black-color);
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    .define-content:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background-image: url(../images/pattern-back.webp);
        background-size: contain;
        opacity: 0.1;
        z-index: -1;
    }
    .overview-content p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

    .about-dev-content p {
        font-size: 14px;
        text-align: justify;
    }

    .discalimerdiv p, span.reamoredbtn {
        font-size: 13px;
        line-height: 22px;
        text-align: justify;
    }

    .define-content ul li sup {
        font-size: 12px;
        top: 0;
        display: block;
        margin-top: 10px;
    }

    .roset-content img {
        max-width: 150px;
        margin: auto;
        display: block;
    }

    .roset-content-inner {
        padding: 30px 0px 0px;
        text-align: center;
    }

    .roset-content-inner p {
        margin-bottom: 30px;
        font-size: 14px;
        text-align: justify;
    }

    section.amenities-section {
        padding: 40px 0px;
    }

    .about-developer-section .section-title {
        padding: 0;
    }
     .floor-plan-image a.custom-btn{
         width: max-content;
     }
    .google-map-inner > img {
        height: 400px;
    }

    .aminites-btn {
        position: relative;
        bottom: inherit;
        right: inherit;
    }

    .swiper.aminities-slider-mob .swiper-controls {
        bottom: -50px;
        gap: 18px;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .swiper.aminities-slider-mob {
        padding-bottom: 100px;
    }

    .swiper.aminities-slider-mob .swiper-button-prev, .swiper.aminities-slider-mob .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    section.floor-plan {
        padding: 40px 0;
    }

    .floor-plan-image-inner {
        height: 350px;
    }

    .floor-plan-panel {
        padding-right: 0px;
        width: 100%;
    }

    .floor-plan-tabs {
        margin-bottom: 30px;
        justify-content: center;
    }

    section.floor-plan .col-md-7 {
        order: 1;
        margin-bottom: 50px;
    }

    section.floor-plan .col-md-5 {
        order: 2;
    }

    .floor-plan-actions {
        justify-content: center;
        margin-top: 30px;
    }

    .location-map {
        height: 300px;
    }

    .location-list {
        padding-left: 0px;
        padding-top: 30px;
        width: 100%;
    }

    .location-list-btn {
        text-align: center;
    }

    section.gallery-section {
        padding: 40px 0px;
    }

    .gallery-swiper {
        margin-left: 0px;
    }

    .gallery-swiper img {
        height: 400px;
    }

    .gallery-controls {
        position: relative;
        right: inherit;
    }

    .gallery-button-prev, .gallery-button-next {
        width: 40px;
        height: 40px;
    }

    .about-developer-section {
        padding: 40px 0px;
    }

    .about-developer-section .section-title h2 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 0px;
    }

    .about-dev-content h3 {
        font-size: 18px;
        line-height: 26px;
        margin: 10px 0;
    }
    .gold-section p {
    margin-bottom: 0;
}

    .about-developer-section .col-md-6:first-child {
        padding: 0px 10px;
    }
section.about-developer-section .row .col-md-3 {
    width: 50%;
    margin-bottom: 10px;
}
    section.contact-form-section {
        padding: 40px 0px;
    }
.about-developer-card h4 {
    font-size: 20px;
    margin-bottom: 0;
}
    .gold-section h3 {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0px;
        text-transform: uppercase;
    }

    .gold-section h3 span {
        font-size: 18px;
        line-height: 24px;
        display: inline;
        font-weight: 500;
    }

    .gold-section img {
        margin-bottom: 10px;
    }

    .form {
        padding: 40px 30px;
        /* margin-top: 30px; */
    }

    footer {
        padding: 40px 0px 60px 0;
    }

    section.contact-form-section .container::before {
        bottom: -40px;
    }

    section.location-section::before {
        left: 0px;
    }

    .bg-video-before {
        width: 100%;
        height: 300px;
    }

    .bg-video-after {
        display: none;
    }

    section.location-advantage::after {
        right: 0px;
    }

    footer::before {
        width: 100%;
    }

    .gtfdiv p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0px;
    }

    .prime-location::after {
        display: none;
    }

    .text-center.aminites-btn {
        position: relative;
        bottom: inherit;
    }

    .overview-right-image.reveal {
        display: none;
    }

    a.custom-btn, button.custom-btn {
        padding: 10px 30px !important;
    }

    .gold-section {
        text-align: center;
    }

    .overview-content-inner {
        text-align: center;
    }
    .define-content-inner {
        text-align: center;
    }

    .overview-content ul {
        justify-content: center;
    }

    section.about-developer-section .col-md-3.col-sm-6.col-6:nth-child(3n) .about-developer-card::after {
        display: none;
    }

    section.about-developer-section .col-md-3.col-sm-6.col-6:nth-child(4n) .about-developer-card::after,  section.about-developer-section .col-md-3.col-sm-6.col-6:nth-child(5n) .about-developer-card::after  {
        display: none;
    }

    .mobile-bottom {
        display: flex;
    }

    section.hero-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .pointer {
        top: 14%;
        left: 63%;
    }
    section.location-advantage {
        padding: 40px 0px;
    }
    .google-map-inner h3 {
        font-size: 26px;
        line-height: 34px;
    }
    .about-dev img {
        max-width: 200px;
        margin-bottom: 20px;
    }
    section.hero-section video {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
    section.contact-form-section .gold-section:first-child {
        order: 2;
    }

    section.contact-form-section .gold-section:last-child {
        order: 1;
        margin-bottom: 20px;
    }
    section.contact-form-section .gold-section:first-child img {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
    }
    .google-content {
    position: relative;
    padding: 0;
    max-width: 100%;
    top: 0;
    left: 0;
    margin-top: 50px;
}

.google-content ul {
    height: 170px;
    overflow-y: scroll;
}
section.location-section ul {
    margin-bottom: 0;
}
section.location-section ul::-webkit-scrollbar {
  width: 4px;
}

/* Track */
section.location-section ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--black-color); 
  border-radius: 10px;
}
 
/* Handle */
section.location-section ul::-webkit-scrollbar-thumb {
  background: var(--primary-color); 
  border-radius: 10px;
}

/* Handle on hover */
section.location-section ul::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color); 
}
.overview-content h1{
    font-size: 24px;
    line-height: 35px;
}
.define-content h2 {
    font-size: 18px;
    line-height: 26px;
}
}
