:root {
  --white-color:                  #ffffff;
  --primary-color:                #008bae;
  --secondary-color:              		#204d88;
 
  --button-primary-color:              		#008bae;
  --section-bg-color:             #f9f9f9;
  --section-feat-bg-color:             #b1643a;
  --dark-color:                   #000000;
  --p-color:                      #282828;
  --bg-white-color:               #ffffff;
  --bg-light-color:               #f1f3f4;
  --border-color:                 #e9eaeb;
  --featured-border-color:        #727aab;

  /* --body-font-family:             'DM Sans', sans-serif; */
  --body-font-family:             'Poppins', sans-serif;

  --h1-font-size:                 36px;
  --h2-font-size:                 32px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --p16-font-size:                16px;
  --menu-font-size:               12px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             600;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family); 
}
  
/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
 
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -0px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -1px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -1px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 28px;
  font-family: var(--body-font-family);
  text-align:justify;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}


.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}
  

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


 

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

 
.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color) !important;
}

.button a.read-more, .button > a.read-more {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 2px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.button a.read-more:hover, .button > a.read-more:hover {
    background-color: var(--theme-primary-color);
    color: var(--text-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 77, 136, 0.3);
}


 

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: 60px !important;
}

.is-sticky,
.is-sticky .navbar .container-fluid {
  background: var(--white-color);
  box-shadow: 0 2px 1px rgba(0,0,0,.1);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.navbar {
  background: #fff;
  position: fixed;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 0px;
  padding-bottom: 0;
   box-shadow: 0 2px 1px rgba(0,0,0,.1);
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 3px 15px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: #000;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 12px;
  margin-left: 12px;
  font-size:16px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color:#000;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  /* text-transform: uppercase; */
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}


/*=================================================================================================*/
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}


.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


  
 
.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}

  
/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
 /*---background: url(../images/css-pattern5.png) repeat fixed; -----*/
    background-color: #ffffff;
 
    background-image: radial-gradient( ellipse farthest-corner at 8px 8px , #f3f3f3, #f3f3f3 50%, #ffffff 50%);
    background-size: 8px 8px;
    
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
  
/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
	background: var(--section-bg-color);
	border: 2px solid #ccc;
	margin: 24px;
	padding:14px;
	transition: all ease 0.5s;
}
 
/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 30px 30px 30px 30px;
  height: 100%;   
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin: 4px;
}

.headersepop1{
  font-weight: bold;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border-bottom: 1px solid #495057;
  color: var(--p-color);
  margin-bottom: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none;
  font-size:14px;
}

.ms-auto1{
	padding-bottom:10px;
	text-align:center;
}

.modal-header {
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
    background: var(--secondary-color);
    color: white;
    line-height: 60px;
    border-radius: 10px 10px 0 0;
}

.modal-header h5 {
    font-size: 19px;
    text-align: center;
    color: white;
    font-weight: 500;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 10px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    border: 3px solid var(--secondary-color);
}

.close {
    float: right;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
	border: none;
    background: none;
}

.close:hover {
    color: #000;
    text-decoration: none;
}
 
 @media (min-width: 768px){
	.modal-sm {width: 400px !important;}
	.modal-dialog {width: 540px;  }

	.modal-dialog {
		 
		margin: 100px auto;
	}
	
}

@media screen and (max-width: 600px) {
	 
	.modal-dialog {
		margin: 80px 10px 10px 10px;
	}
	.modal-header-p{ 
      font-size:11px; 
      font-weight:500;
	  line-height:16px;
      margin-bottom:6px;
      text-align:center;
	}
	.modal-header-b{ 
      font-size:13px; 
      font-weight:500;
	  line-height:16px;
      margin-bottom:6px;
      text-align:center;
	}


}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.button1 {
    background: linear-gradient(-35deg, var(--button-primary-color), var(--secondary-color), var(--secondary-color), var(--button-primary-color));
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    border: 0px;
    box-shadow: 1px 2px 4px -2px rgba(0, 0, 0, 0.35);
}


.formbt{
  /* background: var(--button-primary-color);
  background: linear-gradient(-35deg, #278997, #2aacf4, #5ec5fe, #ffa800); */
  
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding:10px 30px;
}

.formbt:hover,
.formbt:focus {
    /* background: var(--primary-color);
  border-color: transparent;*/
}

.formsec{
	border: 2px solid var(--secondary-color);
	box-shadow: 1px 2px 4px -2px rgba(0, 0, 0, 0.35);

	border-radius: var(--border-radius-large);
	color: var(--secondary-color);
	font-weight: var(--font-weight-medium);
	transition: all 0.3s;
	transition: 0.3s;
	 
	padding:10px 30px;
 }

.formsec:hover,
.formsec:focus {
	background:  var(--secondary-color);
	animation: gradient 3s ease infinite;
	color: var(--white-color);      
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
  font-size:14px;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

 

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
 
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 4px 16px;
  }

  .navbar .container-fluid {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 400px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 20px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container-fluid {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 15px;
    padding: 12px 22px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}

 @media (min-width: 992px) {
	 .navbar-expand-lg .navbar-collapse {
		 display: flex !important;
		 flex-basis: auto;
		 justify-content: flex-end;
	}
}

.modal-header-p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 12px;
	text-align: center;
}
.modal-header-b {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 12px;
	text-align: center;
}
.modal-header-b span {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 6px;
	font-weight:var(--font-weight-bold);
	color:var(--secondary-color);
	text-align: center;
}

.sliderform1 {
 	padding: 8px;  
}

.md-3form {
	margin-top: 53px;
	background: linear-gradient(to top, #ccc 0, #ccc 77%);
	border-radius: 6px;
	width: 100%;
	box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, .1);
}

.sliderform1 h4 {
	font-size: 19px;
	color: #000;
	margin:30px 0 20px 0;
	text-align: center;
	font-weight: 500;
	text-shadow: 3px 3px 8px rgb(0 0 0 / 20%);
	letter-spacing: 0.5px;
}

.sliderform1 h5 {
	font-size: 18px;
	color: #000;
	text-align: center;
	font-weight: 500;
	text-shadow: 2px 2px 3px rgb(0 0 0 / 10%);
	text-transform: uppercase
}

.high_label {
	background-color: #e97224;
	background: linear-gradient(-45deg, #c4e4f8, #1f8bb9, #008aab, #08253b);
	background-size: 400% 400%;
	box-shadow: 0 0 1px 1px #e97224;
	text-align: center;
	color: #fff;
	padding: 8px;
	border-radius: 8px 4px;
}

.high_label_span {
	font-family: 'Poppins', sans-serif;
	display: block;
	animation-duration: 3s !important;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 0.7px;
}

.high_label_offer {
	animation-duration: 2s !important;
	text-align: center;
}
.form-title{
	font-size:var(--p14-font-size);
	margin-top:40px;
}

.form-title ul li {
    color: var(--p-color);
    font-size: var(--p16-font-size);
	list-style-type:none;
	padding:0px;
	margin-left:-15px;
	line-height:33px;
    font-weight: var(--font-weight-normal);
}

.col-md-91{
	width:calc(100% - 340px);
}
.col-md-31 {
  width: 340px;
  z-index: 2;
  background: var(--white-color);
  box-shadow: rgba(0, 0, 0, .25) 0 .125em .5em, rgba(255, 255, 255, .1) 0 0 0 1px inset;
  border-left: 1px solid #eee;
}

@media (max-width: 768px) {
	.col-md-91{
        width: 100%;
    }
}

@media (max-width: 1024px) {
	.col-md-91{
        width: 100%;
    }
	.col-md-31{
        display:none
    }
}


.carousel{
	padding:0px;
}


/*----------------------------------------------------------------------*/

#fit-content {
    /* position: relative; */
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 15px 5px;
}
 
#fit-content {
    /* position: absolute; */
    top: 76px;
    left: 10px;
    background-color: #ffffff;
    font-size: 14px;
    z-index: 1;
    border-radius: 6px;
    padding: 15px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .8px
}

#fit-content p {
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: #333
}

#fit-content .top-patch {
    color: #363636;
    font-weight: 500;
    font-size: 17px;
    padding: 5px;
    border-radius: 5px
}

#fit-content .project-name {
    font-weight: 600;
    font-size: 22px;
    padding: 2px 0;
    border-radius: 10px 0px;
    letter-spacing: .8px;W
}

#fit-content .project-location {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: capitalize
}

#fit-content .project-developer {
    text-transform: capitalize;
    margin: 10px;
    line-height: 27px;
    font-size: 14px;
    color: rgba(0, 0, 0, .8)
}

#fit-content .project-addon-info {
    font-size: 14px;
    line-height: 28px;
    text-align:left;
	text-transform:capitalize;
}

 
#fit-content .project-addon-info p {
    font-size: 14px;
    line-height: 34px;
    padding: 0 5px;
    border-bottom: 1px dotted #303438;
    color: #000;
    text-transform: capitalize
}

#fit-content .project-booking-info {
    border-radius: 6px;
    margin: 10px 0
}

#fit-content .project-booking-info-points {
    background-image: linear-gradient(to right, #1377AF, #082236);
    color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 10px 20px
}

#fit-content .project-booking-info-points p {
    color: #fff;
    padding: 0 0;
    font-size: 15px;
    text-transform: capitalize
}

#fit-content .project-booking-amount {
    background-color: #1377AF;
    color: #fff;
    padding: 10px;
    font-size: 15px;
    border-radius: 2px;
    border: 1.8px dashed #fff;
    font-weight: 600;
    line-height: 27px;
    text-transform: capitalize
}

#fit-content .project-border {
    background-color: #1377AF;
    color: #fff;
    padding: 8px;
    font-size: 15px;
    border-radius: 3px;
    text-transform: capitalize
}

#fit-content .project-configuration-details {
    text-transform: capitalize;
    font-size: 1.1rem
}

#fit-content .project-price-p {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 10px 0
}

#fit-content .project-enquiry button {
    color: #fff;
    border-radius: 4px;
    margin: 5px 0
}

#fit-content .project-rera {
    font-size: .8rem;
    color: rgba(0, 0, 0, .8)
}
 

.slider {
    display: block
}

.slider-mob {
    display: none
}


#apDiv2 {
    position: fixed;
    height: 15px;
    right: 3%;
    z-index: 10001;
    top: 85%;
}

@media screen and (max-width:600px) {
    .slider {
        display: none
    }
    .slider-mob {
        display: block
    }
	
	
	#apDiv2 {
		display: none
	}
}
 
 
@media (max-width:768px) {
 
    .sl {
        display: none
    }
 
    #fit-content {
        position: relative;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        padding: 15px 5px;
        top: 0;
        left: 0
    }
	#apDiv2 {
		display: none
	}
}

@media (max-width:1024px) {
 
    .sl {
        display: none
    }
 
    #fit-content {
        position: relative;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        padding: 15px 5px;
        top: 0;
        left: 0
    }
	#apDiv2 {
		display: none
	}
}

@media (max-width:768px) {
 
    .sl {
        display: none
    }
    
    #fit-content {
        position: relative;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        padding: 15px 5px;
        top: 0;
        left: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    
    .sl {
        display: none
    }
    
    #fit-content {
        position: relative;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        padding: 15px 5px;
        top: 0;
        left: 0
    }
}

.pop_align{text-align:center;}



.form_mob_title{font-size:17px;text-align:center;font-weight:500; padding:30px 0 20px 0}

.form_mob_field{height:45px;border:#222 solid 1px}

 .contact_div{display:none}
 @media screen and (max-width: 600px) {
	.contact_div {
		display: block }
		.calld{
		background:#f4f4f4; padding:1%; text-align:center;
	}
		}
 
 
.ame {
	border: 1px #ccc solid;
	box-shadow: -2px 0px 8px 0px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 6px;
	padding: 14px 8px;
	margin: 10px 0;
	text-align: center;
}

.ame:hover {
	border: 1px #ccc dotted;
	transition: 0.2s;
	border-radius: 6px;
	padding: 14px 8px;
	margin: 10px 0;
	background: #fff;
}

.ame img {
	margin: 10px;
}

.ame p {
	padding: 0px;
	margin: 0px;
	text-align: center;
	/*font-size: 14px;*/
	font-weight: 500;
}

 

.panel-title {
	font-size: 16px;
	font-weight: var(--font-weight-normal);
	background-color: var(--secondary-color);
	color: #fff;
	padding: 14px;
	border-radius:5px;
	
}

.panel-title-des {
	padding-top: 16px;
	border-radius:5px;
	 
}

.panel-title-des p{
	padding: 10px 14px 0px 14px;
	margin:0px;
 }
.panel-title-des ul li{
	padding-top: 10px;
}

.loca_he {
    list-style-type: none;
    font-weight: bold;
    font-size: 18px;
}

.lighlights{list-style-type:none;}
.lighlights li {
	padding-top: 10px;
}

.disclaimer{color:#999;padding:20px 0px 10px 0;margin-bottom:0;font-size:12px}

.logoce{
    display: flex; 
    justify-content: center;
    
}

.form_mob{
    border: 1px solid #ccc;
    background: #fff;
    padding: 20px 0;
}


.whatsapp{position:fixed;height:15px;right:3%;z-index:10001;top:85%;}

.mt{margin-top:10px;}
.mb{margin-bottom:10px;}


.price{
    font-size: 20px;
    font-weight: 500;
}

.highlight li{ padding-bottom:10px; line-height:26px;}
.highlight h4{ padding-bottom:10px; font-size:20px;}
.bold {font-weight: var(--font-weight-bold);}
/*.para{line-height:28px; text-align:justify-content;}--*/
 
@media only screen and (max-width: 990px) {
    .footer-enquiryBtn {
        display: flex !important;
    }
	.whatsapp{display: none;}
}
.footer-enquiryBtn {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    text-align: center;
    padding: 4px 2px;
    width: 100%;
    background: #FFF;
    border-radius: 0;
}
.footer-enquiryBtn a {
    font-size: 14px;
    color: #fff;
	font-weight: var(--font-weight-medium);
    text-align: center;
    display: block;
    width: calc(50% - 4px);
    padding: 8px 5px;
    margin: 0 2px;
    border-radius: 4px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-left: 0;
    background-color: var(--secondary-color);
    color: #FFF;
    text-decoration: none;
}
.wapp{background-color: #40c351 !important;}
.loca_he{list-style-type:none; font-weight:bold;}

.highlight-title{font-size:19px;}
 
 
     .ms-lg-5 {
        margin-left: 11rem !important;
    }
	
	
	 
	.main-title span {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-size: 16px;
    display: inline-block;
	background: var(--secondary-color);
    position: relative;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px 5px 0 0;
	}
	 
	.main-title span::before {
		content: "";
		height: 2px;
		width: 240px;
		position: absolute;
		bottom: -2px;
		transform: translate(-50%, 0px);
		left: 50%;
		background: var(--secondary-color);
	}
	
	.main-title-h2{
		text-align:center;
		letter-spacing: 0.3px;
		font-size: 28px;
		color: var(--p-color);
		font-weight:var(--font-weight-medium);
	}
	.main-title-h5{
		text-align:center;
		letter-spacing: 0.3px;
		font-size: 22px;
		color: var(--p-color);
		font-weight:var(--font-weight-medium);
	}
	
	.calld{
		background:#f4f4f4; padding:1%
	}
	
	.calld h4{
		 font-size:19px; padding:2%;
		 line-height:28px;
		 font-weight:500
  } 
  
      #owl-demo .item{
       
        padding:5px 0px;
        margin: 10px;
        color: #FFF;
         
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        text-align: center;
    }
    .customNavigation{
      text-align: center;
      top:220%;
    }
   
    .customNavigation a{
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    .accordion-button:focus{
		border: none !important;
	}
    
    
    
    
    
    
    
    
    