body {
  background-color: #ffff;
  font-family: 'Roboto', sans-serif;
  color: #333333;
  font-size: 15px;
  overflow-x: hidden;
}

.no-padding {
  padding: 0;
}

/* MODULES - Individual site components */
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #333333;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

img {
  border: none;
}

.aa-primary-btn {
  font-size: 16px;
  padding: 10px 30px;
  border: 1px solid #e9e9e9;
  margin-top: 10px;
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.aa-primary-btn:hover,
.aa-primary-btn:focus {
  text-decoration: none;
}

.aa-primary-btn span {
  margin-right: 5px;
}

.aa-secondary-btn {
  background-color: #fff; /* Set background color to white */
  color: #555; /* Set text color to gray */
  border: 0.5px solid #555; /* Add a gray border */
  padding: 5px 25px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
  margin: 0 auto;
}
/* Add a horizontal line before .aa-secondary-btn */
.aa-secondary-btn::before {
  content: "";
  width: 0;
  height: 2px; /* Height of the line */
  background-color: #129BCF; /* Color of the line (gray) */
  position: absolute;
  left: 0;
  top: 50%;
  transform-origin: left;
  transform: scaleX(0); /* Initially set the scale to 0 */
  animation: expandLine 2s ease-in-out forwards;
}

@keyframes expandLine {
  0% {
    width: 100%; /* Line starts from the left */
    transform-origin: left;
    transform: scaleX(0);
  }
  75% {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1); /* Expand the line */
  }
  100% {
    width: 0; /* Line goes inside for 2cm */
    transform-origin: right;
    transform: scaleX(1);
  }
}


.aa-secondary-btn:hover,
.aa-secondary-btn:focus {
  background-color: #555;
  color: #fff;
}

.aa-view-btn {
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 15px 0px;
  display: inline-block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-view-btn:hover,
.aa-view-btn:focus {
  background-color: #fff;
}

/* LAYOUTS - Page layout styles */

/*==================
 HEADER SECTION
====================*/

#aa-header {
  border-bottom: 1px solid #fff;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

#aa-header .aa-header-area {
  display: inline;
  padding: 5px 0;
  float: left;
  width: 100%;
}

#aa-header .aa-header-area .aa-header-left {
  display: inline;
  float: left;
  width: 100%;
}

#aa-header .aa-header-area .aa-header-left .aa-telephone-no {
  color: #fff;
  float: left;
  font-size: 15px;
}

#aa-header .aa-header-area .aa-header-right {
  display: inline;
  float: left;
  width: 100%;
  text-align: right;
}

/*==================
 NAVBAR SECTION
====================*/

#aa-menu-area {
  left: 0;
  padding-top: 20px;
  position: absolute;
  right: 0;
  top: 35px;
  width: 100%;
  z-index: 99;
}

#aa-menu-area .main-navbar {
  background-color: transparent;
  border: medium none;
  border-radius: 0;
}

#aa-menu-area .main-navbar .navbar-header .navbar-brand {
  padding: 0;
}



#aa-menu-area .main-navbar .navbar-header .aa-logo-img {
  border: none;
  height: 50px;
  width: 235px;
}

#aa-menu-area .main-navbar .navbar-header .aa-logo-img img {
  width: 100%;
  height: 100%;
  border: none !important;
  box-shadow: none !important; 
}


#aa-menu-area .main-navbar .navbar-nav li a {
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-menu-area .main-navbar .navbar-nav .active a,
#aa-menu-area .main-navbar .navbar-nav .open a {
  background-color: #fff; 
  border: none; 
  border-radius: 0; 
  padding: 0; 
}

#aa-menu-area .main-navbar .navbar-right {
  margin-right: -30px;
}

#aa-menu-area .navbar-fixed-top {
  background-color: transparent;
  padding: 1px 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-menu-area .navbar-fixed-top .navbar-header .aa-logo {
  border: none;
  color: #555;
}

#aa-menu-area .navbar-fixed-top .navbar-nav li a {
  color: #555;
}

/*scrol to top*/

.scrollToTop {
  bottom: 60px;
  color: #fff;
  display: none;
  font-size: 23px;
  height: 50px;
  line-height: 45px;
  position: fixed;
  right: 20px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 50px;
  z-index: 999;
}

.scrollToTop:hover,
.scrollToTop:focus {
  background-color: #FFF;
  text-decoration: none;
  outline: none;
}



@-webkit-keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }

  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-moz-keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }

  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }

  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-webkit-keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-moz-keyframes pulse-inner {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    -moz-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/*==================
	SLIDER SECTION
====================*/

#aa-slider {
  float: left;
  display: inline;
  width: 100%;
}

#aa-slider .aa-slider-area {
  display: inline;
  float: left;
  width: 100%;
}

#aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single {
  width: 100%;
  position: relative;
}

#aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
  width: 100%;
  height: 700px;
}

@keyframes slideInOut {
  0% {
    left: -100%; /* Start off the screen on the left */
  }
  50% {
    left: 50%; /* Move to the middle */
  }
  100% {
    left: -100%; /* Move off the screen on the left again */
  }
}


/*==================
	ABOUT US SECTION
====================*/

#aa-about-us {
  display: inline;
  float: left;
  width: 100%;
}

#aa-about-us .aa-about-us-area {
  display: inline;
  float: left;
  width: 100%;
  padding: 60px 0;
}

#aa-about-us .aa-about-us-area .aa-about-us-left {
  display: inline;
  float: left;
  width: 100%;
  border-radius: 35px 0px;
  box-shadow: 0px 0px 51px 5px #00000057;
}

#aa-about-us .aa-about-us-area .aa-about-us-left img {
  width: 100%;
  border-radius: 35px 0px;
}

#aa-about-us .aa-about-us-area .aa-about-us-right {
  display: inline;
  float: left;
  width: 100%;
}

#aa-about-us .aa-about-us-area .aa-about-us-right ul {
  margin-left: 30px;
}

#aa-about-us .aa-about-us-area .aa-about-us-right ul li {
  font-style: italic;
  list-style: circle;
  margin-bottom: 5px;
}

.aa-title {
  display: inline;
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.aa-title p {
  font-size: 18px;
  padding: 0 50px;
}

.aa-title span {
  width: 2px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.aa-title span:before {
  content: '';
  right: 4px;
  top: 4px;
  position: absolute;
  width: 100px;
  height: 2px;
}

.aa-title span:after {
  content: '';
  left: 4px;
  top: 7px;
  position: absolute;
  width: 100px;
  height: 2px;
}

/*==================
 LATEST PROPERTY SECTION
====================*/

#aa-latest-property {
  background-color: #f8f8f8;
  float: left;
  width: 100%;
  padding: 100px 0;
}
.aa-latest-properties-content {
  margin-top: 20px;
  width: 100%;
}


/*==================
 PROJECT SECTION
====================*/
#aa-project {
  overflow: auto; 
  padding: 100px 0 50px;
  margin-bottom: 30px;
}

#aa-project .aa-project-area {
  width: 100%;
}

#aa-project .aa-project-area .aa-project-content {
  display: flex; /* Use flexbox */
  justify-content: center; /* Center the content horizontally */
  padding: 0 15px; /* Add padding to ensure spacing */
}


/*==================
 SERVICE SECTION
====================*/

#aa-service {
 
  width: 100%;
  padding: 100px 0;
}

#aa-service .aa-service-area {
  display: inline;
  float: left;
  width: 100%;
  
}

#aa-service .aa-service-area .aa-service-content {
  display: flex; /* Use flexbox */
  justify-content: center; /* Center the content horizontally */
  width: 100%;
  margin-top: 40px;
  padding: 0 15px; /* Add padding to ensure spacing */
}

.aa-single-service {
  border: 1px solid #ccc;
  margin: 10px; /* Adjust margins to ensure equal spacing */
  padding: 0;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  float: left;
}


/*==================
  CLIENT BRAND SECTION
====================*/
#aa-client-brand {
  background-color: white;
  padding: 50px 20px;
  width: 100%;
}

#aa-client-brand .aa-client-brand-area {
  width: 100%;
}

#aa-client-brand .aa-client-brand-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#aa-client-brand .aa-client-brand-slider li {
  list-style: none;
  margin: 20px;
}

#aa-client-brand .aa-client-single-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;  /* Set a fixed width for uniform size */
  height: 100px;  /* Set a fixed height for uniform size */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: all 0.5s;
}

#aa-client-brand .aa-client-single-brand img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}

#aa-client-brand .aa-client-single-brand:hover {
  opacity: 1;
}




/*==================
  LATEST BLOG SECTION
====================*/

#aa-latest-blog {
  display: inline;
  float: left;
  padding: 100px 0;
  width: 100%;
}

#aa-latest-blog .aa-latest-blog-area {
  display: inline;
  float: left;
  width: 100%;
}

#aa-latest-blog .aa-latest-blog-area .aa-latest-blog-content {
  display: inline;
  float: left;
  margin-top: 50px;
  width: 100%;
}

.aa-blog-single {
  background-color: #f8f8f8;
  display: inline;
  float: left;
  width: 100%;
}

.aa-blog-single .aa-blog-img {
  display: inline;
  float: left;
  position: relative;
  width: 100%;
}

.aa-blog-single .aa-blog-img img {
  max-width: 100%;
}

.aa-blog-single .aa-blog-img .aa-date-tag {
  color: #fff;
  padding: 5px 8px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 15px;
}

.aa-blog-single .aa-blog-single-content {
  display: inline;
  float: left;
  padding: 10px;
  width: 100%;
  padding-bottom: 20px;
}

.aa-blog-single .aa-blog-single-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.aa-blog-single .aa-blog-single-content h3 a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-blog-single .aa-blog-single-content p {
  font-size: 14px;
}

.aa-blog-single .aa-blog-single-bottom {
  border-top: 1px solid #ccc;
  padding: 10px;
  display: inline;
  margin-top: 10px;
  float: left;
  width: 100%;
}

.aa-blog-single .aa-blog-single-bottom .aa-blog-author {
  float: left;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-blog-single .aa-blog-single-bottom .aa-blog-author i {
  margin-right: 5px;
}

.aa-blog-single .aa-blog-single-bottom .aa-blog-comments {
  float: right;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-blog-single .aa-blog-single-bottom .aa-blog-comments i {
  margin-right: 5px;
}

/*==================
  PRIVACY
====================*/

#aa-privacy {
  display: inline;
  float: left;
  padding: 10px 0;
  width: 100%;
}

#aa-privacy .aa-privacy-area {
  display: inline;
  float: left;
  width: 100%;
}

#aa-privacy .aa-privacy-area .aa-privacy-area-content {
  display: inline;
  float: left;
  margin-top: 50px;
  width: 100%;
}




/*==================
 BLOG PAGE
====================*/

#aa-blog {
  display: inline;
  float: left;
  padding: 50px 0 100px;
  width: 100%;
}

#aa-blog .aa-blog-area {
  display: inline;
  float: left;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-content {
  display: inline;
  float: left;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-content .aa-blog-single {
  margin-bottom: 30px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar {
  background-color: #f8f8f8;
  display: inline;
  float: left;
  padding: 20px 20px 30px;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single {
  display: inline;
  float: left;
  margin-top: 20px;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-search {
  display: inline;
  float: left;
  width: 100%;
  position: relative;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-search .aa-search-text {
  border: 1px solid #ccc;
  color: #000;
  display: inline;
  float: left;
  font-size: 16px;
  height: 40px;
  padding: 8px 40px 10px 5px;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-search .aa-search-submit {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #aaa;
  font-size: 18px;
  position: absolute;
  right: 10px;
  top: 7px;
  width: 30px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single ul li {
  margin-bottom: 5px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li {
  border-bottom: 1px solid #ddd;
  display: block;
  margin-bottom: 0;
  padding: 8px 0;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li span {
  float: right;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li ul {
  margin-left: 15px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li ul li {
  border-bottom: none;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud {
  display: inline;
  float: left;
  margin-top: 10px;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud a {
  border: 1px solid #ddd;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 5px 10px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud a:hover,
#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud a:focus {
  color: #fff;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post {
  display: inline;
  float: left;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media {
  margin-top: 20px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-object {
  height: 90px;
  width: 100px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-body .media-heading a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-body p {
  margin-bottom: 5px;
  font-size: 12px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-body span {
  font-size: 14px;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-banner-ads {
  display: inline;
  float: left;
  margin-top: 20px;
  width: 100%;
}

#aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-banner-ads img {
  max-width: 100%;
}

/*==================
 BLOG SINGLE PAGE
====================*/

.aa-blog-details {
  padding: 20px;
}

.aa-blog-details .aa-blog-single-content .aa-blog-single-bottom {
  border: medium none;
  margin-bottom: 15px;
  margin-top: 0;
}

.aa-blog-details .aa-blog-single-content .aa-blog-single-bottom .aa-blog-comments {
  float: left;
  margin-left: 15px;
}

.aa-blog-details .aa-blog-single-content blockquote {
  border-color: #888;
  margin-left: 15px;
  margin-top: 20px;
}

.aa-blog-details .aa-blog-single-content blockquote p {
  font-size: 18px;
  margin-bottom: 0px;
}

.aa-blog-details .aa-blog-single-content blockquote cite {
  font-size: 14px;
}

.aa-blog-post-tag {
  display: inline;
  float: left;
  margin-bottom: 20px;
  width: 100%;
}

.aa-blog-post-tag ul {
  display: inline-block;
}

.aa-blog-post-tag ul li {
  display: inline-block;
}

.aa-blog-post-tag ul li:first-child {
  font-size: 14px;
}

.aa-blog-post-tag ul li a {
  display: inline-block;
  margin-left: 3px;
  font-size: 12px;
}

.aa-blog-content .aa-properties-social {
  margin-top: 0;
}

.aa-blog-related-post {
  display: inline;
  float: left;
  margin-top: 50px;
  width: 100%;
}

.aa-blog-navigation {
  display: inline;
  float: left;
  margin-top: 23px;
  width: 100%;
}

.aa-blog-navigation .aa-blog-pagination-left {
  display: inline;
  float: left;
  text-align: left;
  width: 50%;
}

.aa-blog-navigation .aa-blog-pagination-left .aa-prev {
  border: 1px solid #ddd;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-blog-navigation .aa-blog-pagination-left .aa-prev span {
  margin-right: 10px;
}

.aa-blog-navigation .aa-blog-pagination-right {
  display: inline;
  float: right;
  text-align: right;
  width: 50%;
}

.aa-blog-navigation .aa-blog-pagination-right .aa-next {
  border: 1px solid #ddd;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-blog-navigation .aa-blog-pagination-right .aa-next span {
  margin-left: 10px;
}

.aa-comments-area {
  display: inline;
  float: left;
  width: 100%;
  margin-top: 20px;
}

.aa-comments-area h3 {
  margin-bottom: 20px;
}

.aa-comments-area .comments {
  float: left;
  display: inline;
  width: 100%;
}

.aa-comments-area .comments .commentlist li {
  border-bottom: 1px solid #f8f8f8;
  display: inline;
  float: left;
  margin-bottom: 15px;
  padding: 10px;
  position: relative;
  width: 100%;
}

.aa-comments-area .comments .commentlist li .news-img {
  background-color: #ccc;
  border-radius: 50%;
  height: 90px;
  margin-right: 20px;
  width: 90px;
}

.aa-comments-area .comments .commentlist li .media-body .author-name {
  margin-bottom: 0px;
  margin-top: 0;
}

.aa-comments-area .comments .commentlist li .comments-date {
  color: #888;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.aa-comments-area .comments .commentlist li .reply-btn {
  border-bottom: 1px solid #ccc;
  color: #555;
  display: inline-block;
  font-size: 15px;
  line-height: 13px;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-comments-area .comments .commentlist li .reply-btn:hover,
.aa-comments-area .comments .commentlist li .reply-btn:focus {
  text-decoration: none;
  outline: none;
}

.aa-comments-area .comments .commentlist li .children {
  margin-left: 50px;
}

.aa-comments-area .comments .commentlist li .author-tag {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 4px 6px;
}

.aa-comments-area .comments .commentlist li .author-comments {
  background-color: #f8f8f8;
}

.aa-comments-area .comments .commentlist .children {
  margin-left: 25px;
}

.aa-comments-area .comments .comments-pagination {
  display: inline-block;
  text-align: left;
}

.aa-comments-area .comments .comments-pagination li {
  display: inline-block;
}

.aa-comments-area .comments .comments-pagination li a {
  border: none;
  color: #555;
  display: inline-block;
  font-size: 15px;
  height: 30px;
  line-height: 15px;
  padding: 5px;
  text-align: center;
  width: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.aa-comments-area .comments .comments-pagination li a:hover,
.aa-comments-area .comments .comments-pagination li a:focus {
  background-color: transparent;
  text-decoration: none;
  outline: none;
}

.aa-comments-area .comments .commentlist>li:last-child {
  margin-bottom: 0px;
}

#respond {
  display: inline;
  float: left;
  margin-top: 25px;
  width: 100%;
}

#respond .reply-title {
  font-size: 25px;
  margin-top: 0;
}

#respond .comment-notes {
  font-size: 15px;
  margin-bottom: 25px;
}

#respond .required {
  color: red;
}

#respond label {
  display: block;
}

#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
  border: none;
  border-bottom: 1px solid #ccc;
  color: #555;
  margin-bottom: 10px;
  height: 35px;
  padding: 5px;
  width: 65%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#respond textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  color: #555;
  margin-bottom: 5px;
  padding: 10px;
  height: 100px;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#respond .form-submit input {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  padding: 6px 12px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*==================
 CONTACT PAGE
====================*/

#aa-contact {
  display: inline;
  float: left;
  padding: 50px 0 100px;
  width: 100%;
}

#aa-contact .aa-contact-area {
  display: inline;
  float: left;
  width: 100%;
}

#aa-contact .aa-contact-area .aa-contact-top {
  display: inline;
  float: left;
  width: 100%;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
  display: inline;
  float: left;
  width: 50%;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
  background-color: #555;
  display: inline;
  float: left;
  height: 450px;
  padding: 50px 30px;
  width: 50%;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right h2 {
  color: #fff;
  margin-bottom: 20px;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right p {
  color: #fff;
  line-height: 25px;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list {
  margin-top: 30px;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}

#aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list li i {
  border: 1px solid #ccc;
  margin-right: 10px;
  padding: 5px;
  text-align: center;
  width: 35px;
}

#aa-contact .aa-contact-area .aa-contact-bottom {
  display: inline;
  float: left;
  width: 100%;
  margin-top: 50px;
}

#aa-contact .aa-contact-area .aa-contact-bottom .required {
  color: red;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-title p {
  font-size: 16px;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form {
  display: inline;
  float: left;
  margin-top: 20px;
  width: 100%;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .contactform {
  display: block;
  width: 60%;
  margin: 0 auto;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .reply-title {
  font-size: 25px;
  margin-top: 0;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form label {
  display: block;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form input[type="text"],
#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form input[type="email"],
#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form input[type="url"] {
  border: none;
  border-bottom: 2px solid #ccc;
  color: #555;
  margin-bottom: 10px;
  height: 35px;
  padding: 5px;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form textarea {
  border: none;
  border-bottom: 2px solid #ccc;
  color: #555;
  margin-bottom: 5px;
  padding: 10px;
  height: 100px;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .form-submit input {
  background-color: transparent;
  color: #555;
  border: 2px solid #ccc;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  padding: 6px 12px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*==================
 GALLERY PAGE
====================*/

#aa-gallery {
  display: inline;
  float: left;
  width: 100%;
  padding: 50px 0 100px;
  background-color: #f4f4f4;
}

#aa-gallery .aa-gallery-area {
  display: inline;
  float: left;
  width: 100%;
  background-color:#f4f4f4;
}

#aa-gallery .aa-gallery-area .aa-title p {
  font-size: 16px;
  padding: 0 50px;
}

#aa-gallery .aa-gallery-area .aa-gallery-content {
  display: inline;
  float: left;
  width: 100%;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top {
  display: inline;
  float: left;
  width: 100%;
  margin-top: 50px;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul {
  display: flex;
  text-align: center;
  width: 100%;
  list-style: none;
  
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li {
  border: 1px solid #ddd;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 0 13px;
  padding: 6px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li:hover,
#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li:focus {
  color: #fff;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul .active {
  color: #fff;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body {
  display: inline;
  float: left;
  width: 100%;
  margin-top: 50px;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
  display: inline;
  float: left;
  width: 33.33%;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item {
  display: inline;
  float: left;
  width: 100%;
  position: relative;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item:hover .aa-single-gallery-img img {
  transform: scale(1.3);
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item:hover .aa-single-gallery-info {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transform: scale(1);
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-img {
  display: inline;
  float: left;
  height: 220px;
  overflow: hidden;
  width: 100%;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 20px;
  top: 20px;
  text-align: center;
  padding-top: 70px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  opacity: 0;
  transform: scale(0);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info a {
  border: 2px solid #ccc;
  color: #fff;
  display: inline-block;
  height: 35px;
  line-height: 30px;
  margin: 0 8px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info a:hover,
#aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info a:focus {
  background-color: #fff;
}

#aa-gallery .aa-gallery-area #mixit-container .mix {
  display: none;
}


/* Custom Styles for Gallery */

/* Style for the container */
#aa-gallery {
    background-color: #f4f4f4;
    padding: 50px 0;
}

/* Style for the title */
.aa-title h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Style for the gallery menu */
.aa-gallery-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.aa-gallery-top li {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    color: #333;
}

/* Style for the active filter */
.aa-gallery-top .active {
    color: #ff5733;
    font-weight: bold;
}

/* Style for gallery images */
.aa-single-gallery {
    margin-bottom: 20px;
}

.aa-single-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 2px solid #fff; /* Optional: Add a border around images */
}

/* Style for the lightbox */
.fancybox-slide {
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
}

/* Style for the lightbox navigation arrows */
.fancybox-nav span {
    background-color: #129BCF !important;
    border-radius: 0 !important;
}

/* Style for the lightbox close button */
.fancybox-close {
    background-color: #129BCF !important;
    border-radius: 0 !important;
}

/* Customize as needed */



/*==================
 PROPERTY DETAILS PAGE
====================*/

.aa-properties-details {
  display: inline;
  float: left;
  width: 100%;
}

.aa-properties-details .aa-properties-details-img {
  display: inline;
  float: left;
  width: 100%;
  border-radius: 35px 0px;

}

.aa-properties-details .aa-properties-details-img img {
  height: 500px;
  width: 100%;
  border-radius: 35px 0px;
}

.aa-properties-details .aa-properties-details-img .slick-prev,
.aa-properties-details .aa-properties-details-img .slick-next {
  height: 50px;
  top: 47%;
  width: 50px;
}
/*==================
 ERROR  PAGE
====================*/

#aa-error {
  background-color: #F8F8F8;
  display: inline;
  float: left;
  width: 100%;
  padding: 50px 0;
}

#aa-error .aa-error-area {
  display: inline;
  float: left;
  margin-top: 50px;
  padding: 100px 100px 130px;
  text-align: center;
  width: 100%;
}

#aa-error .aa-error-area h2 {
  display: inline-block;
  font-size: 150px;
  line-height: 150px;
  margin-bottom: 30px;
  padding: 10px 20px;
  text-shadow: 0 2px 2px #ddd;
  position: relative;
}

#aa-error .aa-error-area h2:before {
  content: "";
  height: 128px;
  position: absolute;
  right: 21%;
  top: 19px;
  width: 171px;
}

#aa-error .aa-error-area p {
  font-size: 18px;
}

#aa-error .aa-error-area p span {
  color: #f60000;
  display: inline-block;
  margin-right: 10px;
}

#aa-error .aa-error-area a {
  border: 1px solid #ccc;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-top: 30px;
  padding: 10px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}


/*==================
 FOOTER SECTION
====================*/

#aa-footer {
  background-color: transparent;
  display: inline;
  float: left;
  padding: 10px 0;
  width: 100%;
  
}

#aa-footer .aa-footer-area {
  display: inline;
  float: left;
  width: 100%;
}

#aa-footer .aa-footer-area .aa-footer-left {
  display: inline;
  float: left;
  width: 100%;
}

#aa-footer .aa-footer-area .aa-footer-left p {
  color: #000;
  margin-bottom: 0;
  padding-top: 5px;
}

#aa-footer .aa-footer-area .aa-footer-left p a {
  color: #000;
}

#aa-footer .aa-footer-area .aa-footer-middle {
  display: inline;
  float: left;
  width: 100%;
  text-align: right;
}

#aa-footer .aa-footer-area .aa-footer-middle a {
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  margin: 0 5px;
  padding: 5px;
  text-align: center;
  width: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#aa-footer .aa-footer-area .aa-footer-right {
  display: inline;
  float: left;
  width: 100%;
  text-align: right;
}

#aa-footer .aa-footer-area .aa-footer-right a {
  color: #000;
  display: inline-block;
  padding: 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*==================
 RESPONSIVE DESIGN
====================*/

@media (max-width: 1199px) {
  #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a {
    margin: 10px 2px;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single::after {
    height: 420px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
    width: 45.2%;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li {
    width: 100%;
  }

  .aa-properties-item .aa-properties-item-content .aa-properties-info span {
    margin: 0 3px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img {
    height: 223px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img img {
    height: 100%;
  }

  #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar h3 {
    font-size: 20px;
  }

  #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search span {
    font-size: 14px;
    margin: 0 1px;
  }

  .aa-properties-details .aa-properties-details-img img {
    height: 450px;
  }

  #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
    width: 33.32%;
  }

  #aa-signin .aa-signin-area {
    padding: 8% 20%;
  }

  .pulse {
    left: 46%;
  }

}

@media (max-width: 991px) {
  #aa-menu-area .main-navbar .navbar-nav li a {
    padding-left: 8px;
    padding-right: 8px;
  }

  #aa-advance-search .aa-advance-search-area .aa-advance-search-top .aa-single-advance-search {
    margin-bottom: 10px;
  }

  #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom {
    margin-top: 20px;
  }

  #aa-service .aa-service-area .aa-service-content .aa-single-service {
    margin-bottom: 20px;
    padding: 0 40px;
  }

  #aa-promo-banner .aa-promo-banner-area {
    padding: 0 100px;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
    padding: 0;
  }

  .aa-latest-blog-content {
    margin-top: 10px;
  }

  .aa-latest-blog-content .aa-blog-single {
    margin-top: 40px;
  }

  .aa-blog-single .aa-blog-img img {
    max-width: 100%;
    width: 100%;
  }

  #aa-footer .aa-footer-area .aa-footer-right {
    margin-top: 20px;
    text-align: center;
  }

  #aa-properties {
    padding: 30px 0 50px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
    width: 45.9%;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li {
    width: 100%;
  }

  #aa-properties .aa-properties-sidebar {
    margin-top: 30px;
  }

  #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .media .media-body p {
    font-size: 14px;
  }

  #aa-blog .aa-blog-area .aa-blog-sidebar {
    margin-top: 25px;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
    width: 55%;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
    padding: 22px;
    width: 45%;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list li {
    line-height: 25px;
  }

  #aa-error .aa-error-area {
    padding: 50px 100px 80px;
  }

  .pulse {
    left: 44%;
  }

}

@media (max-width: 767px) {
  .navbar-collapse.in {
    overflow-x: hidden;
    background-color: #ddd;
  }

  .container>.navbar-header,
  .container-fluid>.navbar-header,
  .container>.navbar-collapse,
  .container-fluid>.navbar-collapse {
    margin-bottom: 10px;
  }

  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: #fff;
  }

  .aa-properties-item {
    margin-top: 50px;
  }

  #aa-footer .aa-footer-area .aa-footer-left {
    text-align: center;
  }

  #aa-footer .aa-footer-area .aa-footer-middle {
    margin-top: 20px;
    text-align: center;
  }

  #aa-menu-area .main-navbar .navbar-header .aa-logo {
    font-size: 18px;
    height: 40px;
    margin-left: 10px;
    margin-top: 3px;
    padding: 10px;
  }

  #aa-menu-area .main-navbar .navbar-header .aa-logo-img img {
    margin-left: 15px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
    top: 35%;
  }

  #aa-client-brand .aa-client-brand-area .aa-client-brand-slider {
    margin-left: -25px;
  }

  #aa-promo-banner .aa-promo-banner-area {
    padding: 0 50px;
  }

  #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a {
    min-width: 30px;
    padding: 3px 0;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single {
    padding: 0 90px;
  }

  #aa-menu-area .navbar-fixed-top {
    padding: 15px 0;
    padding-bottom: 0;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
    height: 600px;
  }

  #aa-property-header {
    min-height: 320px;
  }

  #aa-property-header .aa-property-header-inner {
    padding: 100px 0 50px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav {
    margin-left: 0;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
    margin: 0;
    width: 100%;
  }

  .aa-properties-details .aa-properties-details-img img {
    height: 350px;
  }

  .aa-properties-details .aa-properties-info h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .aa-properties-details .aa-properties-info .aa-price {
    font-size: 25px;
  }

  .aa-properties-details .aa-properties-info iframe {
    height: 300px;
    margin-top: 15px;
  }

  #aa-blog {
    padding: 50px 0;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
    width: 50%;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
    width: 50%;
  }

  #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .contactform {
    width: 70%;
  }

  #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li {
    margin: 0px 5px;
  }
}

@media (max-width: 640px) {
  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
    left: 23%;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-catg {
    font-size: 20px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-title {
    font-size: 30px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-price {
    font-size: 25px;
  }

  #aa-about-us .aa-about-us-area .aa-about-us-right {
    margin-top: 20px;
  }

  #aa-menu-area .main-navbar .navbar-header .aa-logo-img {
    height: 45px;
    width: 200px;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
    width: 100%;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left iframe {
    height: 350px;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
    height: auto;
    width: 100%;
  }

  #aa-error .aa-error-area {
    padding: 50px 50px 80px;
  }

  #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
    width: 50%;
  }

  #aa-signin .aa-signin-area {
    padding: 8% 10%;
  }
}

@media (max-width: 480px) {
  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
    left: 25%;
    padding: 10px;
    top: 37%;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-catg {
    font-size: 15px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-title {
    font-size: 20px;
    line-height: 25px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-location {
    font-size: 10px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-price {
    font-size: 18px;
    margin-bottom: 0px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-btn {
    font-size: 14px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .slick-arrow {
    height: 60px;
    width: 60px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .slick-prev::before,
  #aa-slider .aa-slider-area .aa-top-slider .slick-next::before {
    font-size: 40px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-off {
    margin-top: 0;
  }

  .aa-title p {
    font-size: 16px;
    padding: 0px;
  }

  #aa-promo-banner .aa-promo-banner-area {
    padding: 0;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single {
    padding: 0 30px;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
    padding: 0;
    font-size: 16px;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-prev {
    left: 0;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-next {
    right: 0;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single::after {
    left: 27%;
    width: 50%;
  }

  #aa-about-us .aa-about-us-area {
    padding: 50px 0;
  }

  #aa-latest-property {
    padding: 50px 0;
  }

  #aa-service {
    padding: 50px 0;
  }

  #aa-agents {
    padding: 50px 0;
  }

  #aa-client-testimonial {
    padding: 50px 0;
  }

  #aa-latest-blog {
    padding: 50px 0;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
    height: 300px;
  }

  #aa-advance-search .aa-advance-search-area {
    border-radius: 0;
    margin-top: 20px;
  }

  #aa-menu-area .main-navbar .navbar-header .aa-logo-img {
    height: 35px;
    margin-top: 5px;
    width: 150px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img {
    width: 100%;
  }

  #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-content {
    border-top: medium none;
    width: 100%;
  }

  .aa-properties-details .aa-properties-details-img img {
    height: 300px;
  }

  .aa-properties-details .aa-properties-info iframe {
    height: 250px;
  }

  .aa-blog-single .aa-blog-single-content h3 {
    font-size: 18px;
  }

  .aa-blog-details h2 {
    font-size: 25px;
    line-height: 30px;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
    width: 100%;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left iframe {
    height: 300px;
  }

  #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
    height: auto;
    width: 100%;
  }

  #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .contactform {
    width: 100%;
  }

  #aa-error .aa-error-area {
    padding: 30px 30px 60px;
  }

  #aa-error .aa-error-area h2 {
    font-size: 100px;
    line-height: 120px;
    padding: 10px 15px;
  }

  #aa-error .aa-error-area h2::before {
    height: 115px;
    right: 22%;
    top: 10px;
    width: 115px;
  }

  #aa-error .aa-error-area p {
    font-size: 16px;
  }

  #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
    width: 100%;
  }

  #aa-gallery .aa-gallery-area .aa-title p {
    font-size: 15px;
    padding: 0;
  }

  #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li {
    margin: 0 5px 10px;
  }

  #aa-signin .aa-signin-area .aa-signin-form {
    padding: 20px;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-single-field {
    margin-bottom: 10px;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title h4 {
    margin-bottom: 20px;
  }

  .pulse {
    left: 43%;
  }

}

@media (max-width: 360px) {
  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
    left: 20.5%;
  }

  #aa-advance-search .aa-advance-search-area {
    padding: 25px 10px;
  }

  #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search span {
    margin: 0 3px;
  }

  .aa-title h2 {
    font-size: 25px;
  }

  .aa-title p {
    font-size: 14px;
  }

  .aa-title span {
    height: 10px;
  }

  .aa-title span:before {
    height: 2px;
    top: 3px;
  }

  .aa-title span:after {
    height: 2px;
    top: 3px;
  }

  #aa-promo-banner .aa-promo-banner-area h3 {
    font-size: 25px;
  }

  #aa-promo-banner .aa-promo-banner-area p {
    font-size: 14px;
    margin-top: 0;
  }

  #aa-promo-banner .aa-promo-banner-area a {
    margin-top: 40px;
  }

  #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
    font-size: 14px;
  }


  #slick-slide img {
    display: inline-block;
  }

  #aa-latest-blog-area .aa-latest-blog-content {
    margin-top: 0;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
    height: 320px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .slick-prev::before,
  #aa-slider .aa-slider-area .aa-top-slider .slick-next::before {
    font-size: 30px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .slick-arrow {
    height: 40px;
    width: 40px;
  }

  #aa-slider .aa-slider-area .slick-prev,
  #aa-slider .aa-slider-area .slick-next {
    top: 55%;
  }

  #aa-footer .aa-footer-area .aa-footer-right a {
    font-size: 12px;
    padding: 3px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-head {
    padding: 20px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-right {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  #aa-property-header {
    min-height: 230px;
  }

  #aa-property-header .aa-property-header-inner {
    padding: 100px 0 0;
  }

  #aa-property-header .aa-property-header-inner h2 {
    margin-top: 20px;
    font-size: 25px;
  }

  .aa-properties-details .aa-properties-details-img .slick-prev,
  .aa-properties-details .aa-properties-details-img .slick-next {
    height: 40px;
    width: 40px;
  }

  .aa-properties-details .aa-properties-details-img img {
    height: 250px;
  }

  .aa-properties-details .aa-properties-info h2 {
    font-size: 18px;
    line-height: 25px;
  }

  .aa-properties-details .aa-properties-info .aa-price {
    font-size: 22px;
  }

  .aa-properties-details .aa-properties-info iframe {
    height: 200px;
  }

  .comments .media-left,
  .media>.pull-left {
    padding-right: 0;
  }

  .aa-comments-area .comments .commentlist .children {
    margin-left: 10px;
  }

  #respond input[type="text"],
  #respond input[type="email"],
  #respond input[type="url"] {
    width: 100%;
  }

  #aa-contact .aa-contact-area .aa-contact-bottom .aa-title p {
    font-size: 14px;
  }

  #aa-error {
    padding: 20px 0;
  }

  #aa-error .aa-error-area {
    padding: 0px 0 10px;
    margin-top: 20px;
  }

  #aa-signin .aa-signin-area {
    padding: 5% 1%;
  }

  #aa-signin .aa-signin-area .aa-signin-form {
    padding: 15px 10px;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title .aa-property-home {
    font-size: 20px;
    margin-bottom: 0;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title h4 {
    margin-bottom: 15px;
    font-size: 14px;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit p {
    font-size: 12px;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit input[type="submit"] {
    font-size: 15px;
    height: 45px;
    margin-bottom: 15px;
    margin-top: 0;
    padding: 4px 8px;
    width: 140px;
  }

  #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="text"],
  #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="email"],
  #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="password"] {
    height: 30px;
    margin-bottom: 5px;
    padding: 5px;
  }

  .pulse {
    left: 39%;
  }
}

@media (max-width: 320px) {
  #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search span {
    font-size: 12px;
  }

  #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search {
    margin-bottom: 20px;
  }

  .noUi-target {
    margin-top: 15px;
  }

  .aa-properties-item .aa-properties-item-content .aa-properties-info span {
    margin: 0 3px;
  }

  #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
    left: 17%;
  }

  #aa-header .aa-header-area .aa-header-left .aa-telephone-no {
    font-size: 13px;
    margin-top: 3px;
  }

  #aa-header .aa-header-area .aa-header-right .aa-register {
    font-size: 14px;
  }

  #aa-header .aa-header-area .aa-header-right .aa-login {
    font-size: 14px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-head {
    padding: 20px 10px;
  }

  #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-left label {
    font-size: 16px;
    margin-right: 0px;
  }

  .pulse {
    left: 38%;
  }

}
