* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x:hidden;
}

/*h1,h2,h3,h4 {*/
/*    font-family: "Merriweather", serif;*/
/*}*/

ul{
    padding-left:0px!important;
    margin:0px!important;
    list-style:none!important;
}

img{
    width:100%;
}

a{
    text-decoration:none;
}

:root {
    --primary-color:#D2B48C;
    --black:#111111;
    --white:#ffffff;
    --gray-color:#5c5c5c;
}

.cursor {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border:2px solid black;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border:2px solid green;
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}





.bg-header{
    /*background-color: wheat;*/
    /*position: absolute;*/
    /*width: 90%;*/
    /*border-radius: 100px;*/
    /*top: 38px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    padding:10px 20px;
}

.logo-image{
    width:40%;
}
.header-section{
    align-items:center;
}
.enquire-btn a{
    border: 1px solid black;
    border-radius: 12px;
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
    padding: 10px 20px;
    color: black;
}
.header-list ul{
    display: flex;
}
.header-list ul li a{
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: black;
    padding: 8px 20px;
}
.header-list ul li a:hover{
    color:var(--primary-color);
}

/* ....................header css  ..............*/

.bg-header{
    background-color:white;
    /*position: absolute;*/
    /*width: 90%;*/
    /*border-radius: 100px;*/
    /*top: 38px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    z-index:1;
}

.logo-image{
    /*width:40%;*/
    width: 150px;
}
.header-section{
    align-items:center;
}

.header-list ul{
    display: flex;
}
.header-list ul li a{
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: black;
    padding: 8px 20px;
}

.project-filter select{
    background-color:transparent!important;
}
.project-filter select option{
    background-color:transparent!important;
    
}
.project-filter select:focus {
    background-color: transparent;
    outline: none;
}


/***** mobile menu css *****/ 

.mobile_menu .side-menu{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
   
    column-gap:20px;
}
.mobile_menu .side-menu i{font-size:25px;}
.bg-offcanvas .offcanvas-header{
    justify-content: flex-end;
}

.offcanvas .inner-list ul{
    display: unset;
}
.bg-offcanvas .inner-list{padding-left: 20px;}
.bg-offcanvas .inner-list li{
    display: block;
    margin-right: 20px;
    border-bottom: 1px solid #dbd8d8;
    transition: all 400ms linear;
    padding: 0;
}
.bg-offcanvas .inner-list  .mobile_submenu li a{
    text-transform:unset!important;
}


.bg-offcanvas{overflow: auto;}
.bg-offcanvas .inner-list li a{
    display: flex;
    color: black;
    text-transform: capitalize;
    font-weight: 500;
    padding: 18px 0px;
    font-size: 16px;
    justify-content: space-between;
}
.bg-offcanvas .inner-list li .sub-menu a{
    padding: 8px 0px;
}
.bg-offcanvas .inner-list li:last-child {
    border: none;
}

.mobile_menu .container-fluid .col-lg-6{padding: 0;}
.bg-offcanvas .inner-list ul li a {
    padding: 10px 0px;
}


.mobile_menu{
    display:none;
    z-index:9;
}
.mobile_menu .row{
    align-items:center;
}
@media screen and  (max-width:991px){
    .bg-header{
        display:none;
    }
    .mobile_menu{
        display:block;
        z-index:9;
    }
}


.bg-offcanvas .header-btn3 {
    margin-top: 25px;
}


/***** End mobile menu css *****/



/*................banner section css......................*/

.banner-filter-search{
    background-color:var(--white);
    border-radius:40px;
    display: flex;
    align-items:center;
    /*margin-top: 120px;*/
}
.banner-filter-span{
    padding: 24px 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 40px 0px 0px 40px;
    text-transform: capitalize;
    width: 20%;
}

.banner-filter-search form{
    width:100%;
    padding:0px 30px;
}
.banner-select-field .main{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
  .current{
    text-transform:capitalize;
  }
  /* @media(max-width:34em){
    .main{
      min-width:150px;
      width:auto;
    }
  } */
  .banner-select-field select {
      display: none !important;
  }
  
  .dropdown-select {
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
      background-color: #fff;
      border-radius: 6px;
      border: solid 1px #eee;
      box-shadow: 0px 2px 3px 0px rgba(155, 155, 155, 0.2);
      box-sizing: border-box;
      cursor: pointer;
      display: block;
      float: left;
      font-size: 14px;
      font-weight: normal;
      height: 50px;
      line-height: 50px;
      outline: none;
      padding:0px 16px;
      position: relative;
      text-align: left !important;
      transition: all 0.2s ease-in-out;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      white-space: nowrap;
      width: auto;
  
  }
  
  .dropdown-select:focus {
      background-color: #fff;
  }
  
  .dropdown-select:hover {
      background-color: #fff;
  }
  
  .dropdown-select:active,
  .dropdown-select.open {
      background-color: #fff !important;
      border-color: #bbb;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
  }
  
  .dropdown-select:after {
      height: 0;
      width: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid #777;
      -webkit-transform: origin(50% 20%);
      transform: origin(50% 20%);
      transition: all 0.125s ease-in-out;
      content: '';
      display: block;
      margin-top: -2px;
      pointer-events: none;
      position: absolute;
      right: 10px;
      top: 50%;
  }
  
  .dropdown-select.open:after {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
  }
  
  .dropdown-select.open .list {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
      pointer-events: auto;
  }
  
  .dropdown-select.open .option {
      cursor: pointer;
  }
  
  .dropdown-select.wide {
      width: 100%;
  }
  
  .dropdown-select.wide .list {
      left: 0 !important;
      right: 0 !important;
      padding:0px 6px;
  }
  
  .dropdown-select .list {
      box-sizing: border-box;
      transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
      -webkit-transform: scale(0.75);
      transform: scale(0.75);
      -webkit-transform-origin: 50% 0;
      transform-origin: 50% 0;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
      background-color: #fff;
      border-radius: 6px;
      margin-top: 4px;
      padding: 3px 0;
      opacity: 0;
      overflow: hidden;
      pointer-events: none;
      position: absolute;
      top: 100%;
      left: 0;
      z-index:9;
      max-height: 250px;
      overflow: auto;
      border: 1px solid #ddd;
  }
  
  .dropdown-select .list:hover .option:not(:hover) {
      background-color: transparent !important;
  }
  .dropdown-select .dd-search{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0rem;
    width: 100%;
  }
  
  .dropdown-select .dd-searchbox{
    width:100%;
    border:1px solid #999;
    border-color:#999;
    border-radius:4px;
    outline:none;
    padding:0px 16px;
  }
  .dropdown-select .dd-searchbox:focus{
    border-color:var(--primary-color);
  }
  
  .dropdown-select .list ul {
      padding: 0;
  }
  
  .dropdown-select .option {
      cursor: default;
      font-weight: 400;
      line-height: 40px;
      outline: none;
      padding:0px 16px;
      text-align: left;
      transition: all 0.2s;
      list-style: none;
  }
  
  .dropdown-select .option:hover,
  .dropdown-select .option:focus {
      background-color: #f6f6f6 !important;
  }
  
  .dropdown-select .option.selected {
      font-weight: 600;
      color:var(--primary-color);
  }
  
  .dropdown-select .option.selected:focus {
      background: #f6f6f6;
  }
  
  .dropdown-select a {
      color: #aaa;
      text-decoration: none;
      transition: all 0.2s ease-in-out;
  }
  
  .dropdown-select a:hover {
      color: #666;
  }
  
  .banner-select-field{
    display:flex;
    justify-content:space-between;;
  }
  .banner-select-field .main{
    width:24%;
  }
.button-filter-banner{
    display:flex;
    align-items:center;
    border-radius:100px;
    background-color:var(--primary-color);
    color:var(--white);
    border:none;
    padding:12px 20px;
    text-transform:capitalize;
    gap:20px;
}
.button-filter-banner i{
    display:block;
}
.button-filter-banner span{
    font-size:18px;
    font-weight:600;
    display:block;
}






.video{
    position: relative;
    height: 820px;
}
.video:after{
    content: "";
    position: absolute;
    left:0%;
    top:0%;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.4);
}


.video video{
    width:100%; 
}
.video img{
    width:100%; 
    height:100%;
    object-fit: cover;
    object-position:left;
}

.bg-banner{
    position: relative;
}
.banner-information{
    position: absolute;
    /*top: 50%;*/
    left: 50%;
    z-index: 3;
    width: 100%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    /*animation: banner-text-move 1s;*/
}

.banner-information h5{
    font-size:34px;
    font-weight:500;
    text-transform:uppercase;
    color:var(--white);
    margin-bottom:24px;
}
.banner-information h2{
    font-size: 64px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    /*margin-bottom:9rem!important;*/
    text-align:center;
    line-height: 1.3;
}


@keyframes banner-text-move {
    from {
        bottom: -20%;
    }
    to {
        bottom: 50%;
    }
}

@keyframes banner-text-move-mobile {
    from {
        bottom: -20%;
    }
    to {
        bottom: 70%;
    }
}

/*.header-btn3 {*/
/*    line-height: 16px;*/
/*    display: inline-block;*/
/*    transition: all 0.4s;*/
/*    background: var(--primary-color);*/
/*    background-color:var(--black);*/
/*    border-radius: 80px;*/
/*    padding: 17px 40px;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    text-transform: capitalize;*/
/*    font-size: 16px;*/
/*    color:var(--white);*/
/*}*/

/*.header-btn3:hover {*/
/*    transition: all 0.4s;*/
/*    background-color:var(--primary-color);*/
/*    color:var(--white);*/
/*}*/

/*.header-btn3:hover::after {*/
/*    width: 94%;*/
/*    transition: all 0.4s;*/
/*    border-radius: 80px;*/
/*    background-color:var(--black);*/
/*}*/

/*.header-btn3:hover::after{*/
/*    width: 94%;*/
/*    transition: all 0.4s;*/
/*    border-radius: 80px;*/
/*    background-color: var(--black);*/
/*    height: 90%;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*}*/



/*.header-btn3::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    height: 40px;*/
/*    width: 40px;*/
/*    display: inline-block;*/
/*    border-radius: 50%;*/
/*    transition: all 0.4s;*/
/*    background:var(--gray-color);*/
/*    left: 5px;*/
/*    top: 50%;*/
/*    transform:translateY(-50%);*/
/*    z-index: -1;*/
/*}*/





/*.header-btn3::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    height: 90%;*/
/*    width: 100%;*/
/*    display: inline-block;*/
/*    border-radius: 50%;*/
/*    transition: all 0.4s;*/
/*    background: var(--gray-color);*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    z-index: -1;*/
/*    transform: translate(-50%, -50%);*/
/*}*/




.banner-slider {
    position: relative;
    margin: 0;
}


.banner-slide {
    height:650px;
    position: relative;
    z-index: 2;
}

.banner-slide:after{
    content: "";
    position: absolute;
    left:0%;
    top:0%;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.3);
}

.banner-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-slide.slick-active.slick-current .banner-information {
    animation: banner-text-move 1s;
}

.banner-arrows {
    width:45px;
    height:45px;
    border-radius:8px;
    background: var(--primary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    color:white;
    position:absolute;
    z-index:4;
    top:50%;
    transform:translateY(-50%);
}

.b-prev-arrow {
    left: 25px;
}

.b-next-arrow {
    right: 25px;
}

.banner-filter-box {
    position: relative;
    z-index: 5;
}

.banner-filter-search {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    box-shadow: 0 15px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
}

.banner-filter-span {
    padding: 40px 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 10px 0px 0px 10px;
    text-transform: capitalize;
    width: 20%;
}

.button-filter-banner {
    border-radius: 10px;
}

.dropdown-select {
    height: 50px;
    line-height: 50px;
}

.bg-project .config-flex h6 {
    border-radius: 0;
    position: relative;
    border: none;
    border-right: 2px solid #dedede;
    padding: 0;
    padding-right: 8px;
}

.bg-project .config-flex h6:last-child {
    border-right: none;
}

.similar-property .config-flex h6 {
    border-radius: 0;
    position: relative;
    border: none;
    border-right: 2px solid #dedede;
    padding: 0;
    padding-right: 8px;
}

.similar-property .config-flex h6:last-child {
    border-right: none;
}

.header-btn3{
	display: inline-block;
	position: relative;
	border: 2px solid var(--primary-color);
	transition: all 0.4s;
    padding: 10px 25px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black);
    border-radius: 5px;
    z-index: 2;
}
.header-btn3:hover {
	color: var(--white);
	background-color: transparent;
}
.header-btn3:hover:before {
	left: 0%;
	right: auto;
	width: 100%;
}
.header-btn3:before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background: var(--primary-color);
	transition: all 0.4s;
    border-radius: 2px;
}

/*............................................counter section css............................................. */


.counter-main {
    position: relative;
    padding: 22px 0;
}

.counter-main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /*background-color: #eff1f9;*/
    background-color:#f7f7f7;
    width: 80%;
    clip-path: polygon(0 0, 95% 0%, 100% 40%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    z-index: -1;
    height: 100%;
}

.counter-list-box {
    display: flex;
    gap: 50px;
}

.counter-item {
    width: 23%;
}

.counter-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    border: 1px solid #ebedf1;
    filter: drop-shadow(2.5px 2.5px 15px rgba(232, 234, 238, .55));
    transition: .4s ease-in-out;
    margin-bottom: 8px;
    padding: 18px;
    position: relative;
}

.counter-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    border-radius: 50%;
    background-color: var(--primary-color);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all .5s cubic-bezier(.62,.21,.45,1.52);
    z-index: -1;
}

.counter-item:hover .counter-icon::after {
    transform: scaleX(1);
}

.counter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    filter: invert(78%) sepia(49%) saturate(234%) hue-rotate(352deg) brightness(88%) contrast(86%);
}

.counter-item:hover .counter-icon img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.counter-title {
    padding-left: 8px;
}

.counter-title span  {
    font-size: 30px;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 5px;
}

.counter-title p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: normal;
    color: var(--black);
}

.counter-container {
    /*margin-top: -84px;*/
    position: relative;
    z-index: 2;
    padding-top: 120px;
}




/* ................................about us section css..........................................  */

.about-main {
    padding: 100px 0;
    position: relative;
    background: url(../images/about-bg.svg) no-repeat;
    background-position: right center;
    background-size: auto;
}


.about-main>.container>.row {
    align-items: center;
}

.about-left-box {
    position: relative;
}

.about-main-img {
    height: 500px;
    width: 85%;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.about-main-img img {
    border-radius: 25px;
    height: 100%;
    object-fit: cover;
}

.about-main-img::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .1);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.about-main-img:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.about-shape {
    position: absolute;
    top: 25px;
    left: 0;
    width: 20%;
    z-index: -1;
    animation: move-left 4s linear infinite;
}

.about-shape img {
    width: 100%;
    filter: invert(78%) sepia(49%) saturate(234%) hue-rotate(352deg) brightness(88%) contrast(86%);
}


.about-video {
    height: 250px;
    width: 250px;
    border: 5px solid var(--white);
    position: absolute;
    left: 0;
    bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

/*.about-video::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 200%;*/
/*    height: 0%;*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    background-color: rgba(255, 255, 255, .1);*/
/*    transform: translate(-50%, -50%) rotate(-45deg);*/
/*    z-index: 0;*/
/*}*/

/*.about-video:hover::after {*/
/*    height: 250%;*/
/*    transition: all 600ms linear;*/
/*    background-color: transparent;*/
/*}*/

.about-video a {
    width: 100%;
    height: 100%;
    display: block;
}

.about-video a img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.about-video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: pulse-animation 1.5s infinite;
}

.about-video-icon i {
    font-size: 18px;
    color: var(--primary-color);
}


@keyframes move-left {
    0% {
      
        transform: translateX(-20px);
    }
    
    50% {
       
        transform: translateX(10px);
    }
    100% {
        
        transform: translateX(-20px);
    }
}


.about-right-box {
    padding-left: 25px;
}

.about-right-box h2 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.about-right-box p {
    font-size: 16px;
    /*color: var(--gray-color);*/
}

.about-content-middle {
    padding: 24px 0;
    margin: 25px 0;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
}

.about-content-middle span {
    font-size: 16px;
    display: block;
    margin-bottom: 12px;
    color:var(--black);
}

.about-content-middle span:last-child {
    margin-bottom: 0;
}

.about-content-bottom ul li {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 14px;
}

.about-content-bottom ul li:last-child {
    margin-bottom: 0;
}

.about-content-bottom ul li .about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 1px 1px 25px rgb(46 98 50 / 15%);
}

.about-content-bottom ul li .about-icon i {
    font-size: 16px;
    color: var(--primary-color);
}

.about-content-bottom ul li span  {
    font-size: 16px;
    color: var(--black);
    width: 80%;
    font-weight: 600;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.8);
    }
   
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}



  /***** project section  css start*****/
 
 
 .bg-project{
    /*background-color: rgb(46 98 50 / 9%);*/
    background-color:rgb(210 180 140 / 15%);
    padding: 100px 0;
    position: relative;
    
}

.project-heading{
    position: relative; 
    z-index:1;
}
.project-heading h5{
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    background-color:var(--black);
    color:var(--white);
    display: inline-block;
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 0;
}

.project-heading h2{
    font-size:34px;
    font-weight:700;
    text-transform:capitalize;
    color:var(--black);
    margin:0.5rem 0rem 1.5rem 0rem;
    
}

.project-slider-section{
    position: relative;
    z-index:3;
}
.project-box{
    border-radius:25px;
    background-color:var(--white);
    padding:16px;
}
.project-innner-info{
    padding-top:16px;
}

.project-image a{
    width:100%;
    height:300px;
    display: inline-block;
}
.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
}
/*.project-info{*/
/*    padding-bottom:12px;*/
/*}*/

.project-info h5 a{
    font-size:20px;
    font-weight:700;
    text-transform:capitalize;
    color:var(--black);
    line-height:1.5;
}

.pr-location span{
    font-size:16px;
    font-weight:500;
    color:var(--gray-color);
}
.pr-location{
    display:flex;
    align-items:center;
    gap:6px;
}
.pr-location i{
    color:var(--gray-color);
}
.project-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top: 1px dashed var(--gray-color);
    padding:24px 0px;
}
.btn-arrow{
    display:block;
    border-radius:50%;
    background-color:black;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--white);
}
.btn-arrow:hover i{
    color:var(--white);
}
.btn-arrow i{
    transform:rotate(45deg);
}
.span-config{
    font-size:14px;
    font-weight:600;
    color:var(--black);
    text-transform:capitalize;
    letter-spacing:0px;
    margin-bottom:6px;
    display:block;
}
.config-flex{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap: wrap;
}
.config-flex h6{
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid grey;
    color: var(--gray-color);
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 0px;
    text-align: center;
    border-radius: 0;
    position: relative;
    border: none;
    border-right: 2px solid #dedede;
    padding: 0;
    padding-right: 8px;
}
.config-flex h6:last-child{
   border-right:unset;    
}
.project-inner-config{
    padding-bottom:12px;
}
.pr-slider .slick-slide{
    margin:0px 6px;
}


.arrows-append{
    width: 40%;
    display: flex;
    gap:12px;
    justify-content: end;
    align-items: center;
}

.arrows-append .pr-arrows{
    width:45px;
    height:45px;
    border-radius:50%;
    background-color:var(--black);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    color:white;
}
.pr-arrows{
    width:45px;
    height:45px;
    border-radius:50%;
    background: var(--primary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    color:white;
    position:absolute;
    z-index:1;
    top:48%;
    transform:translateY(-50%);
    /*background: white;*/
    /*border: 2px solid var(--primary-color);*/
    /*color: black;*/
}

.pr-prev-arrow{
    left:-60px;
}
.pr-next-arrow{
    right:-60px;
}

.projectpage-section .pr-prev-arrow{
    left:-15px;
}

.projectpage-section .pr-next-arrow{
    right:-15px;
}

.filter-section{
    position: relative;
    z-index:3;
    padding:0px 0px 15px;
}


.filter-flex h5{
    color:var(--white);
    text-transform:capitalize;
    font-size:24px;
    margin-bottom:0px;
}



/* ...........................services section css............................  */

.service-main {
    padding: 100px 0;
    position: relative;
    background: url(../images/services-bg.svg) no-repeat;
    background-position: left bottom;
    background-size: auto;
}

.service-main::after {
    content: "";
    background: url(../images/service-shape.png) no-repeat;
    background-position: right top;
    background-size: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
    z-index: -1;
}

.service-main .project-heading {
    text-align: center;
    margin-bottom: 45px;
    width: 100%;
}

.service-main .project-heading h2 {
    color: var(--black);
}

.services-list-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.services-item {
    padding: 35px 35px;
    border: 1px solid #80808024;
}

.services-icon {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    padding: 8px;
    background-color: var(--white);
    box-shadow: 0 0 25px #00000011;
    margin: auto;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.services-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.5s;
}

.services-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    border-radius: 50%;
    background-color: var(--primary-color);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all .5s cubic-bezier(.62,.21,.45,1.52);
    z-index: -1;
}

.services-item:hover .services-icon::after {
    transform: scaleX(1);
}

.services-item:hover .services-icon i {
    color: var(--white);
}

.services-content {
    text-align: center;
    height: 150px;
    overflow-y: auto;
    padding-right: 3px;
}

.services-content::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.services-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.services-content::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.services-content:hover::-webkit-scrollbar {
    visibility: visible;
    opacity: 1;
}
.services-content:hover::-webkit-scrollbar-track {
    visibility: visible;
    opacity: 1;
}
.services-content:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.services-title {
    margin-bottom: 14px;
    text-align: center;
}

.services-title a {
    display: inline-block;
}

.services-title a h2 {
    font-size: 18px;
    margin-bottom: 0px;
    color: var(--black);
    transition: all 0.5s;
    line-height: 27px;
}

.services-title a h2:hover {
    color: var(--primary-color);
}

.services-content p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 8px;
    line-height: 29px;
}

.services-item:nth-child(3n+1) {
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
}
.services-item:nth-child(3n+2) {
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
}
.services-item:nth-child(3n+3) {
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.services-item:nth-last-child(-n + 3) {
    border-bottom: none;
}



/* ....................our principal and our association section css ............................ */


.principal-main {
    padding: 100px 0;
    position: relative;
    /*background-color: rgb(46 98 50 / 9%);*/
    background-color:rgb(210 180 140 / 10%);
}

.principal-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/principal-bg.png) no-repeat;
    background-position: top center;
    background-size: auto;
    z-index: -1;
    opacity: 0.5;
}

.principal-inner {
    margin-bottom: 45px;
}

.principal-inner>.row {
    align-items: center;
}

.principal-title h2 {
    font-size: 34px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--primary-color);
    padding: 10px 0;
    padding-right: 12px;
    line-height: 40px;
}

.principal-title {
    border-right: 2px solid #80808024;
}

.principal-slide {
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 0 16px rgb(0 0 0 / 4%);
    margin: 16px 8px;
    background-color: var(--white);
}

.principal-thumb {
    height: 120px;
    width: 120px;
    margin: auto;
}

.principal-thumb img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.principal-slider {
    margin-bottom: 0;
}


.association-inner>.row {
    align-items: center;
}

.association-title h2 {
    font-size: 34px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--primary-color);
    padding: 10px 0;
    padding-left: 12px;
    line-height: 40px;
}

.association-title {
    border-left: 2px solid #80808024;
}

.association-slide {
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 0 16px rgb(0 0 0 / 4%);
    margin: 16px 8px;
    background-color: var(--white);
}

.association-thumb {
    height: 120px;
    width: 120px;
    margin: auto;
}

.association-thumb img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.association-slider {
    margin-bottom: 0;
}


 /*****  blog section css *****/ 
 
 .icon-blog i{
    transform:rotate(45deg);
    margin-left:8px;
}
.bg-blog-section .project-box{
    box-shadow:0px 0px 12px rgb(128 128 128 / 20%);
}
.bg-blog-section .project-info h5 a:hover{
    color:var(--primary-color);
}

.bg-blog-section  .project-info p{
    color:var(--gray-color);
    font-size:14px;
    line-height:1.6;
    margin-top:12px;
}
.bg-blog-section{
    padding:100px 0px;
}
.bg-blog-section .project-heading{
    width:100%;
    text-align:center;
}
.bg-blog-section .project-heading h2{
    color:var(--black);
}
.bg-blog-section  .project-image a{
    height:300px;
}
.blog-calender {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 52px;
    height: 61px;
    border-radius: 5px;
    color: white;
    background:var(--primary-color);
    position:absolute;
    left:30px;
    top:30px;
}

.blog-calender:after {
    content: " ";
    position: absolute;
    left: 0px;
    bottom: -12px;
    border-top: 15px solid var(--primary-color);
    border-right: 15px solid transparent;
    border-left: -3px solid transparent;
    border-bottom: none;
}
.blog-date {
    display: flex;
    justify-content: space-between;
}
.blog-date li i{
    color:var(--primary-color);
    margin-right:10px;
}

.blog-date{
    margin:10px 0px!important;
}
.bg-blog-section .project-info h5 a{
    font-size:18px;
}
.blog-date li span{
    text-transform:capitalize;
}


.blog-calender span {
    line-height: 20px;
}

.blog-date1 {
    font-size: 20px;
    font-weight: 500;
}

.blog-month {
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.bg-blog-section .project-image a{
    position: relative;
    display:block;
}


 
 /***** End blog section css *****/
 

 /***** FOOTER SECTION CSS *****/  
 
 .bg-footer-section{
    position: relative;
    z-index: 1;
    /*background-image:url(../images/footer-bg1.png);*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    padding: 80px 0 80px;
    /*background-color:#ecf1ed;*/
    background-color:rgb(210 180 140 / 16%);
 }
 
  /*.bg-footer-section:after{*/
  /*    content: "";*/
  /*    position:absolute;*/
  /*    left:0%;*/
  /*    top:0%;*/
  /*    width:100%;*/
  /*    height:100%;*/
  /*    background:rgb(0,0,0,0.2);*/
  /*    z-index:0;*/
  /*}*/
  
 
 .bg-footer-section::before {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url(../images/footer-shape.svg);
    background-repeat:no-repeat;
    background-position: bottom left;
    z-index: -1;
    opacity: 0.1;
    filter: invert(78%) sepia(49%) saturate(234%) hue-rotate(352deg) brightness(88%) contrast(86%);
 }
 
 
 
.bg-footer-section .main-footer{
    background-color:white;
    border-radius: 16px;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.03);
    position: relative;
    padding: 40px 60px;
    z-index:2;
}
.bg-footer-section .main-footer .row {
    padding-bottom:1.5rem;
}
.footer-logo{
    width:50%;
}
.footer-logo h5{
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}


 .follow-on{
    display:flex;
    justify-content:space-between;
 }
 .follow-on a {
    height: 48px;
    width: 48px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition: all 0.4s;
    border-radius: 50%;
    color: var(--primary-color);
    background-color:rgb(210 180 140 / 10%);
}

.title-service{
    font-size: 22px;
    font-weight:700;
    text-transform: capitalize;
    margin-bottom:18px !important;
}
.service-links ul{
    padding-left:1rem!important;
}
.service-links ul li{
    margin-bottom:8px;
    list-style:circle;
}

.service-links ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black);
    font-weight:500;
}
.service-links ul li a:hover{
    color:var(--primary-color);
}
.footer-welcome{
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}
.follow-on a i{
    font-size:18px;
}
.copyright-flex {
    display:flex;
    justify-content:space-between;
    padding-top:1.5rem;
    border-top:1px solid var(--gray-color);
}


.copyright-flex span{
    font-size:14px;
    color:var(--gray-color);
    font-weight:600;
    width:70%;
}
.copy-term-flex{
    display:flex;
    justify-content:end;
    gap:30px;
    width:30%;
}
.copy-term-flex li{
    list-style: circle!important;
}
.copy-term-flex li a{
    color:var(--gray-color);
    font-weight:600;
    font-size:14px;
}


/***** Project Detail Section Start *****/ 

.bg-header.header-main {
    position: relative;
    top: 0;
    width: 100%;
}

.project-banner-bg{
    background-image: url('../images/project-details.jfif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-color: var(--black);
    min-height: 420px;
    padding-top: 85px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-banner-bg::before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.5;
    background: var(--black);
}

.project-banner-bg h3{
    color: var(--white);
    font-size: 48px;
    line-height: 60px;
    z-index: 1;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--white);
    position: relative;
}

.project-banner-bg h3::before{
    content: '';
    height: 3px;
    width: 50px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 1;
    animation: lineMove 10s linear infinite;
    -webkit-animation: lineMove 10s linear infinite;
}


@keyframes lineMove {
    0%{
        left: 0;
    }
    50%{
        left: calc(100% - 50px);
    }
    100%{
        left: 0;
    }
}



.project-list-tab{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


.project-details .project-list-tab .project-tab a{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ededed;
    background: var(--white);
    color: var(--gray-color);
    padding: 20px 30px;
    border-radius: 5px;
    transition: all 0.5s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-block;
}

.project-details .project-list-tab .project-tab a:hover{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.project-details .project-list-tab .project-tab a.active{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    /*box-shadow: #2e6232 0px 25px 20px -20px;*/
    box-shadow: var(--primary-color) 0px 25px 20px -20px;
}


.projectpage-image img{
    border-radius:24px;
}

.projectpage-information{
    padding:0px 10px;
}

.projectpage-information h5{
    margin-bottom: 2.5rem;
    margin-top: 1.0rem;
    font-size:24px;
    font-weight:600;
    text-transform:capitalize;
}
.projectpage-detail h6{
    text-transform:capitalize;
    font-size:14px;
    font-weight:500;
    color:var(--gray-color);
    margin-bottom:0px;
    width:30%;
}
.projectpage-detail span{
    text-transform:capitalize;
    font-size:14px;
    font-weight:500;
    color:var(--black);
    width:60%;
}
.projectpage-image{
    width:100%;
    height:400px;
}
.projectpage-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.projectpage-information {
    margin-top: 4rem;
    /*background-color: rgb(46 98 50 / 10%);*/
    background-color:rgb(210 180 140 / 10%);
    border-radius: 12px;
    padding: 20px;
}

.projectpage-main-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 0px;
    width:65%;
}
.projectpage-detail {
    display: flex;
    gap:12px;
    width:100%;
    text-align: start;
}
.rera-qr-detail-main{
    width:35%;
}
.projectpage-flex-overview{
    display:flex;
    justify-content:space-between;
}
.rera-qr-detail img{
    width:50%;
    margin-bottom:2rem;
}
.rera-qr-detail{
    text-align:center;
}
.rera-qr-detail h5{
    font-size:16px!important;
}
.projectpage-image.slick-slide{
    padding:0px 10px;
}
.amenities-box{
    border:1px solid var(--black);
    display:flex;
    align-items:center;
    gap:20px;
    border-radius:25px;
    background-color:var(--white);
    transition:all 0.5s ease;
}
.amenities-box:hover{
    background-color:rgb(46 98 50 / 50%);
    border:1px solid transparent;
}
.amenities-box:hover .amenities-icon{
    background-color:var(--primary-color);
    
}
.amenities-box:hover .amenities-icon img{
    filter:invert(100%) sepia(3%) saturate(12%) hue-rotate(298deg) brightness(101%) contrast(105%);
}

.amenities-icon{
    border-radius: 24px;
    padding: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 42px;
    line-height: 42px;
    text-align: center;
    width: 25%;
    background-color: var(--black);
}
.amenities-icon img{
    filter:invert(1);
}
.amenities-box span{
    font-size:18px;
    font-weight:500;
    text-transform:capitalize;
    color:var(--black);
}

.amenities-flex{
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/*new*/
.amenitie-slider .slick-slide{
    margin: 0 10px;
}

.amenities-inner-box{
    border-radius:24px;
    position: relative;
}

.amenities-inner-box img{
    border-radius:24px;
    height: 100%;
}

.amenities-image {
    height: 260px;
}

.amenities-img-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    height: auto;
    z-index: 1;
    /*padding: 15px 25px;*/
    /*background: var(--primary-color);*/
    transition: all 0.4s ease-in-out;
    border-radius: 0 24px 0 24px;
}

.amenities-img-title h4{
     color: var(--white);
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
}

.amenitie-slider .pr-next-arrow {
    right: 10px;
    top: -40px;
}

.amenitie-slider .pr-prev-arrow {
    right: 65px;
    top: -40px;
    left: unset;
}

.amenities-inner-box .amenities-icon {
    width: 15%;
    border-radius: 23px;
    transition: all 0.5s ease;
    background-color: var(--primary-color);
}
.amenities-inner-box .amenities-box {
    border: 1px solid var(--primary-color);
}

.amenities-inner-box .amenities-box:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.amenities-inner-box .amenities-box:hover span{
      color: var(--primary-color);
}
.amenitie-box-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}








.map{
    width:100%;
    height:1000%;
}
.map iframe{
    width:100%;
    border-radius:12px;
}
.gallery-item{
    width:100%;
    height:300px;
}
.gallery-item img{
    border-radius:24px;
    width:100%;
    height:100%;
    object-fit:cover;
}
.gallary-row{
    row-gap:20px;
}

.propertypage-form{
    border:1px solid rgb(92 92 92 / 20%);
    border-radius:26px;
    position:sticky;
    top:calc(105px - 0px)
}
.enq-title{
    background-color:var(--primary-color);
    border-radius:24px 24px 0px 0px;
}
.enq-title h2{
    font-size:24px;
    font-weight:700;
    color:var(--white);
    padding:1.5rem;
}
.propertypage-form form{
    padding:1.5rem;
}
.enq-input{
    width:100%;
    margin-bottom:16px;
}
.enq-input input{
    width:100%;
    height:40px;
    border-radius:8px;
    padding:12px;
    border:1px solid rgb(92 92 92 / 20%);
}
.enq-input input:focus{
    outline:none;
}
.enq-input textarea:focus{
    outline:none;
}

.enq-input textarea{
    width:100%;
    height:80px;
    border-radius:8px;
    padding:12px;
    border:1px solid rgb(92 92 92 / 20%);
}
.checkmark{
    display:flex;
    align-items:center;
    gap:16px;
}
.checkmark input{
    width:20px;
    height:20px;
    cursor: pointer;
}

.checkmark label{
    font-size:16px;
    font-weight:400;
    color:var(--gray-color);
    cursor: pointer;
}
.checkmark label a{
    text-transform:capitalize;
    font-weight:600;
    color:var(--grey);
}
.propertypage-form .button-filter-banner{
    margin-top:1.5rem;
    padding:12px 40px;
}
.projectpage-section{
    padding:100px 0px;
}
.similar-box{
    border:1px solid rgb(92 92 92 / 20%);
}
.similar-property .project-heading h2{
    color:var(--black);
}
.similar-property{
    padding:0px 0px 100px 0px;
}
.project-details{
    position:sticky;
    top:0%;
    z-index:5;
    background-color:var(--white);
    padding:20px 0px;
    margin-bottom:12px;
    border-bottom:1px solid rgb(92 92 92 / 20%);
}

 
 /***** Project Detail Section End *****/



/***** modal css *****/
.modal-from .select-input{
    width: 100%;
    height:auto;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgb(92 92 92 / 20%);
    text-transform:capitalize;
}
.modal-from .select-input select{
    width: 100%;
    height:auto;
    border-radius: 8px;
    border:none;
    text-transform:capitalize;
}
.modal-from .enq-input select:focus{
    border:none;
    outline:none;
}

.modal-from .enq-input select option{
 text-transform:capitalize;
}

.modal-from .enq-input input{
    width: 100%;
    height:auto;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgb(92 92 92 / 20%);
}
.modal-from{
    height:100%;
}
/*.bg-eq-modal .modal-dialog{*/
/*    max-width:750px;*/
/*    width:100%;*/
/*}*/
.bg-eq-modal .modal-header{
    border-bottom:0px!important;
}
.bg-eq-modal .row{
    margin-right:0px!important;
    margin-left:0px!important;
}
.bg-eq-modal .modal-body{
    padding:0px!important;
}
.bg-eq-modal .modal-from h2{
    font-size: 28px;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}
.bg-eq-modal .button-filter-banner{
    margin-top:1.5rem;
    padding: 12px 40px;
}
.modal-co-image{
    width:95%;
    margin:auto;
    position: relative;
}
.modal-co-image img{
    position: relative;
    z-index:1;
}
.modal-co-image:after{
    position: absolute;
    content: '';
    left: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    background-image: url(../images/experience-img-bg.png);
    background-size: cover;
    background-position: center bottom;
    z-index: 0;
}
.bg-eq-modal .modal-header button:focus{
    box-shadow:unset!important;
}
.scrollTop{
    position: fixed;
    right: 5%;
    z-index:9;
    bottom: 5%;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    animation: top 5s linear infinite;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.scrollTop a{
    color:white;
    display: block;
}
.scrollTop a:hover{
    color:white;
}

.stricky-fixed{
    top:0%;
    left: unset;
    width: 100%;
    position:sticky;
    background-color:white;
    z-index:99;
    box-shadow: 0px 0px 12px #80808069;
    transform:unset;
    border-radius: 0;
    animation: slideInDown .5s 1;
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        transform: translateY(0);
    }
}

/***** End modal css *****/




 /* ..............................privacy policy page css............................  */


 .policy-section-main {
    padding: 100px 0;
    position: relative;
 }

 .policy-banner-bg {
    background-image: url(../images/policy-bg.png);
 }

 .policy-section-main .project-heading {
    margin-bottom: 25px;
 }

 .policy-list ul {
    list-style: square !important;
    padding-left: 35px !important;
 }

 .policy-list ul li p {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 12px;
 }

 .policy-list ul li {
    margin-bottom: 18px;
 }


.bg-contact-section {
    padding: 50px 0px 80px 0px;
}

.inner-co-section{
    padding: 48px 48px;
    border-radius: 20px;
    background: rgb(210 180 140 / 20%);
}
.contactpage-form h2{
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}
.contactpage-form form .enq-input{
    margin-bottom:30px;
}

.contactpage-form form .enq-input input{
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 17px 12px;
    border: 1px solid rgb(92 92 92 / 20%);
}
.contactpage-form form .select-input{
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 17px 12px;
    border: 1px solid rgb(92 92 92 / 20%);
    text-transform: capitalize;
    background-color:white;
}
.contactpage-form form .select-input select{
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: none;
    text-transform: capitalize;
}
.contactpage-form form .select-input select:focus-visible{
    outline:none;
}
.contactpage-form .checkmark{
    margin-bottom:20px;
}
.contactpage-form  .button-filter-banner{
    padding: 12px 50px;
}
.page-co-image{
    width:100%;
}
.page-co-image img{
    width:100%;
    border-radius:24px;
}


.bg-adress-section{
    padding:80px 0px 50px;
}

.address-box {
    position: relative;
    display: block;
    border-radius: 20px;
    background-color:#f7f7f7;
    text-align: center;
    padding: 40px 40px 41px;
    margin-bottom: 30px;
}
/* .co-address-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid black;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 24px;
    margin:auto;
} */

.address-box .services-icon{
    width:70px;
    height:70px;
}


.co-address-info{
    margin-top:1.5rem;   
}
.co-address-info span{
    font-size:16px;
    font-weight:500;
    text-transform:capitalize;
    color:var(--gray-color);
}
.co-address-info h3{
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    color:var(--black);
}

.co-address-info a{
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    color:var(--black);
    display:block;
}

.address-box:hover .services-icon::after {
    transform: scaleX(1);
}
.address-box:hover .services-icon i {
    color: var(--white);
}



/* ................................blog page css.....................................  */

.blog-banner-bg {
    background-image: url(../images/project-details.jfif);
}

.blog-description{
    overflow: auto;
    height: 250px;
}
.blog-description::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s;
}
.blog-description::-webkit-scrollbar-thumb {
    background: #D2B48C;
    border-radius: 10px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s;
}
.blog-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s;
}

.blog-inner-main .project-image img {
    border-radius: 15px;
}

.blog-inner-main .project-box {
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0px 0px 25px rgb(128 128 128 / 10%);
}

.blog-inner-main .blog-description {
    height: 200px;
}

.blog-inner-main.bg-blog-section .project-image a {
    height: 350px;
}

.blog-leftbar {
    position: sticky;
    top: 125px;
}

.blog-leftbar-item {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgb(128 128 128 / 10%);
    border-radius: 15px;
    margin-bottom: 40px;
}

.blog-leftbar-item:last-child {
    margin-bottom: 0;
}

.blog-leftbar-item h2 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-weight: 500;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
}

.blog-leftbar-item h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.terraa-input input {
    height: 45px;
    border-radius: 8px;
    padding: 12px;
    padding-right: 25px;
    border: 1px solid rgb(92 92 92 / 20%);
    width: 100%;
    position: relative;
}

.terraa-input input:focus {
    outline: none;
}

.terraa-input {
    position: relative;
}

.terraa-input i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--primary-color);
}

.category-list li {
    margin-bottom: 25px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: var(--black);
}

.category-list li a span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}

.category-list li a span.cate-count {
    font-weight: 400;
    opacity: 0.5;
}

.blog-tags-item {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-tags-item a {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: var(--black);
    font-size: 16px;
    text-transform: capitalize;
}

.related-blog-item {
    margin-bottom: 25px;
}

.related-blog-item:last-child {
    margin-bottom: 0;
}

.related-blog-item a {
    display: flex;
    gap: 15px;
    color: var(--black);
}

.blog-thumb {
    height: 80px;
    width: 80px;
    min-width: 80px;
}

.blog-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.related-blog-content {
    width: 70%;
}

.related-blog-content span {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.blog-list .project-box {
    margin-bottom: 45px;
}

.blog-list .project-box:last-child {
    margin-bottom: 0;
}

.terraa-pagination {
    margin-top: 45px;
}

.terraa-pagination .pagination {
    justify-content: center;
    gap: 10px;
}

.terraa-pagination .page-link.active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary-color) !important;
}

.terraa-pagination .page-link {
    color: var(--black) !important;
    border-radius: 3px !important;
    padding: 7px 15px !important;
}

.blog-detail-main {
    padding: 100px 0;
}

.blog-detail-img {
    height: 450px;
    width: 100%;
    margin-bottom: 25px;
}

.blog-detail-img img {
    border-radius: 15px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-info .blog-date {
    justify-content: start;
    gap: 15px;
    margin-bottom: 25px !important;
    flex-wrap:wrap;
}

.blog-info .blog-date li {
    padding-right: 15px;
    border-right: 1px solid #e7e7e7;
}

.blog-info .blog-date li:last-child {
    border-right: none;
    padding-right: 0;
}

.blog-info h2 {
    font-size: 25px;
    color: var(--black);
    margin-bottom: 15px;
}

.blog-info p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 20px;
}

.blog-info h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.blog-detail-img-box {
    display: flex;
    gap: 25px;
    margin: 25px 0;
}

.blog-detail-inner-img {
    height: 250px;
    width: 48%;
}

.blog-detail-inner-img img {
    height: 100%;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.blog-share {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 35px;
}

.blog-share span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black);
}

.blog-share a {
    height: 35px;
    width: 35px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition: all 0.4s;
    border-radius: 50%;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
}

.blog-detail-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
}

.blog-tags span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black);
}

.blog-tags {
    display: flex;
    gap: 15px;
    /*align-items: center;*/
    margin-top: 35px;
}

.comment-main {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #e7e7e7;
}

.comment-main h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.comment-img {
    height: 75px;
    width: 75px;
    min-width: 75px;
    background-color: #e7e7e7;
    border-radius: 3px;
}

.comment-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.comment-top-content {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.comment-top-content span {
    font-size: 16px;
    color: var(--black);
    display: block;
    font-weight: 500;
    border-right: 1px solid #e7e7e7;
    padding-right: 10px;
}

.comment-top-content span:last-child {
    border-right: none;
    padding-right: 0;
}

span.comment-date {
    font-size: 14px;
    opacity: 0.7;
}

.comment-info p {
    font-size: 14px;
    color: #5c5c5c;
}

.comment-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    align-items: start;
    gap: 15px;
}

.comment-top a {
    padding: 0;
    border: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
    color: black;
}

.comment-form {
    margin-top: 25px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgb(128 128 128 / 10%);
    background-color: #fff;
}

.comment-form h2 {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.comment-form form .button-filter-banner {
    margin-top: 20px;
}

.blog-list .project-btn {
    padding-bottom: 0;
}

.blog-detail-search {
    display:none;
}

.viewall-btn {
    margin-top:45px;
    text-align: center;
}




.blog-tags-item a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-list li .category-item {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: var(--black);
}

.category-list li .category-item  span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}

.category-list li .category-item  label {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black);
}

.category-list li .category-item span.cate-count {
    font-weight: 400;
    opacity: 0.5;
}

  /*......................................... responsive css ....................................... */
  
    @media only screen and (min-width:1400px) and (max-width:1499px){
    .pr-slider{
        padding: 0 20px;
    }
    .pr-prev-arrow{
        left: -18px;
    }
    .pr-next-arrow{
        right: -18px;
    }
  }

  @media only screen and (min-width:1366px) and (max-width:1440px) {

    .banner-information h2 {
        font-size: 51px;
    }

    .banner-filter-span {
        width: 25%;
        padding: 40px 20px;
    }

    .header-btn3 {
        padding: 12px 24px;
    }

    .project-btn-flex .project-btn {
        padding-bottom: 0;
    }
    
    .banner-slide {
        height: 600px;
    }

  }

  @media only screen and (min-width:1200px) and (max-width:1365px) {

    .banner-information h2 {
        font-size: 51px;
    }

    .banner-filter-span {
        width: 23%;
        padding: 40px 20px;
    }

    .header-btn3 {
        padding: 10px 20px;
    }

    .project-btn-flex .project-btn {
        padding-bottom: 0;
    }
    .about-right-box {
        padding-left: 15px;
    }

    .about-right-box h2 {
        margin-bottom: 14px;
    }
    .about-content-middle {
        padding: 15px 0;
        margin: 15px 0;
    }
    .project-image a {
        height: 250px;
    }
    .pr-arrows {
        top: 45%;
    }
    .association-title h2 {
        font-size: 26px;
        line-height: 30px;
    }
    .principal-title h2 {
        font-size: 26px;
        line-height: 30px;
    }
    
    .video {
        height: 750px;
    }
    .video video {
        object-fit: cover;
        height: 100%;
    }
    .pr-slider {
        padding: 0 40px;
    }
    .pr-prev-arrow{
        left: -10px;
    }
    .pr-next-arrow{
        right: -10px;
    }
    
    .banner-filter-search {
        width: 90%;
    }
    
    .banner-slide {
        height:600px;
    }
    
  }


  @media only screen and (min-width:992px) and (max-width:1199px) {

    .video {
        height: 750px;
    }
    .video video {
        object-fit: cover;
        height: 100%;
    }

    .banner-information h2 {
        font-size: 40px;
    }

    .banner-filter-span {
        width: 25%;
        padding: 40px 14px;
    }

    .header-btn3 {
        padding: 10px 14px;
        font-size: 14px;
        /*width:100%;*/
    }
    
    .header-list ul li a {
        padding: 8px 12px;
    }

    .project-btn-flex .project-btn {
        padding-bottom: 0;
    }
    .about-right-box {
        padding-left: 15px;
    }

    .about-right-box h2 {
        margin-bottom: 14px;
    }
    .about-content-middle {
        padding: 15px 0;
        margin: 15px 0;
    }
    .project-image a {
        height: 250px;
    }
    .pr-slider{
        padding: 0 30px;
    }
    .pr-arrows {
        top: 45%;
        width: 40px;
        height: 40px;
    }
    .pr-prev-arrow{
        left: -10px;
    }
    .pr-next-arrow{
        right: -10px;
    }
    .association-title h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .principal-title h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .principal-slide {
        margin: 10px 6px;
    }
    .association-slide {
        margin: 10px 6px;
    }
    
    .principal-thumb {
        height: 100px;
        width: 100px;
    }
    
    .association-thumb {
        height: 100px;
        width: 100px;
    }
    
    .association-inner>.row>.col-lg-2 {
        padding: 0;
    }
    
    .principal-inner>.row>.col-lg-2 {
        padding: 0;
    }
    
    .principal-inner {
        margin-bottom: 35px;
    }
    
    .logo-image {
        width: 45%;
    }
    
     .project-btn-flex .project-btn .header-btn3 {
        padding: 10px 14px;
    }

    .about-main {
        padding: 80px 0;
    }
    .counter-main::after {
        width: 90%;
    }
    .counter-title span {
        font-size: 26px;
    }
    .bg-project {
        padding: 80px 0;
    }
    .service-main {
        padding: 80px 0;
    }
    
    .principal-main {
        padding:80px 0;
    }
    
    .services-item {
        padding: 20px 20px;
    }
    
    .bg-blog-section {
        padding: 80px 0;
    }
    
    .blog-date li i {
        margin-right: 4px;
    }
    
    .blog-date li span {
        font-size: 14px;
    }

    .follow-on a {
        height: 40px;
        width: 40px;
    }
    
    .follow-on a i {
        font-size:16px;
    }
    
    .bg-footer-section {
        padding: 80px 0 80px;
    }
    .footer-logo {
        width: 60%;
    }
    
    .policy-section-main {
        padding: 80px 0;
    }
    
    .amenities-image {
        height: 200px;
    }
    .amenities-inner-box .amenities-icon {
    width: 20%;
}

    .banner-slide {
        height:600px;
    }
    
    .banner-filter-search {
        width: 95%;
    }
    
    .banner-filter-search form {
        padding: 0 15px;
    }
    
    
  }

  
  @media only screen and (min-width:768px) and (max-width:991px) {
    .video {
        height: 750px;
    }
    .video video {
        object-fit: cover;
        height: 100%;
    }

    .banner-information h2 {
        font-size: 40px;
        /*margin-bottom: 3rem !important;*/
    }

    .banner-filter-span {
        width: 24%;
        display: flex;
        align-items: center;
        border-radius: 10px 0px 0px 10px;
    }
    
    .principal-thumb {
        height: 100px;
        width: 100px;
    }
    
    .association-thumb {
        height: 100px;
        width: 100px;
    }
    .association-title h2 {
        font-size: 32px;
        line-height: 34px;
    }
    .principal-title h2 {
        font-size: 32px;
        line-height: 34px;
    }
    .counter-main::after {
        width: 95%;
    }
    .counter-item {
        width: 30%;
    }
    .counter-list-box {
        gap: 30px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }
    
    .counter-title span {
        font-size:24px;
        margin-bottom: 3px;
    }
    
    .banner-filter-search {
        bottom: -70px;
        width: 95%;
        align-items: stretch;
        border-radius:10px;
    }
    
    .banner-select-field {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .banner-select-field .main {
        width: 48%;
    }
    
    .banner-select-field .button-filter-banner {
        width: 48%;
    }
    
    .banner-filter-search form {
        padding: 12px 12px;
    }
    
    .banner-information {
        /*top: 50%;*/
        width: 90%;
    }
    
    
    
    .about-main>.container>.row {
        row-gap: 45px;
    }
    
    .about-main {
        padding: 60px 0;
    }
    .about-main-img {
        height: 430px;
        width: 70%;
    }
    .about-video {
        left: 40px;
    }

    .bg-project {
        padding: 60px 0;
    }

 
    .service-main {
        padding: 60px 0;
    }
    .services-list-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-item:nth-child(2n+1) {
        border-right: none;
    }
    .services-item:nth-child(2n+2) {
        border-right: none;
        border-left: 1px solid #80808024;
        border-bottom: 1px solid #80808024;
    }
    
    .services-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    .services-item {
        padding: 25px;
    }

    .principal-main {
        padding: 60px 0;
    }

    .principal-inner {
        margin-bottom: 35px;
    }

    .bg-blog-section {
        padding: 60px 0px;
    }
    
    .bg-blog-section >.container >.row {
        row-gap: 25px;
    }

    .bg-footer-section {
        padding: 60px 0 60px;
    }
    
    .bg-footer-section .main-footer {
        padding: 40px 40px;
    }
    
    .footer-welcome {
        margin-bottom: 25px;
    }

    .title-service {
        margin-bottom: 12px !important;
    }


    .copyright-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }

    .copyright-flex span {
        width: 100%;
        text-align: center;
    }

    .copy-term-flex {
        width: 100%;
        justify-content: center;
    }

    .bg-footer-section .main-footer .row {
        row-gap: 25px;
    }
    
    .policy-section-main {
        padding: 60px 0;
    }
    
      .pr-slider{
        padding: 0 20px;
    }
    .pr-arrows{
        width: 40px;
        height: 40px;
    }

    .pr-prev-arrow{
        left: -18px;
    }
    .pr-next-arrow{
        right: -18px;
    }
    
    .banner-slide {
        height: 550px;
    }
    
  }
  
  @media only screen and (max-width:767px) {
    .video {
        height: 800px;
    }
    .video video {
        object-fit: cover;
        height: 100%;
    }
    
    .video img {
        object-position: 10% 100%;
    }
    
    .banner-information {
        /*top: 50%;*/
        bottom: 70%;
    }
    
    .banner-slide.slick-active.slick-current .banner-information {
        animation: banner-text-move-mobile 1s;
    }
    
    .banner-arrows {
        height: 35px;
        width: 35px;
    }
    


    .banner-information h2 {
        font-size: 35px;
        /*margin-bottom: 20px !important;*/
    }

    .banner-filter-span {
        width: 100%;
        display: flex;
        align-items: center;
        border-radius: 10px 10px 0px 0px;
        padding: 15px 15px;
    }
    .banner-filter-search {
        flex-direction: column;
        border-radius: 10px;
        width: 95%;
        bottom: -150px;
    }
    
    .banner-select-field {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .banner-select-field .main {
        width: 100%;
    }
    
    .banner-filter-search form {
        padding: 12px 12px;
    }

    .logo-image {
        width: 70%;
    }

    .counter-list-box {
        flex-direction: column;
        gap: 25px;
    }
    .counter-item {
        width: 100%;
        text-align: center;
        padding-bottom: 25px;
        border-bottom: 1px solid #edf1f0;
    }
    
    .counter-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .counter-main::after {
        width: 100%;
        clip-path: unset;
    }
    .counter-container {
        margin: 0;
        padding-top: 200px;
        
    }

    .counter-icon {
        margin: auto;
        margin-bottom: 12px;
    }
    .counter-main {
        padding: 25px 20px;
    }

    .about-main {
        padding: 50px 0;
    }

    .about-right-box {
        padding-left: 0;
    }
    .about-right-box h2 {
        font-size: 24px;
    }
    .about-main-img {
        height: 400px;
    }

    .about-video {
        height: 200px;
        width: 200px;
        bottom: 20px;
        border-radius: 12px;
    }
    .about-main-img img {
        border-radius: 12px;
    }
    .about-video a img {
        border-radius: 6px;
    }
    .about-video-icon {
        height: 50px;
        width: 50px;
    }

    .about-main>.container>.row {
        row-gap: 45px;
    }

    .about-right-box h2 {
        margin-bottom: 14px;
    }

    .about-content-middle {
        padding: 15px 0;
        margin: 15px 0;
    }

    .bg-project {
        padding: 50px 0;
    }

    .project-flex-heading {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .project-slider-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .service-main {
        padding: 50px 0;
    }

    .services-list-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .services-item {
        border-right: none;
        padding: 28px 15px;
    }

    .services-item:nth-last-child(-n + 3) {
        border-bottom: 1px solid #80808024;
    }

    .services-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .services-item:first-child {
        padding-top: 0;
    }
    
    .principal-main {
        padding: 50px 0;
    }

    .principal-title h2 {
        padding: 0;
        font-size: 24px;
        line-height: 26px;
    }

    .principal-title {
        border: none;
        text-align: center;
    }
    .principal-inner {
        margin-bottom: 25px;
    }

    .association-inner>.row {
        flex-direction: column-reverse;
    }

    .association-title h2 {
        padding: 0;
        font-size: 24px;
        line-height: 26px;
    }

    .association-title {
        border: none;
        text-align: center;
    }

    .bg-blog-section {
        padding: 50px 0px;
    }

    .project-btn-flex .project-btn {
        padding-bottom: 0;
    }

    .bg-blog-section >.container >.row {
        row-gap: 25px;
    }

    .bg-footer-section {
        padding: 50px 0 50px;
    }
    
    .bg-footer-section .main-footer {
        padding: 30px 30px;
    }
    
    .title-service {
        margin-bottom: 8px !important;
        font-size: 18px;
    }
    

    .copyright-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }

    .copyright-flex span {
        width: 100%;
        text-align: center;
    }

    .copy-term-flex {
        width: 100%;
        justify-content: center;
    }

    .bg-footer-section .main-footer .row {
        row-gap: 18px;
    }

    .project-box {
        border-radius: 15px;
    }

    .project-image img {
        border-radius: 15px;
    }

    .policy-section-main {
        padding: 50px 0;
    }

    
    .pr-arrows {
        bottom:-13%;
        top: auto;
        width: 40px;
        height: 40px;

    }
    .pr-next-arrow{
        right: 38%;
    }
    .pr-prev-arrow {
        right: 52%;
        left: auto;
    }
    
    .project-banner-bg {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .banner-slide {
        height:500px;
    }
    

  }
  
  
  
    @media only screen and (max-width:399px){
        .amenities-image {
            height: 180px;
        }
        .amenities-inner-box .amenities-icon {
            width: 20%;
        }
        .amenitie-slider .pr-next-arrow {
            right: 38% !important;
        }
        .amenitie-slider .pr-prev-arrow{
            right:56%!important;
        }
   }
   
   
   
    @media only screen and (max-width:375px){
    .pr-prev-arrow{
        right: 54%;
    }
    .pr-next-arrow{
        right: 36%;
    }
   }
  
  
  /***** project detail page responsive  *****/ 

@media only screen and (min-width:768px) and (max-width:991px){
    
    .projectpage-section {
        padding: 60px 0px;
    }
    
    .amenities-box{
        gap:12px
    }
    
    .amenities-box span{
        font-size:16px;
        padding-right:12px;
        width:70%;
    }
    .projectpage-section .row{
        row-gap:30px;
    }
    .similar-property{
        padding:0px 0px 60px 0px;
    }
    .bg-eq-modal .modal-dialog{
        max-width:700px;
    }
    .project-banner-bg h3{
        font-size:34px;
    }
    
    .similar-property .row{
        row-gap:30px;
    }
    
}


@media only screen and (max-width:767px){
    
    .amenities-flex{
        grid-template-columns: repeat(2, 1fr);
        gap:20px;
    }
    .amenities-icon {
        border-radius: 16px;
        padding: 10px;
        width: 25%;
    }
    .amenities-box{
        border-radius:18px;
    }
    .amenities-box span{
        width:70%;
        padding-right:12px;
    }
    .project-list-tab{
        overflow-x: auto;
        justify-content:start;
    }
    .projectpage-section{
        padding:60px 0px;
    }
    .project-banner-bg h3{
        font-size:28px;
    }
    .logo-image {
        width: 65%;
    }
    .propertypage-form form {
        padding: 1.0rem;
    }
    .projectpage-section .row{
        row-gap:30px;
    }
   
    .project-heading h2{
        font-size:24px;
    }
    .projectpage-information h5{
        margin-bottom:1.5rem;
    }
    .projectpage-information{
        margin-top:3rem;
    }
    .projectpage-flex-overview{
        flex-wrap:wrap;
    }
    .rera-qr-detail-main{
        width:100%;
    }
    .projectpage-main-detail{
        width:100%;
    }
    .rera-qr-detail{
        text-align:start;
    }
    .project-details .project-list-tab .project-tab a{
        padding:14px 30px;
    }
    .projectpage-detail span{
        width:65%;
    }
    .projectpage-detail{
        flex-wrap:wrap;
    }
    .amenities-box span{
        font-size:16px;
    }
    .similar-property .row{
        row-gap:20px;
    }
    .modal-from{
        padding:1.5rem 0.5rem;
    }
    .modal-co-image{
        display: none;
    }
    
    .amenities-inner-box .amenities-box{
        border-radius: 25px;
}
    
    
}

@media only screen and (max-width:575px){
    .projectpage-detail{
        gap:5px;
    }
    .projectpage-detail h6{
        width:100%;
    }
    .projectpage-detail span {
        width: 100%;
    }
    .projectpage-main-detail{
        gap:20px 0px;
    }
    .gallery-item{
        height:250px;
    }
    .amenities-icon{
        width:12%;
    }
    .amenities-flex{
        grid-template-columns: repeat(1, 1fr);
        gap:20px;
    }
    .amenitie-slider .pr-next-arrow {
        right: 40%;
        top: unset;
        bottom: -63px;
    }
    .amenitie-slider .pr-prev-arrow {
        right: 54%;
        top: unset;
        left: unset;
        bottom: -63px;
    }
    
    .amenities-image {
        height: 210px;
    }
    .amenities-inner-box a> img {
        object-fit:cover;
    }
    .amenities-inner-box .amenities-icon {
        width: 17%;
    }
    .amenities-img-title {
        bottom:10px;
    }
    
}


@media only screen and (max-width:375px){
    .project-banner-bg{
        min-height: 300px;
    }
     .amenities-icon{
        width:20%;
    }
    .projectpage-image{
        height:300px;
    }
    .project-image a{
        height: 220px;
    }
}
/***** End project detail page responsive  *****/

@media only screen and (min-width:767px){
    .bg-eq-modal .modal-dialog{
        max-width: 750px;
        width: 100%;
    }
    
}





/* contact page responsive css */

@media only screen and (min-width:992px) and (max-width:1199px){
    .address-box{
        height:100%;
    }
    .contactpage-form form .enq-input {
        margin-bottom: 20px;
    }
    .page-co-image{
        height:100%;
        width:100%;
    }
    .page-co-image img {
        width: 100%;
        border-radius: 24px;
        height: 100%;
        object-fit: cover;
    }
    propertypage-form form {
     padding:20px;
    }
    .propertypage-form form .phone-no button {
     padding:10px 10px;
    }
}

@media only screen and (min-width:768px) and (max-width:992px){
    .inner-co-section .row{
        gap:50px;
    }
    .project-inner-section {
    padding-top:100px;
    }
}

@media only screen and (max-width:767px){
    .inner-co-section .row{
        gap:50px;
    }
    .bg-contact-section{
        padding:0px 0px 50px 0px;
    }
    .project-inner-section {
    padding-top:200px;
    }
}

@media only screen and (max-width:375px){
    .address-box{
        padding: 24px 16px 24px;
    }
    .bg-adress-section{
        padding:50px 0px;
    }
    .inner-co-section {
        padding: 30px 20px;
    }
    .contactpage-form h2 {
        font-size: 24px;
    }
    .contactpage-form form .enq-input input{
        padding:14px 12px;
    }
    .contactpage-form form .enq-input {
        margin-bottom: 24px;
    }
    .propertypage-form form .phone-no button {
     padding:10px 12px;
    }
    .bg-eq-modal .bg-modal-form .phone-no button {
     padding:8px 12px;
    }
}




/* .......................... blog page responsive ..................... */

@media only screen and (min-width:992px) and (max-width:1199px) {

    .blog-tags-item a {
        padding: 5px 10px;
    }
    .blog-tags-item {
        gap: 10px;
    }

    .blog-detail-main {
        padding: 80px 0;
    }

    .blog-leftbar-item {
        margin-bottom: 35px;
        padding: 20px;
    }

    .blog-list .project-box {
        padding: 20px;
        margin-bottom: 35px;
    }

    .blog-info .blog-date {
        gap: 10px;
    }

    .blog-info .blog-date li {
        padding-right: 10px;
    }

    .blog-leftbar-item h2 {
        font-size: 22px;
    }
    
    .comment-form {
        padding: 20px;
    }
    
    .category-item .checkmark {
        gap:10px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blog-leftbar-item {
        padding: 15px;
        margin-bottom: 30px;
        border-radius: 10px;
    }
    .blog-list .project-box {
        padding: 15px;
    }
    .blog-leftbar-item h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .category-list li {
        margin-bottom: 15px;
    }

    .blog-inner-main.bg-blog-section .blog-list .project-image a {
        height: 250px;
    }

    .blog-tags-item a {
        padding: 5px 10px;
    }
    .blog-tags-item {
        gap: 10px;
    }

    .blog-thumb {
        height: 70px;
        width: 70px;
        min-width: 70px;
    }
    
    .related-blog-item a {
        gap: 10px;
    }

    .blog-calender {
        top: 20px;
        left: 20px;
    }

    .blog-detail-main {
        padding: 60px 0;
    }
    
    .blog-detail-img {
        height: 300px;
    }
    
    .blog-detail-img-box {
        flex-direction: column;
    }
    .blog-detail-inner-img {
        width: 100%;
    }
    .comment-img {
        height: 60px;
        width: 60px;
        min-width: 60px;
    }

    .comment-form {
        padding: 20px;
    }

    .comment-form h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .category-item .checkmark {
        gap:8px;
    }

}

@media only screen and (max-width:767px) {
    .blog-leftbar-item {
        padding: 15px;
        margin-bottom: 30px;
        border-radius: 10px;
    }
    .blog-list .project-box {
        padding: 15px;
        margin-bottom: 25px;
    }
    .blog-leftbar-item h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .category-list li {
        margin-bottom: 15px;
    }

    .blog-inner-main.bg-blog-section .blog-list .project-image a {
        height: 250px;
    }

    .blog-tags-item a {
        padding: 5px 10px;
    }
    .blog-tags-item {
        gap: 10px;
    }

    .blog-thumb {
        height: 70px;
        width: 70px;
        min-width: 70px;
    }
    
    .related-blog-item a {
        gap: 10px;
    }
    
    .blog-calender {
        top: 20px;
        left: 20px;
    }
    .blog-date li i {
        margin-right: 7px;
    }

    .blog-detail-main {
        padding: 50px 0;
    }
    
    .blog-detail-img {
        height: 250px;
    }
    
    .blog-detail-img-box {
        flex-direction: column;
    }
    .blog-detail-inner-img {
        width: 100%;
        height: 200px;
    }
    .comment-img {
        height: 60px;
        width: 60px;
        min-width: 60px;
    }

    .comment-form {
        padding: 20px;
    }

    .comment-form h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .blog-info .blog-date {
        gap: 10px;
    }

    .blog-info .blog-date li {
        padding-right: 10px;
        border:none;
    }

    .blog-info h2 {
        font-size: 20px;
        line-height: 27px;
    }
    .blog-info h4 {
        font-size: 18px;
        line-height: 25px;
    }
    .comment-top-content {
        gap: 5px;
        flex-direction:column;
        align-items: start;
    }

    .blog-list {
        margin-top: 30px;
    }
    
    .blog-detail-main .blog-detail {
        margin-bottom: 45px;
    }
    
    .comment-main {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .comment-top-content span {
        border:none;
    }
    
    .blog-bottom-search {
        display: none;
    }
    
    .blog-detail-search {
        display:block;
    }
    
    .category-item .checkmark {
        gap:12px;
    }
    
}
