@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --primary-color: #242933;
  --secondary-color: #fbd160;
  --secondary-light-color: #f9f6f3;
  --body-color: #27262e;
  --gray: #f5f5f5;
  --lightgray: #ababab;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--body-color);
  font: 500 1rem "Josefin Sans", sans-serif;
  overflow-x: hidden;
}

p {
  line-height: 1.5;
}

p>a {
  color: inherit;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

img,
video,
iframe,
svg {
  width: 100%;
  height: 100%;
  display: block;
}

svg:not([fill]) {
  fill: currentColor;
}

.gap-row {
  row-gap: 30px;
}

.gap-form-row {
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

.filter-white {
  -webkit--filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -webkit--filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.icon-circular {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1rem;
  transition: all 300ms ease-in-out;
}

.icon-circular.reverse,
.icon-circular:hover {
  color: #fff;
  background-color: var(--body-color);
}

.icon-circular.reverse:hover{
  background-color: var(--secondary-color);
}

.icon-circular.sm {
  width: 30px;
  height: 30px;
  font-size: .75rem;
}

.icon-circular.bordered {
  background-color: transparent;
  border: 1px solid rgb(0 0 0 / 25%);
  color: var(--secondary-color);
}

i svg {
  width: 16px;
}

.responsive-grid {
  background-image: linear-gradient(0deg, transparent 24%, rgba(251, 209, 96, .2) 25%, rgba(251, 209, 96, .2) 26%, transparent 27%, transparent 74%, rgba(251, 209, 96, .2) 75%, rgba(251, 209, 96, .2) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(251, 209, 96, .2) 25%, rgba(251, 209, 96, .2) 26%, transparent 27%, transparent 74%, rgba(251, 209, 96, .2) 75%, rgba(251, 209, 96, .2) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
}

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 10px 0;
  background-color: var(--primary-color);
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header.fixed,
.header.notfixed {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 5px 0;
}

.logo {
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 200px;
  transition: all 300ms ease-in-out;
}

.fixed-header-strip .header .logo img,
.header.notfixed .logo img,
.header.fixed .logo img {
  width: 150px;
}

.navigation {
  display: flex;
  align-items: center;
}

.navigation .main-menu {
  display: flex;
  align-items: center;
  position: relative;
}

.navigation .main-menu a {
  color: #fff;
  font-weight: 600;
  display: block;
  padding: 10px 1.5rem;
  text-transform: uppercase;
}

.navigation .main-menu a:hover {
  color: var(--secondary-color);
}
/* dropdown */
.navigation ul li .dropdown {
  width: 250px;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.navigation ul li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}
.navigation ul li .dropdown.dropdown-lg {
  width: auto;
  left: 15px;
  right: 15px;
  padding: 1rem 0;
  max-height: 460px;
  background: #242933;
}

.dropdown .dropdown-title{
  padding:1rem 15px 0rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size:15px;
  text-transform: uppercase;
}

.dropdown ul {
  padding: 0 15px;
}

.header .dropdown ul li a {
  padding: 10px 0;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.header .dropdown ul li:hover a {
  border-bottom-color: var(--primary-color);
}

.navigation ul li .dropdown ul li a::before {
  bottom: 0;
}

.navigation ul li .dropdown.dropdown-lg ul {
  flex-wrap: wrap;
}

.navigation ul li .dropdown.dropdown-lg ul li {
  flex: 1;
  padding: 5px;
}

.navigation ul li .dropdown.dropdown-lg ul li a{
  text-transform: none;
  font-size: 13px;
  padding: 0 0 10px;
}
/* dropdown */

.menuBtn{
  background-color: transparent;
  padding: 0;
  border: 0;
}

.menuBtn.closeMenuBtn i.fa-bars::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.mbMenuContainer {
  position: fixed;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 99;
  display: none;
}

.mbMenuContainer .mbMenu {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out 200ms;
  background-color: rgb(0 0 0 / 75%);
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 500px;
  padding: calc(3rem + 73px) 2rem 2rem;
  margin: 0 0 0 auto;
  overflow: auto;
  display: flex;
  flex-direction: column;
}


.mbMenuContainer.active .mbMenu {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
}

.mbMenuContainer .mbMenu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.mbMenuContainer .mbMenu ul li {
  transition: all 300ms ease-in-out;
  border-bottom: 1px solid rgb(255 255 255 / 15%);

  display: flex;
  width: 100%;
}
.bg2f2f2f {
    background: #2f2f2f;
}

@media only screen and (max-width: 576px) {
  .mbMenuContainer .mbMenu ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    /* align-items: flex-start; */
  }
  .directorImg img {
    clip-path:unset !important;
    border-radius: 50%;
    width: 200px;
    height: 200px !important;
    margin: auto;
}
  .mbMenuContainer .mbMenu ul li {
    transition: all 300ms ease-in-out;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
    display: block;
    justify-content: center;
  }

}



.mbMenuContainer .mbMenu .header-bottom ul li {
  border-bottom: 0;
}

.mbMenuContainer .mbMenu>ul:hover li {
  opacity: 0.5;
}

.mbMenuContainer .mbMenu>ul li:hover {
  opacity: 1;
}

.mbMenuContainer .mbMenu ul li a {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 10px 0;
  display: block;
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu ul li:hover>a,
.mbMenuContainer .mbMenu ul li a:focus {
  color: var(--secondary-color);
}

/*header*/

/* header-bottom-phone */
.mbMenuContainer .mbMenu .header-bottom-phone li {
  transition: all 300ms ease-in-out;
  border-bottom: 1px solid rgb(255 255 255 / 15%);

  display: flex;
  width: fit-content;
}

/* banner */
.banner {
  height: 100vh;
  position: relative;
  background-color: #000;
  z-index: 1;
}

.scrollDown{
	position:absolute;
	left:4vw;
	bottom:20px;
	width:40px;
  opacity: 1;
	cursor:pointer;
	z-index:9;
  transition: opacity 200ms ease-in-out;
}
.scrollDown:hover{
  opacity: 1;
}
/* banner */

/* hm overview */
/* hm overview */


/* Our Projects */
.hm-project-img{
  height: 88vh;
}

.featured-text{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.featured-text section{
  width: fit-content;
  background-color: var(--primary-color);
  color: #fff;
  padding: 2rem;
}
.featured-text section .project-name{
  font-size: 2rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 0;
}
.featured-text section .rera{
  display: block;
  margin-bottom: 1rem;
}
.featured-text section span:not(:last-child){
  margin-bottom: 10px;
}
/* Our Projects */

/* location */
.address ul{
  width: fit-content;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.address li:not(:last-of-type){
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--body-color);
}

.address li a{
  color: var(--body-color);
}

.address li a:hover{
  color: var(--secondary-color);
} 
.address li span
{
  width: calc(100% - 65px);
}
/* location */

/*Footer*/
.footer-area {
  letter-spacing: 1px;
  position: relative;
  font-size: 14px;
  z-index: 1;
}

.footer-logo{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img{
  width: 120px;
}

.footer-logo .d-flex{
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.follow-us ul {
  gap: 1.25rem;
}

.follow-us a {
  font-size: 1.75rem;
}

.footer-area .bottom {
  padding: 2rem 0;
  background-color: var(--primary-color);
  color: #fff;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  letter-spacing: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.footer-area .bottom p:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgb(255 255 255 / 14%);
}

.footer-area .bottom p img {
  width: 20px;
}

.button-top {
  background: rgb(70 70 70 / 32%);
  position: fixed;
  right: 20px;
  bottom: -40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 90;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background: var(--secondary-color);
}

/*Footer*/

.headingContainer{
  margin-bottom: 30px;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.heading :is(h1, h2, h3, h4, h5, h6) {
  line-height: 1.3;
  font-weight: 800;
}

.smallHeading{
  font-weight: 700;
}

.logo-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35%;
  transform: translate(-50%, -50%);
  filter: opacity(0.025);
}

.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

.viewmore .button {
  text-transform: uppercase;
  color: var(--body-color);
  font-size: 67.5%;
  font-weight: 700;
  background-color: transparent;
  padding: 0;
  border: 0;
}

.viewmore .button:hover {
  color: var(--secondary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-light {
  color: var(--lightgray) !important;
}

.text-serif {
  font-family: var(--serif);
}

.text-sans {
  font-family: "arial", sans-serif;
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: var(--light);
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-secondary-light {
  background-color: var(--secondary-light-color) !important;
}

.bg-dark {
  background-color: var(--body-color) !important;
  color: #fff;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 75%);
  z-index: -1;
}

.scroller {
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore.d-flex {
  gap: 10px;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  padding: 1.25rem 1.25rem 1rem;
  min-width: 140px;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid var(--primary-color);
  font-weight: 700;
  font-size: .875rem;
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.readmore button {
  width: max-content;
  background: none;
}

.readmore .button:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: transparent;
}

.readmore .button.text-white {
  border-color: var(--secondary-color);
}

.readmore .button.text-white:hover {
  background-color: var(--secondary-color);
  border-color: transparent;
}

.readmore .button.solid.white:hover,
.readmore .button.solid {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.readmore .button.solid.white,
.readmore .button.solid:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
}

.position-relative {
  z-index: 1;
}

/* custom swiper controls */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  scale: 0.8;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 80%);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--secondary-color) !important;
}

.swiper-button-next.lg,
.swiper-button-prev.lg {
  width: 70px;
  height: 70px;
  margin-top: -50px;
}

.swiper-button-next.lg:hover,
.swiper-button-prev.lg:hover {
  backdrop-filter: blur(5px) brightness(2);
  border-color: transparent;
}

.swiper-button-prev.lg:after,
.swiper-button-next.lg:after {
  font-size: 1.5rem;
  font-weight: 100;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--primary-color);
  font-size: 13px;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--secondary-color);
}

.bottomControls {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.bottomControls.position-absolute {
  bottom: 2rem;
  width: 100%;
}

.bottomControls div[class^="swiper-"] {
  position: static;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

.form-group {
  margin-bottom: 20px;
}

.form-group>label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

label {
  cursor: pointer;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background: none;
  outline: none;
  padding-left: 0;
  padding-top: 0;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark {
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark {
  background-color: var(--primary-color);
}

.form-control.form-control-dark::placeholder {
  color: #8f8f8f;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(5px);
}

.modal-content {
  border-radius: 0;
  padding: 1rem;
  background-color: #fff;
}

.modal-body {
  padding: 1rem;
  border: 4px double rgb(0 0 0 / 50%);
}

.modal-logo {
  width: 180px;
  margin: 0 auto 2rem;
}

button.close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.modal-title {
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  font-weight: 500;
  border-bottom: 1px dashed rgb(0 0 0 / 30%);
}

/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1.5s linear;
  transition: all 1.5s linear;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.zoomOut {
  transform: scale(0);
  transition: all .8s ease-in-out;
}

.zoomIn {
  transform: scale(1);
}

/*transformation Animation*/

.list li {
  margin-bottom: 10px;
}

.list li::marker {
  color: var(--primary-color);
}

.list,
.list {
  padding-left: 20px;
}
.directorImg img {
  clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
}