
body {
  font-family: 'Inter', sans-serif !important;
  }

h1,h2,h3,h4,h5 {
  font-family: 'Cinzel', serif;
}

textarea:focus, input:focus{
  outline: none;
}

:root {
    --primary-color : #232c75;
    --secondary-color: #d0a33e;
    --Light-background-grey : #fbfbfd;
    --Background-grey : #f4f4f4;
    --Background-black-color : #222;
    --Text-black-color : #575757;
    --Text-white-color : #999;
    --Text-blue-shade : #bdd9fa;
    --Heading-size : 42px;
    --Text-size : 16px;
    --Res-heading-size : 32px;
    --Res-text-size : 14px;
  }

  .text-color-primary {
    color: #232c75 !important;
  }

  .background-primary {
    background-color: var(--primary-color);
  }
  
  a {
    text-decoration: none !important;
    color: unset !important;
  }


  .fw-600 {
    font-weight: 600 !important;
  }

  .fw-300 {
    font-weight: 300;
  }


  /* Navbar */

  .active>.page-link, .page-link.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
  }

.navbar {
  padding: 10px 20px;
  /* background: var(--primary-color) !important; */
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  margin-left: 16px;
  color: var(--Background-grey) !important;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-brand img, .footer-logo img {
  width: 200px;
}


.navbar-toggler i {
  color: #fff;
}

.navbar-light .navbar-toggler {
  border-color: #fff !important;
}

.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
  min-width: 200px;
}
.dropdown-submenu {
  position:relative;
  
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top:-6px;
  width: 500px;
}

.active-nav {
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 0.2px solid var(--secondary-color);
  z-index: 9999;
}


/* rotate caret on hover */

.dropdown-menu {
  background-color: #181818;
  color: #fff;
  padding: 0px;
}

.dropdown-menu li a{
  padding: 12px 10px !important;
  transition: all .3s ease-in-out;
}

.dropdown-menu li:nth-child(1) {
  border-bottom: 1px solid #333;
}

.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
} 

.dropdown ul li a {
  padding: 10px;
  font-size: 16px;
}

.dropdown ul li a:hover {
  background: var(--secondary-color) !important;
  color: #000 !important;
} 

/* Banner */


.swiper {
  width: 100%;
  height: 95vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider {

}

.banner-bg {
  /* background: url('../images/banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.banner-layer {
  
  height: 95vh;
  background-color: rgba(0, 0, 0, 0.2);
}

.banner-cntnt {
  text-align: center;
  padding-top: 40vh;
}

.banner-cntnt h1 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 32px;
  transition: all .3s ease-in-out;
}

.banner-action {
  padding: 0px;
}

.banner-cntnt a {
  display: inline-block;
  color: var(--Light-background-grey) !important;
  padding: 12px 30px;
  margin-bottom: 20px;
  border: none;
  width: 100%;
  font-size: 14px;
}

.ba-1 {
background-color: var(--primary-color); 
transition: all .3s ease-in-out;
}

.ba-1:hover {
  background-color: var(--secondary-color);
  
  color: #000 !important;
}

.ba-2 {
  background-color: #000; 
  transition: all .3s ease-in-out;
}

.ba-2:hover  {
  background-color: var(--secondary-color);
  color: #000 !important;
}

.banner-form form {
  background-color: #fff;
  padding: 7px;
  border-radius: 5px;
  overflow: hidden;
}

.banner-form form select {
  background: transparent;
  border: none;
  padding: 10px;
  width: 21%;
  margin-right: 20px;
  margin-bottom: 0px;
  transition: all .3s ease-in-out;
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
}

.banner-form form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  width: 35%;
  margin-bottom: 10px;
  transition: all .3s ease-in-out;
  color: #000;
  font-size: 14px;
}

.banner-form form button {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 8px 10px;
  border-radius: 5px;
  width: 100%;
  float: right;
  transition: all .3s ease-in-out;
  font-size: 14px;
}

.banner-form form button:hover {
  background-color: #000;

} 

.bn-sc-btn {
    border: 2px solid var(--secondary-color) !important;
  background-color: var(--primary-color) !important;
}

.prop-buttons {
  
}

.prop-buttons a {
  display: inline-block;
  width: unset;
  color: #fff;
  padding: 12px 30px;
  margin-top: 20px;
  background-color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  font-size: 18px;
  transition: all .3s;
}

.prop-buttons a i {
  font-size: 20px;
  margin-right: 10px;
}

.prop-buttons a:hover {
  background-color: var(--secondary-color);
}

/* Category */

.category-bg {
  background-color: var(--Background-grey);
  padding: 100px 50px;
}

.cat-sec {
  background-color: var(--primary-color);
  padding: 80px 80px;
  border-radius: 10px;
}

.category-heading {
}

.category-heading h6 {
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.category-heading h2 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}

.cities {
  color: #fff;
  background-color: #000;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s ease-in-out;
}

.cities h5 {
  font-size: 16px;
  transition: all .3s ease-in-out;
}

.cities p {
  position: absolute;
  bottom: 0;
  font-size: 12px;
  transition: all .3s ease-in-out;
}

.counter {
  text-align: center;
}

.counter h3 {
  font-size: 50px;
  font-weight: 600;
  color: var(--secondary-color);
}

.counter p {
  color: #fff;
  font-size: 14px;
}

.city-layer {
  background-color: rgba(0,0,0,.4);
  padding: 15px 10px;
  height: 300px;
  transition: all .3s ease-in-out;
}

.city-1 {
  background-image: url('../images/c1.jpg');
}

.city-2 {
  background-image: url('../images/c3.jpg');
}

.city-3 {
  background-image: url('../images/c2.jpg');
}

.cities:hover {
  transform: scale(1.05);;
}

.cities:hover h5 {
  color: var(--secondary-color);
  font-size: 20px;
}

.cities:hover p {
  color: var(--secondary-color);
}

.cities:hover .city-layer {
  background-color: rgba(0,0,0,.7);
}

/* About */

.about-sec {
  padding-top: 80px;
}

.heading {
  text-align: center;
  margin-bottom: 30px;
}

.heading h6 {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.heading h2 {
  color: #000;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}

.about-cntnt p {
  text-align: center;
  color: #222;
  line-height: 1.9;
  font-weight: 500;
  margin: 0;
}

/* Testimonials */

.testimonials-bg {
  padding: 100px 50px;
}

.testimonial-box {
  padding: 30px 50px 0px 50px;
}

.testimonials {
  background-color: #fff;
  padding: 10px;
}

.t-img {
  position: relative;
}

.t-img img {
  width: 100%;
}

.t-img i {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: var(--secondary-color);
  padding: 18px;
  border-radius: 100%;
  font-size: 16px;
  color: #fff;
  opacity: .8;
  transition: all .3s ease-in-out;
}

.t-img:hover {
  cursor: pointer;
}

.t-img:hover i {
  background-color: #000;
  color: var(--secondary-color);
}

.t-cntnt {
  padding: 20px 15px;
}

.t-cntnt h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

.t-cntnt span {
  font-size: 14px;
  font-weight: 600;
  color: var(--Text-black-color);
  margin-bottom: 10px;
  display: block;
}

.t-cntnt p {
  font-size: 14px;
  color: var(--Text-black-color);
}

.rating i {
  color: var(--secondary-color);
  font-size: 14px;
}

/* Contact */

.contact-bg {
  background-color: var(--primary-color);
  padding: 100px 50px;
}

.heading-2 {
  text-align: center;
  margin-bottom: 30px;
}

.heading-2 h6 {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}

.heading-2 h2 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}

.contact-form {
  background-color: #fff;
  padding: 50px 30px;
  text-align: center;
}

.contact-form h4 {
  font-weight: 600;
  font-size: 22px; 
  margin-bottom: 3px; 
}

.contact-form p {
  font-size: 14px;
  color: var(--Text-black-color);
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-form form {

}

.contact-form form input {
  width: 49%;
  margin-bottom: 8px;
  border: none;
  background-color: rgb(231, 233, 236);
  padding: 10px;
}

.contact-form form textarea {
  width: 99%;
  margin-bottom: 8px;
  border: none;
  background-color: rgb(231, 233, 236);
  padding: 10px;
  color: #777;
}

.contact-form form button {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 8px 40px;
  width: 100%;
  transition: all .3s ease-in-out;
}

.contact-form form button:hover {
  background-color: #000;
}


/* Our Brands */

.clients-bg {
  padding: 100px 50px;
}

.col-carousel {
  margin: 30px 0;
}

/* owl nav */
.owl-prev span,
.owl-next span {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.555);
  padding: 5px;
}

.owl-prev span:hover,
.owl-next span:hover {
  color: #8199a3;
}

.own-item {
  width: 20px !important;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 0;
  height: 100%;
}

.owl-prev {
  left: 0px;
}

.owl-next {
  right: 0px;
}

.owl-carousel-slider {
  width: 200px !important;
  margin: auto;
}


/* Footer */

.footer-bg {
  background-color: var(--primary-color);
  padding: 50px 50px;
}

.footer-logo {
  padding-right: 30px;
}

.footer-logo p {
  color: var(--Light-background-grey);
  font-size: 14px;
  margin-top: 10px;
}

.footer-links i {
  width: 20px;
  margin: 5px 5px 5px 0px;
}

.footer-links ul {
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
  margin-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
  color: var(--Light-background-grey);
}

.footer-links li:hover {
  color: var(--secondary-color);
}

.footer-links h4 {
  color: #fff;
  /*margin-left: 25px;*/
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-links a{
  color: var(--Light-background-grey);
  /*margin-left: 25px;*/
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  transition: all .5s;
  display: inline-flex;
}

.footer-links a:hover {
  color: var(--Primary-color);
}

.address-foot {
    text-align-last: center;
}

.social-icons {
  margin-left: 18px;
}

.social-icons a {
  margin-left: 7px;
}

.social-icons li {
  display: inline-flex;
}

.social-icons li i {
  font-size: 20px !important;
}

.copyright-bg {
  background-color: #101858;
  padding: 15px 50px 15px 50px;
}

.c-left p {
  color: var(--Light-background-grey);
  font-size: 14px;
  margin: 0;
}

.c-right {
  text-align: right;
}

.c-right a {
  color: var(--Light-background-grey) !important;
  font-size: 14px;
  margin-bottom: 0px;
  margin-left: 15px;
}

.fixed-eq-btn {
  position: fixed;
  top: 42%;
  right: -55px;
  z-index: 9997;
  color: #fff;
  background-color: var(--primary-color);
  padding: 20px 25px 10px 25px;
  transform: rotate(90deg);
  cursor: pointer;
  border-radius: 0px 0px 10px 10px;
}

.fixed-form {
  position: fixed;
  top: 30%;
  right: -500px;
  width: 330px;
  background-color: #fff;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  z-index: 1000;
}

.fixed-form form {
  padding: 30px 30px 30px 20px;
}

.fixed-form input {
  width: 100%;
  padding: 8px;
  background-color: var(--Background-grey);
  border: none;
  margin-bottom: 8px;
}

.fixed-form button {
  width: 100%;
  padding: 8px;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  margin-bottom: 0px;
}

.slidee {
  right: 70px;
  z-index: 3;
}

/* About */

/* Inner Banner */


.inner-banner {
  background-repeat: no-repeat;
  background-size: cover;
}

.about-ibanner {
  background: url('../images/about-ibanner.jpg');
}

.ibanner-layer {
  background-color: rgba(0,0,0,.3);
  height: 50vh;
}

.ibanner-heading h1 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin: auto;
}

.iabout-bg {
  background-color: var(--Background-grey);
  padding: 80px 50px;
}

.iabout-cntnt p{
  color: var(--Text-black-color);
  /*text-align: center;*/
  font-weight: 500;
  line-height: 1.9;
}

.imission-bg {
  padding: 80px 50px;
}

.mission-cntnt {
  padding: 40px 50px 0px 50px;
  height: 100%;
}

.mission-cntnt h5 {
  font-weight: 700;
  font-size: 18px;
}

.mission-cntnt p {
  color: var(--Text-black-color);
  line-height: 1.7;
  text-align: justify;

}

.team-bg {
  background-color: var(--Background-grey);
  padding: 80px 50px;
}

.team-box-pd {
  padding: 20px 30px;
  transition: all .3s ease-in-out;
}

.team-box-pd:hover {
  padding: 10px 15px;
}

.team-box {
  background-color: #fff;
}

.team-img img {
  width: 100%;
}

.team-cntnt {
  padding: 30px 15px;
  text-align: center;
}

.team-cntnt h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-cntnt p {
  font-size: 16px;
  font-weight: 500;
  color: var(--Text-black-color);
  margin-bottom: 0px;
}

.team-cntnt span {
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
  color: red;
  display: inline-block;
  position: relative;
  top: -5px;
}

.journey-bg {
  padding: 80px 50px;
}

.our-journey img {
  width: 100%;
}

/* Service */

.padding-zero {
  padding: 0 !important;
}

.service-sec-bg {

}

.service-img img {
  width: 100%;
}

.service-cntnt {
  padding: 30px 15px 10px 15px;
}

.service-cntnt h2 {
  font-weight: 700;
  font-size: 28px;
}

.service-cntnt p {
  color: var(--Text-black-color);
  line-height: 1.9;
  text-align: justify;
}

/* Contact */

.icontact-bg {
  background-color: var(--Background-grey);
  padding: 80px 50px;
}

.icontact-info {

}

.icontact-info h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.icontact-info ul {
  list-style: none;
  padding: 0px;
}

.icontact-info li {
  margin-bottom: 15px;
}

.icontact-info li a {
  font-size: 14px;
  color: var(--Text-black-color);
}

.icontact-info li a i {
  margin-right: 10px;
}

.icontact-form {
  text-align: center;
}

.icontact-form h2 {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left !important;
}

.icontact-form form input {
  width: 49%;
  margin-bottom: 15px;
  border: none;
  background-color: rgb(231, 233, 236);
  padding: 8px;
}

.icontact-form form textarea {
  width: 99%;
  margin-bottom: 15px;
  border: none;
  background-color: rgb(231, 233, 236);
  padding: 8px;
  color: #777;
}

.icontact-form form button {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 8px 40px;
  width: 100%;
  transition: all .3s ease-in-out;
}

.icontact-form form button:hover {
  background-color: #000;
}


/* Events */

.event-sec-bg {
  padding: 80px 50px 30px 50px;
}

.event-box {
  background-color: var(--Background-grey);
  margin-bottom: 50px;
}

.event-img img {
  width: 100%;
}

.event-cntnt {
  padding: 30px 15px;
}

.event-cntnt h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
}

.event-cntnt h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--Text-black-color);
  margin-bottom: 5px;
}

.event-cntnt span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--Text-black-color);
  margin-bottom: 10px;
}

.event-cntnt p {
  color: var(--Text-black-color);
  line-height: 1.8;
  text-align: justify;
}


/* Blogs */

.blogs-bg {
  padding: 100px 50px;
}

.blog-box {
  margin: 25px 0px;
}

.blogs {
  background-color: #fff;
  padding: 10px;
}

.b-img {
  position: relative;
}

.b-img img {
  width: 100%;
}

.b-cntnt {
  padding: 20px 15px;
}

.b-cntnt h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

.b-cntnt span {
  font-size: 14px;
  font-weight: 500;
  color: var(--Text-black-color);
  margin-bottom: 10px;
  display: block;
}

.b-cntnt p {
  font-size: 14px;
  color: var(--Text-black-color);
}

.b-cntnt a {
  color: var(--Text-black-color);
  display: block;
  border-top: 1px solid #aaa;
  padding-top: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.b-cntnt a:hover {
  padding-left: 10px;
}

/* Property */

.property-bg {
  background-color: var(--Background-grey);
  padding: 80px 50px;
}

.filter-box {
  margin-bottom: 50px;
}

.filter {
  margin-bottom: 15px;
}

.filter select {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 10px;
  font-size: 14px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.filter input[type="text"] {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 10px;
  font-size: 14px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.filter label {
  font-size: 12px;
  margin-bottom: 0px;
  color: var(--primary-color);
  font-weight: 600;
}

.filter button {
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 8px;
  font-size: 14px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.project-box {
  margin: 25px 0px;
}

.projects {
  background-color: #fff;
  padding: 10px;
}

.p-img {
  position: relative;
}

.p-img img {
  width: 100%;
}

.p-cntnt {
  padding: 20px 15px;
}

.p-cntnt h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif !important;
}

.p-cntnt span {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
  display: block;
}

.p-cntnt span i {
  margin-right: 5px;
}

.p-cntnt p {
  font-size: 14px;
  font-weight: 600;
  color: var(--Text-black-color);
}

.p-cntnt a {
  color: var(--Text-black-color) !important;
  display: block;
  border-top: 1px solid #aaa;
  padding-top: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.p-cntnt a:hover {
  padding-left: 10px;
}

.p-img h5 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--primary-color);
  padding: 18px;
  font-size: 18px;
  color: #fff;
  opacity: .8;
  width: 100%;
  transition: all .3s ease-in-out;
}

.p-img h5 span {
  font-size: 12px;
}

/* Join us */

.joinus-bg {
  background-color: var(--Background-grey);
  padding: 80px 200px !important;
}

.joinus-heading {
  padding: 50px 40px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-top: 6px solid var(--primary-color);
  border-radius: 5px;
  margin-bottom: 40px;
}

.joinus-heading h2 {
  font-weight: 700;
  margin-bottom: 0px;
}

.jobs {
  position: relative;
  padding: 40px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.jobs h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.jobs p {
  font-size: 14px;
  margin-bottom: 4px;
}

.jobs a {
  position: absolute;
  top: 30px;
  right: 40px;
  background-color: var(--primary-color) !important;
  padding: 8px 25px;
  font-size: 14px;
  color: #fff !important;
  border-radius: 5px;
}

.joinus-heading p {
  margin-top: 20px;
  font-size: 14px;
  margin-bottom: 0px;
}

.joinus-heading p span {
  color: red;
}

.joinus-form {
  position: relative;
  padding: 40px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.joinus-form h6 {
  width: 100%;
  font-size: 14px;
  color: var(--Text-black-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.joinus-form h6 span {
  color: red;
}

.joinus-form input {
  width: 100%;
  padding: 8px 0px;
  border: none;
  border-bottom: 1px solid var(--Text-black-color);
  font-size: 12px;
  color: var(--Text-black-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.tandc {
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px
}

.gender-label {
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px
}

.joinus-form label input{
  width: unset;
}

.skills-check {
  width: 24%;
  margin: 5px 0px;
  font-size: 14px
}

.form-btn {
  width: 100%;
  text-align: center;
  padding: 20px 0px;
}

.form-btn button {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 8px 100px;
  transition: all .3s ease-in-out;
}

.overlay_div { 
  display: none; 
}

.overlay_div h5 { 
  color: #000;
  font-weight: 600;
  margin-bottom: 0px;
}

.overlay_div span { 
  font-size: 14px;
  color: #444;
  font-weight: 500;
  margin-bottom: 10px !important;
  display: block;
}

.overlay_div p { 
  display: block;
  font-size: 14px;
  color: var(--Text-black-color);
  line-height: 1.7;
  padding-bottom: 50px !important;
}

.am-icon {
    font-size: 44px;
    margin-bottom: 15px;
}


@media (max-width: 575px) {

  .navbar {
    background-color: #000;
  }
  
  .social-icons {
    margin-left: 0px;
  }

  .banner-cntnt {
    padding-top: 16vh;
  }

  .banner-cntnt h1 {
    font-size: 24px;
  }

  .prop-buttons a {
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
  }

  .prop-buttons a i {
    font-size: 16px;
  }

  .banner-cntnt a {
    margin-bottom: 0px;
  }

  .banner-form {
    margin-top: 20px;
  }

  .banner-form form select {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .banner-form form input {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .banner-form form button {
    width: 100%;
  }

  .category-bg {
    padding: 0px 0px;
  }

  .cat-sec {
    border-radius: 0px;
    padding: 30px 15px;
  }

  .category-heading h6 {
    font-size: 14px;
  }

  .category-heading h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .city-layer {
    height: 200px;
  }

  .cities {
    margin-bottom: 15px;
  }

  .counter {
    margin-bottom: 40px;
  }

  .counter h3 {
    font-size: 28px;
  }

  .counter p {
    font-size: 12px;
  }

  .about-sec {
    padding-top: 30px 15px;
  }

  .heading h6 {
    font-size: 14px;
  }

  .heading {
    margin-bottom: 25px;
  }

  .heading h2 {
    font-size: 22px;
  }

  .about-cntnt p {
    text-align: justify;
    padding: 10px;
    margin-bottom: 30px;
  }

  .testimonials-bg {
    padding: 30px 15px;
  }

  .testimonial-box {
    padding: 20px 0px;
  }

  .testimonials  {
    margin-bottom: 20px;
  }

  .contact-bg {
    padding: 30px 15px;
  }

  .contact-form {
    padding: 30px 15px;
  }

  .contact-form h4 {
    font-size: 20px;
  }

  .contact-form p {
    font-size: 12px;
  }

  .contact-form form input {
    width: 100%;
  }

  .contact-form form textarea {
    width: 100%;
  }

  .map iframe {
    height: 200px;
  }

  .clients-bg {
    padding: 30px 15px;
  }

  .owl-carousel-slider {
    width: 120px !important;
    margin: auto;
  }

  .footer-bg {
    padding: 30px 15px 0px 15px ;
  }

  .footer-logo {
    padding-right: 0px;
    padding-bottom: 20px;
  }

  .footer-logo p {
    font-size: 12px;
  }

  .footer-links ul {
    margin-bottom: 40px;
  }

  .footer-links a,.footer-links h4 {
    margin-left: 0px;
    margin-bottom: 8px;
  }

  .c-left p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .c-right {
    text-align: center;
  }

  .c-right a {
    font-size: 12px;
  }

  /* About */

  .about-ibanner {
    margin-top: 70px;
  }

  .ibanner-layer {
    height: 30vh;
  }

  .ibanner-heading h1 {
    font-size: 22px;
  }

  .iabout-bg, .imission-bg, .team-bg, .journey-bg {
    padding: 30px 15px;
  }

  .iabout-cntnt p {
    text-align: justify;
    font-size: 14px;
  }

  .mission-cntnt {
    padding: 15px 15px;
  }

  .mission-cntnt p {
    font-size: 14px;
  }

  .team-box-pd {
    padding: 0px;
    margin-bottom: 20px;
  }

  .team-cntnt p {
    font-size: 14px;
  }

  .team-cntnt {
    padding: 20px 15px;
  }

  /* Service */

  .service-cntnt h2 {
    font-size: 18px;
  }

  .service-cntnt p {
    font-size: 14px;
  }

  /* Events */

  .event-sec-bg, .blogs-bg, .icontact-bg, .property-bg {
    padding: 30px 15px;
  }

  .event-cntnt h2 {
    font-size: 18px;
  }

  .event-cntnt h6, .event-cntnt span {
    font-size: 12px;
  }
  
  .event-cntnt p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0px;
  }

  .event-cntnt {
    padding: 20px 0px;
  }

  .b-cntnt {
    padding: 20px 10px;
  }

  .blog-box {
    margin: 10px 0px;
  }

  .icontact-form {
    margin-top: 30px;
  }

  .icontact-form form input {
    width: 100%;
    margin-bottom: 8px;
  }

  .filter {
    margin-bottom: 10px;
  }

  .project-box {
    margin: 10px 0px;
  }

  .p-cntnt h4 {
    font-size: 18px;
  }

  .p-cntnt span, .p-cntnt p {
    font-size: 12px;
  }

  .joinus-bg {
    padding: 30px 15px !important;
  }

  .joinus-heading,.jobs,.joinus-form {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

  .joinus-heading h2 {
    font-size: 20px;
  }

  .jobs p {
    font-size: 12px;
  }

  .jobs a {
    margin-top: 10px;
    display: inline-flex;
    position: unset;
    text-align: center;
  }

  .jobs h4 {
    font-size: 18px;
  }

  .skills-check {
    width: 100%;
  }

  .form-btn {
    padding: 10px 0px;
  }

  .form-btn button {
    width: 100%;
    border-radius: 5px;
  }

}

@media (min-width: 576px) and (max-width: 767px) {


  .banner-cntnt {
    padding-top: 25vh;
  }

  .banner-cntnt a {
    margin-bottom: 0px;
  }

  .banner-form {
    margin-top: 20px;
  }

  .banner-form form select {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .banner-form form input {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .banner-form form button {
    width: 100%;
  }

  .category-bg {
    padding: 30px 0px;
  }

  .cat-sec {
    border-radius: 10px;
    padding: 30px 15px;
  }

  .category-heading h6 {
    font-size: 14px;
  }

  .category-heading h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .city-layer {
    height: 200px;
  }

  .cities {
    margin-bottom: 15px;
  }

  .counter {
    margin-bottom: 40px;
  }

  .counter h3 {
    font-size: 28px;
  }

  .counter p {
    font-size: 12px;
  }

  .about-sec {
    padding-top: 30px 15px;
  }

  .heading h6 {
    font-size: 14px;
  }

  .heading {
    margin-bottom: 15px;
  }

  .heading h2 {
    font-size: 22px;
  }

  .about-cntnt p {
    text-align: justify;
    margin-bottom: 30px;
  }

  .testimonials-bg {
    padding: 30px 15px;
  }

  .testimonial-box {
    padding: 20px 0px;
  }

  .testimonials  {
    margin-bottom: 20px;
  }

  .contact-bg {
    padding: 30px 15px;
  }

  .contact-form {
    padding: 30px 15px;
  }

  .contact-form h4 {
    font-size: 20px;
  }

  .contact-form p {
    font-size: 12px;
  }

  .contact-form form input {
    width: 100%;
  }

  .contact-form form textarea {
    width: 100%;
  }

  .map iframe {
    height: 200px;
  }

  .clients-bg {
    padding: 30px 15px;
  }

  .owl-carousel-slider {
    width: 120px !important;
    margin: auto;
  }

  .footer-bg {
    padding: 30px 15px 0px 15px ;
  }

  .footer-logo {
    padding-right: 0px;
    padding-bottom: 20px;
  }

  .footer-logo p {
    font-size: 12px;
  }

  .footer-links ul {
    margin-bottom: 40px;
  }

  .footer-links a,.footer-links h4 {
    margin-left: 0px;
  }

  .c-left p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .c-right {
    text-align: center;
  }

  .c-right a {
    font-size: 12px;
  }

    /* About */
  
    .iabout-bg, .imission-bg, .team-bg, .journey-bg {
      padding: 30px 15px;
    }
  
    .iabout-cntnt p {
      text-align: justify;
      font-size: 14px;
    }
  
    .mission-cntnt {
      padding: 10px 0px;
    }
  
    .mission-cntnt p {
      font-size: 14px;
    }
  
    .team-box-pd {
      padding: 0px;
      margin-bottom: 20px;
    }

     /* Events */


  .event-cntnt h2 {
    font-size: 18px;
  }

  .event-cntnt h6, .event-cntnt span {
    font-size: 12px;
  }
  
  .event-cntnt p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0px;
  }

  .event-cntnt {
    padding: 20px 0px;
  }

  .b-cntnt {
    padding: 20px 10px;
  }

  .blog-box {
    margin: 10px 0px;
  }

  .icontact-form {
    margin-top: 30px;
  }

  .icontact-form form input {
    width: 100%;
    margin-bottom: 8px;
  }

  .filter {
    margin-bottom: 10px;
  }

  .project-box {
    margin: 10px 0px;
  }

  .p-cntnt h4 {
    font-size: 18px;
  }

  .p-cntnt span, .p-cntnt p {
    font-size: 12px;
  }

  .joinus-bg {
    padding: 30px 15px !important;
  }

  .joinus-heading,.jobs,.joinus-form {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

  .joinus-heading h2 {
    font-size: 20px;
  }

  .jobs p {
    font-size: 12px;
  }

  .jobs a {
    margin-top: 10px;
    display: inline-flex;
    position: unset;
    text-align: center;
  }

  .jobs h4 {
    font-size: 18px;
  }

  .skills-check {
    width: 100%;
  }

  .form-btn {
    padding: 10px 0px;
  }

  .form-btn button {
    width: 100%;
    border-radius: 5px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {

  .nav-link {
    font-size: 12px !important;
  }

  .t-cntnt p {
    font-size: 12px;
  }
  
  .banner-cntnt {
    padding-top: 25vh;
  }

  .banner-cntnt a {
    margin-bottom: 0px;
  }

  .banner-form {
    margin-top: 20px;
  }

  .banner-form form select {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .banner-form form input {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .banner-form form button {
    width: 100%;
  }

  .category-bg {
    padding: 30px 0px;
  }

  .cat-sec {
    border-radius: 10px;
    padding: 30px 15px;
  }

  .category-heading h6 {
    font-size: 14px;
  }

  .category-heading h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .city-layer {
    height: 200px;
  }

  .cities {
    margin-bottom: 15px;
  }

  .counter {
    margin-bottom: 40px;
  }

  .counter h3 {
    font-size: 28px;
  }

  .counter p {
    font-size: 12px;
  }

  .about-sec {
    padding-top: 30px 15px;
  }

  .heading h6 {
    font-size: 14px;
  }

  .heading {
    margin-bottom: 15px;
  }

  .heading h2 {
    font-size: 22px;
  }

  .about-cntnt p {
    text-align: justify;
    margin-bottom: 30px;
  }

  .testimonials-bg {
    padding: 30px 15px;
  }

  .testimonial-box {
    padding: 20px 0px;
  }

  .testimonials  {
    margin-bottom: 20px;
  }

  .contact-bg {
    padding: 30px 15px;
  }

  .contact-form {
    padding: 30px 15px;
  }

  .contact-form h4 {
    font-size: 20px;
  }

  .contact-form p {
    font-size: 12px;
  }

  .contact-form form input {
    width: 100%;
  }

  .contact-form form textarea {
    width: 100%;
  }

  .map iframe {
    height: 200px;
  }

  .clients-bg {
    padding: 30px 15px;
  }

  .owl-carousel-slider {
    width: 120px !important;
    margin: auto;
  }

  .footer-bg {
    padding: 30px 15px 0px 15px ;
  }

  .footer-logo {
    padding-right: 0px;
    padding-bottom: 20px;
  }

  .footer-logo p {
    font-size: 12px;
  }

  .footer-links ul {
    margin-bottom: 40px;
  }

  .footer-links a,.footer-links h4 {
    margin-left: 0px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .c-left p {
    font-size: 12px;
  }

  .c-right a {
    font-size: 12px;
  }

    /* About */
    .iabout-bg, .imission-bg, .team-bg, .journey-bg {
      padding: 30px 15px;
    }
  
    .iabout-cntnt p {
      font-size: 14px;
    }
  
    .mission-cntnt {
      padding: 10px 0px;
    }
  
    .mission-cntnt p {
      font-size: 14px;
    }
  
    .team-box-pd {
      padding: 10px;
    }

    .team-cntnt h4 {
      font-size: 16px;
    }

    .team-cntnt p {
      font-size: 12px;
    }

    .service-cntnt h2 {
      font-size: 18px;
    }

    .service-cntnt p {
      font-size: 12px;
    }

     /* Events */

  .event-sec-bg, .blogs-bg, .icontact-bg, .property-bg {
    padding: 30px 15px;
  }

  .event-cntnt h2 {
    font-size: 16px;
  }

  .event-cntnt h6, .event-cntnt span {
    font-size: 12px;
  }
  
  .event-cntnt p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0px;
  }

  .event-cntnt {
    padding: 20px 0px;
  }

  .b-cntnt {
    padding: 20px 10px;
  }

  .blog-box {
    margin: 10px 0px;
  }

  .b-cntnt p {
    font-size: 12px
  }

  .b-cntnt h4 {
    font-size: 16px;
  }

  .b-cntnt span {
    font-size: 12px;
  }

  .b-cntnt a {
    font-size: 12px;
  }

  .icontact-form form input {
    width: 100%;
    margin-bottom: 8px;
  }

  .filter {
    margin-bottom: 10px;
  }

  .project-box {
    margin: 10px 0px;
  }

  .p-cntnt h4 {
    font-size: 18px;
  }

  .p-cntnt span, .p-cntnt p {
    font-size: 12px;
  }

  .joinus-bg {
    padding: 30px 15px !important;
  }

  .joinus-heading,.jobs,.joinus-form {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

  .joinus-heading h2 {
    font-size: 20px;
  }


  .jobs a {
    margin-top: 10px;
    display: inline-flex;
    position: unset;
    text-align: center;
  }

  .jobs h4 {
    font-size: 18px;
  }

  .skills-check {
    width: 49%;
  }

  .form-btn {
    padding: 10px 0px;
  }

  .form-btn button {
    width: 100%;
    border-radius: 5px;
  }

}

@media (min-width: 992px) and (max-width: 1199px) { 

  .category-heading h2 {
    font-size: 28px;
  }

  .owl-carousel-slider {
    width: 150px !important;
  }

  .service-cntnt h2 {
    font-size: 18px;
  }

  .service-cntnt p {
    font-size: 14px;
  }

  .skills-check {
    width: 49%;
  }


}


/* Inner Page */

.bg29 {
  background-image: url('../images/projectbg/129.jpg');
}


.i-banner-bg{
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  background-attachment: fixed;
}
.i-background-layer{
  background-color: rgba(0, 0, 0, 0.5);
  height: 80vh;
}
.i-banner-content{
  padding-top: 250px;
}
.i-banner-content h1{
  color: white;
  font-size: 48px;
  font-weight: 300;
}
.i-banner-content h1 span{
  font-weight: 500;
  font-family: cinzel !important;
}
.i-banner-content p{
  font-size: 16px;
  font-weight: 500;
  /*margin-bottom: 40px;*/
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 8px 20px;
  color: #000;
  
}
.i-banner-content a{
  color: white;
  border: 1px solid #ff27f0;
  padding: 16px 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all .5s;

}
.i-banner-content a:hover{
background-color: #ff27f0 ; 
color: white;

}
.form h2{
  font-size: 24px;
  
}
.estate{
  padding-top: 155px;
}

.i-form {
  padding: 20px 10px 40px 10px;
  text-align: center;
}

.inquiry p{
  color: white;
  background-color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  padding: 4px 7px;
  position: relative;
  top: -38px;
  width: fit-content;
  margin: 0;
}

.i-form-details a{
  padding: 10px !important;
  width: 100% !important;
  color: #555 !important;
  font-size: 24px;
  text-decoration: none;
}
.i-form-details input{
  width: 100%;
  padding: 8px;
  margin-bottom: 5px;
  border: none;
  border-bottom: 1px solid #aaa;
  font-size: 14px;
}
.message{
  padding: 25px !important;
  margin-bottom: 5px;
}
.i-form-details button{
  color: white;
  background-color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 8px;
  border: 1px solid var(--primary-color);
  margin-top: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.i-form-details a i{
  position: relative;
  top: 2px;
  font-size: 18px;
}

/*  */

.prop-details {
  background-color: #f8f9fa;
  text-align: center;
  padding: 20px 2px;
  border: 1px solid #eee;
}

.prop-details i {
  font-size: 28px;
}

.prop-details h5 {
  font-size: 14px;
  font-weight: 600;
  /* font-family: cinzel !important; */
  text-transform: capitalize;
  color: var(--primary-color);
  
}

.prop-details p {
  font-size: 14px;
  font-weight: 600;
  font-family: cinzel !important;
  text-transform: capitalize;
  
}

.prop-highlights li {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.two-img img{
  width: 100%;
  height: 180px;
  overflow: hidden;
  padding: 10px;
  transition: all .5s;
}

.two-img:hover img {
  padding: 0px;
}


.img-hall{
  padding: 0%;
}
.img-hall img{
  width: 100%;
  height: 100%;
}
.hall-text {
  padding: 50px 50px !important;
}

.hall-text h3{
  color: #15233d;
  font-size: 58px;
  font-weight: 400;
  padding-bottom: 10px;
}
.hall-text h3 span{
  font-weight: 100;
}

.hall-text h5 {
  margin-bottom: 15px;
  font-weight: 500;
}

.hall-text ul {
  list-style: none;
  padding: 0;
}

.hall-text li{
  color: black;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 10px;
  text-align: justify;
  line-height: 30px;
}
.hall-text li i{
  color: gold;
  font-size: 16px;
  margin-right: 10px;
}

.location-heading h2 {
  font-size: 36px;
  font-weight: 300;
  padding: 20px 0px !important;
}


.floor-plan-button button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #555;
  text-align: left;
  padding: 5px;
  margin-bottom: 10px;
  transition: 0.9s all ease;
}
.floor-plan-button button:hover,
.floor-plan-button button:active,
.floor-plan-button button:focus {
  border: 1px solid #555;
  box-shadow: 2px 2px 10px #555;
  color: #000;
}
.floor-plan-img img {
  width: 100%;
  padding: 0px 50px;
  animation-name: rotate;
  transition: 1s all ease;
}
/* 
.floor-plan:hover .floor-plan-img img {
  transform: rotate(10deg);
} */


.amenities {
  background-image: linear-gradient(rgba(0, 0, 0, 0.842), rgba(0, 0, 0, 0.842)),
    url("../images/projectbg/129.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.amenities img {
  margin-bottom: 20px;
}

.amenities h4 {
  font-size: 16px;
}


@media (max-width: 575px) {

  .i-banner-bg {
    height: unset;
  }



  .i-banner-content h1 {
    font-size: 28px;
}

.i-banner-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.estate {
    padding-top: 80px;
}


.i-banner-form label {
    width: 100%;
}

.i-banner-form {
    padding: 0px 10px;
}


.i-banner-bg {
    height: unset;
}


.i-banner-content {
    padding-top: 150px;
}

.t-img i {
    position: unset;
}

iframe {
    width: 100%;
}


}



@media (min-width: 576px) and (max-width: 767px) {


  .i-banner-bg {
    height: unset;
  }



  .i-banner-content h1 {
    font-size: 28px;
}

.i-banner-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.estate {
    padding-top: 80px;
}


.i-banner-form label {
    width: 100%;
}

.i-banner-form {
    padding: 0px 10px;
}


.i-banner-bg {
    height: unset;
}


.i-banner-content {
    padding-top: 150px;
}

}