/*===========================
 =  Table of Contents
 0. Keyframes
 1. General
 1.1. Typography
 1.2. Section spacings
 1.3. Forms
 1.4. Buttons
 1.5. Colors & Badges
 1.6. Modals & Popups
 1.7. Tables
 1.8. Tabs
 2. Header
 3. Footer
 4. Banner
 4.1. Image Banner
 4.2. Video Banner
 4.3. Carousel Banner
 5. Subheader
 6. Shortcodes
 6.0. Loaders
 6.1. Blog Posts
 6.2. Call To Action
 6.3. Images section
 6.4. Icon Box
 6.5. Info Box
 6.6. Testimonials
 6.7 Pricing Plan
 6.8. Timeline
 6.9. Clients
 6.10. Countries
 6.12. House Tour
 7. Misc
 8. Pages
 8.0. Post Single
 8.1. Login and register
 8.2. Listings Archive
 8.3. Listing Details
 8.4. Agent Archive
 8.5. Broker Details
 8.6. Contact Page
 8.7. 404 Page
 8.8 Profiles
 9. Responsive
===========================*/
/* Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap");

/*-------------------------------------------------------------------*/
/* === Keyframes === */
@-webkit-keyframes animateCloud {
  0% {
    margin-left: -100px; }
  100% {
    margin-left: 120%; } }

@keyframes animateCloud {
  0% {
    margin-left: -100px; }
  100% {
    margin-left: 120%; } }

@-webkit-keyframes animateCloudtwo {
  0% {
    right: -140px; }
  100% {
    right: 120%; } }

@keyframes animateCloudtwo {
  0% {
    right: -140px; }
  100% {
    right: 120%; } }

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0); }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0); } }

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}


/*======================
1.0. General
========================*/

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body,
canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed,
fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p,
pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table,
tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video{
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: .25;
}

.opacity-50 {
  opacity: .50;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}
.border-bottom{
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.dark-overlay{
  position: relative;
  z-index: 1;
}

.dark-overlay::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  z-index: -1;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}
.dark-overlay.dark-overlay-2::before{
  background-color: rgba(0,0,0,.6);
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #515151;
  overflow-x: hidden;
}
hr{
  margin: 30px 0;
}
img {
  max-width: 100%;
  height: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.close-btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.close-btn:focus {
  outline: none;
}

.close-btn span {
  position: absolute;
  width: 2px;
  height: 15px;
  display: block;
  background-color: #fff;
  opacity: 0.6;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.close-btn.close-dark span {
  background-color: #1D2228;
}
.close-btn.close-danger span {
  background-color: red;
}

.close-btn span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close-btn:hover span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.close-btn:hover span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.close-btn.dark span {
  background-color: #1D2228;
}

.icon-2x {
  font-size: 2rem;
}

.icon-3x {
  font-size: 3rem;
}

.icon-4x {
  font-size: 4rem;
}

.border-0 {
  border: 0;
}

.bg-cover {
  background-size: cover;
}
.bg-parallax{
  background-attachment: fixed;
}
.bg-contain {
  background-size: contain;
}
.bg-norepeat {
  background-repeat: no-repeat;
}
.bg-center {
  background-position: center;
}
.light-bg{
  background-color: #f7f9fc;
}
.primary-bg{
  background-color: #4766FF;
}

/*======================
1.1. Typography
========================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  font-family: 'Poppins', serif;
  font-weight: 700;
  line-height: 28px;
  color: #1D2228;
}
h1 {
  font-size: 42px;
  line-height: 50px;
}
h2 {
  font-size: 36px;
  line-height: 44px;
}
h3 {
  font-size: 32px;
  line-height: 40px;
}
h4 {
  font-size: 26px;
  line-height: 32px;
}
h5 {
  font-size: 18px;
  font-weight: 600;
}
h6 {
  font-size: 16px;
  font-weight: 600;
}
p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 15px;
  color: #515151;
}
a {
  color: #4766FF;
  text-decoration: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
a:hover,
a:focus {
  color: #3D59E1;
  text-decoration: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}
b,
strong{
  font-weight: 700;
}
label{
  margin-bottom: 10px;
  font-weight: 500;
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
}
ul li,
ol li {
  margin: 10px 0 0;
  position: relative;
}
.ag-list{
  margin-bottom: 20px;
}
.ag-list li{
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
}
.ag-list li:first-child{
  margin-top: 0;
}
.ag-list li::before{
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 28px;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #30ca71;
}
.ag-list-decimal{
  list-style: decimal;
  padding-left: 15px;
}
.small, small{
  line-height: 21px;
}
blockquote {
  background-color: #4766FF;
  position: relative;
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  border-left: 3px solid #4766FF;
  color: #fff;
  font-family: "Poppins", sans-serif;
  border-radius: 3px;
}
blockquote::before{
  content: '\f107';
  font-family: flaticon;
  font-size: 34px;
  color: #fff;
  opacity: .3;
  display: block;
  margin-bottom: 20px;
}
blockquote h5{
  color: #fff;
}
blockquote p{
  margin-bottom: 0;
  color: #fff;
}

.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}

.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
/*======================
1.2 Section Spacings
========================*/
.section {
  position: relative;
  padding: 80px 0;
}
.section.section-padding{
  padding: 80px 0 50px;
}
.section-light{
  background-color: #f8f9fa;
}

.title {
  margin-bottom: 15px;
}
.section-title-wrap.section-header {
  margin-bottom: 50px;
}
.section-title-wrap p {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 16px;
}
.section-title-wrap.text-center p {
  margin: 0 auto 20px;
}
.mb-30{
  margin-bottom: 30px;
}
.mr-lg-30{
  margin-left: 30px;
}

/*==================
1.3. Forms
====================*/
textarea{
  resize: none;
}
.form-control::-webkit-input-placeholder{
  color: #a5a5a5;
}
.form-control::-moz-placeholder{
  color: #a5a5a5;
}
.form-control:-ms-input-placeholder{
  color: #a5a5a5;
}
.form-control::-ms-input-placeholder{
  color: #a5a5a5;
}
.form-control::placeholder{
  color: #a5a5a5;
}
.form-control {
  height: 50px;
  padding: 8px 15px;
  border-radius: 3px;
  border: 1px solid #efefef;
  width: 100%;
  color: #6e6e6e;
  border-color: #e5e1dc;
  background-color: #fff;
  letter-spacing: 0.1px;
  font-size: 15px;
}
.form-control:focus {
  border: 1px solid #efefef;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control.form-control-dark{
  color: #fff;
  border-color: #616161;
  background-color: #3c3c3c;
}
.form-control.form-control-dark:focus{
  border: 1px solid #4e4e4e;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-group{
  margin-bottom: 20px;
}
.input-with-icon{
  position: relative;
}
.input-with-icon input,
.input-with-icon select{
  padding-left: 40px;
}
.input-with-icon i{
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 18px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #a5a5a5;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.input-with-icon input:focus + i,
.input-with-icon select:focus + i{
  color: #454545;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
  background-color: #4766FF;
  border-color: #4766FF;
}
.custom-control label{
  line-height: 23px;
}
.ag-form-notice{
  display: block;
  font-size: 13px;
  line-height: 20px;
  margin-top: 5px;
  color: #848486;
}
.custom-switch .custom-control-input:checked~.custom-control-label::before{
  background-color: #30ca71;
  border-color: #30ca71;
}

/*==================
1.4. Buttons
====================*/
.btn-custom,
.btn-custom-light {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
	background-color: #4766FF;
  line-height: 24px;
  border: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 20px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
  border-radius: 3px;
  z-index: 1;
}
.btn-custom::before{
  content: '';
  width: 0;
  height: 100%;
  background-color: #3D59E1;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: -1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.btn-custom::after{
  content: '';
  width: 0;
  height: 100%;
  background-color: #3D59E1;
  position: absolute;
  top: 0;
  right: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: -1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.btn-custom:hover::before,
.btn-custom:focus::before,
.btn-custom:hover::after,
.btn-custom:focus::after{
  width: 50%;
}
.btn-custom:hover,
.btn-custom:focus{
  color: #fff;
  outline: none;
}
.btn-custom.primary{
  background-color: #4766FF;
}

.btn-custom.primary.light{
  color: #4766FF;
  background-color: #bec9ff;
}
.btn-custom.primary.light i{
  color: #4766FF;
}
.btn-custom.primary.light:hover,
.btn-custom.primary.light:hover i,
.btn-custom.primary.light:focus,
.btn-custom.primary.light:focus i{
  color: #fff;
}
.btn-custom.primary.light::before,
.btn-custom.primary.light::after{
  background-color: #4766FF;
}
.btn-custom-light{
  background-color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-custom-light:hover{
  background-color: #fff;
  border-color: #fff;
}
.btn-custom.danger.light::before,
.btn-custom.danger.light::after{
  background-color: #ff4764;
}
.btn-custom.danger{
  background-color: #ffbfc9;
  color: #ff4764;
}
.btn-custom.danger:hover,
.btn-custom.danger:focus{
  color: #fff;
}

.input-group-append .btn-custom,
.input-group-append .btn-custom::before{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-custom i,
.btn-link i{
	margin-left: 10px;
}

.btn.icon-behind i,
.btn-link.icon-behind i{
	margin-right: 10px;
}
.btn-link{
  font-weight: 600;
  color: #1D2228;
}
.btn-link:hover,
.btn-link:focus{
  color: #3D59E1;
  text-decoration: none;
}

.btn-custom.btn-sm{
  padding: 8px 20px;
  font-size: 12px;
}
input[type="submit"]:disabled, button[type="submit"]:disabled {
  background-color: #e4e3e8;
  border-color: #e4e3e8;
  cursor: not-allowed;
}

/*==================
1.5. Colors & Badges
====================*/
.custom-primary{
  color: #4766FF;
}
.custom-secondary{
  color: #ff6767;
}
.twitter {
  background-color: rgba(44, 170, 225, 0.4);
  color: #2caae1;
}
.twitter:hover{
  background-color: #2caae1;
  color: #fff;
}

.facebook {
  background-color: rgba(59, 87, 157, 0.4);
  color: #3b579d;
}
.facebook:hover{
  background-color: #3b579d;
  color: #fff;
}

.google {
  background-color: rgba(220, 74, 56, 0.4);
  color: #dc4a38;
}
.google:hover{
  background-color: #dc4a38;
  color: #fff;
}

.linkedin{
  background-color: rgba(1, 119, 181, 0.4);
  color: #0177b5;
}
.linkedin:hover{
  background-color: #0177b5;
  color: #fff;
}

.pinterest {
  background-color: rgba(204, 33, 39, 0.4);
  color: #cc2127;
}
.pinterest:hover{
  background-color: #cc2127;
  color: #fff;
}

.youtube{
  background-color: rgba(229, 45, 39, 0.4);
  color: #e52d27;
}
.youtube:hover{
  background-color: #e52d27;
  color: #fff;
}

.github {
  background-color: rgba(51, 51, 51, 0.4);
  color: #333333;
}
.github:hover{
  background-color: #333333;
  color: #fff;
}

.behance {
  background-color: rgba(23, 105, 255, 0.4);
  color: #1769ff;
}
.behance:hover{
  background-color: #1769ff;
  color: #fff;
}

.dribbble {
  background-color: rgba(234, 76, 137, 0.4);
  color: #ea4c89;
}
.dribbble:hover{
  background-color: #ea4c89;
  color: #fff;
}

.reddit{
  background-color: rgba(255, 69, 0, 0.4);
  color: #ff4500;
}
.reddit:hover{
  background-color: #ff4500;
  color: #fff;
}



/* Badges */
[class*='badge-'] {
  position: relative;
  color: #fff;
  font-weight: 400;
  padding: 6px 9px;
  font-size: 13px;
}
.badge.badge-primary {
  background-color: #4766FF;
}
.badge.badge-secondary {
  background-color: #aa66cc;
}
.badge.badge-success {
  background-color: #30ca71;
}
.badge.badge-warning {
  background-color: #fda600;
}
.badge.badge-danger {
  background-color: #ff737b;
}
.badge.badge-info {
  background-color: #5a9ee0;
}

/*======================
1.6 Modals & Popups
========================*/
.modal-content{
  border: 0;
  border-radius: 3px;
}
.modal-header{
  padding: 20px;
  border-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-body{
  padding: 0 20px 20px;
}

/*======================
1.7 Tables
========================*/
table th,
table td {
  padding: 10px;
  vertical-align: middle;
  font-size: 14px;
  border-top: 1px solid rgba(0,0,0,.1);
}
table th{
  font-weight: 600;
  background-color: #f7f9fc;
  font-family: "Poppins", sans-serif;
}
table tr:last-child td,
table tr:last-child th{
  border-bottom: 1px solid rgba(0,0,0,.1);
}
table {
  width: 100%;
  margin-bottom: 30px;
}
table td{
  background-color: #fff;
}
table img{
  width: 40px;
  border-radius: 3px;
}
.table-actions{
  width: 40px;
}
.table-switch{
  width: 80px;
}
.table-actions a{
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  text-align: center;
  margin: 0 2px 0 0;
  border-radius: 3px;
}
.table-actions a:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*======================
1.8 Tabs
========================*/
.tab-content{
  margin-top: 30px;
}
.nav-tabs{
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.nav-item{
  margin: 0;
}
.nav-tabs .nav-item{
  margin-bottom: 0;
}

.nav-tabs .nav-link:hover{
  color: #4766FF;
}
.nav-tabs .nav-link{
  position: relative;
  padding: 0 20px 20px  20px;
  background-color: #fff;
  font-weight: 600;
  margin-right: 10px;
  color: #1D2228;
  border: 0;
}
.nav-tabs .nav-link::before{
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4766FF;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active{
  color: #4766FF;
  background-color: #fff;
}
.nav-tabs .nav-item.show .nav-link::before,
.nav-tabs .nav-link.active::before{
  width: 100%;
}
.tab-content>.tab-pane{
  display: block;
  height: 0;
  overflow: hidden;
}
.tab-content>.active{
  height: auto;
}

/*======================
2. Header
========================*/

.main-header {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 990;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
}

.main-header.header-absolute {
  position: absolute;
}

.navbar {
  padding: 0;
}

.main-header.can-sticky {
  position: fixed;
  top: 0;
  left: 0;
}
.main-header.sticky{
  background-color: #fff;
}

.aside-toggler {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  margin: 20px 0;
  margin-left: 15px;
}

.aside-toggler span {
  display: block;
  margin-bottom: 6px;
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background-color: #1D2228;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.aside-toggler span:last-child{
  margin-bottom: 0;
}
.main-header.header-2 .aside-toggler span{
  background-color: #fff;
}
.aside-toggler:hover span{
  background-color: #4766FF;
}

.navbar-brand {
  width: 150px;
  margin: 0;
  padding: 0;
}

.navbar-nav {
  margin-right: auto;
  margin-left: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar .menu-item {
  position: relative;
  display: inline-block;
  margin: 0;
}

.navbar .menu-item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  color: #1D2228;
  font-weight: 500;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.navbar .navbar-nav > .menu-item:last-child > a{
  padding-right: 0;
}

.navbar .menu-item a.active,
.navbar .menu-item a:hover {
  color: #4766FF;
}

.navbar .menu-item:hover>.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar .menu-item .submenu {
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  z-index: 990;
  border-radius: 0;
}

.navbar .menu-item .submenu.submenu-right {
  left: auto;
  right: 0;
}

.navbar .menu-item .submenu .menu-item {
  display: block;
}
.navbar .menu-item .submenu .menu-item a{
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  font-weight: 400;
  font-size: 14px;
}

.navbar .menu-item .submenu .menu-item a:hover {
  color: #4766FF;
  background-color: #fafafa;
}
.navbar .menu-item > .submenu > .menu-item:last-child > a{
  border-bottom: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.navbar .menu-item > .submenu > .menu-item:first-child > a{
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.navbar .menu-item .submenu .menu-item.menu-item-has-children>a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 28px;
  margin-left: auto;
  font-size: 10px;
}
.navbar .menu-item .submenu .menu-item .submenu {
  left: 100%;
  top: 0;
}
.header-controls,
.header-controls-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-controls-inner{
  margin: 0;
}
.header-controls-inner li{
  margin: 0;
}

.header-controls-inner li.cart-dropdown-wrapper,
.header-controls-inner li.search-dropdown-wrapper{
  padding: 30px 15px;
  position: relative;
  line-height: .9;
}
.header-controls-inner li.cart-dropdown-wrapper i,
.header-controls-inner li.search-dropdown-wrapper i{
  position: relative;
  cursor: pointer;
}
.header-controls-inner li.cart-dropdown-wrapper i::after{
  content: '';
  position: absolute;
  top: 18px;
  left: 9.5px;
  width: 5px;
  height: 5px;
  background-color: #4766FF;
  border-radius: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.header-controls-inner li.search-dropdown-wrapper{
  padding-right: 0;
}
.header-controls-inner li i{
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.navbar-nav.auth-controls{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-nav.auth-controls li:nth-child(2){
  margin: 0;
  color: #fff;
  font-size: 12px;
}

/* Header Style 2 */
.main-header.header-2{
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main-header.header-2 .navbar>.container{
  padding-top: 20px;
}
.main-header.header-2 .navbar .menu-item a{
  padding: 20px;
  color: #fff;
}
.main-header.header-2 .navbar .menu-item:last-child a{
  padding-right: 0;
}
.main-header.header-2 .navbar .menu-item .submenu .menu-item a{
  padding: 10px 20px;
  color: #1D2228;
}
.main-header.header-2 .navbar .menu-item .submenu .menu-item a:hover{
  color: #4766FF;
}

.main-header.header-2.sticky{
  background-color: #fff;
}
.main-header.header-2.sticky .navbar-brand{
  width: 170px;
}
.main-header.header-2.sticky .navbar .menu-item a{
  padding: 30px 20px;
  color: #1D2228;
}
.main-header.header-2.sticky .navbar>.container{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 0;
}

/* Header 3 - FW Header */
.main-header.header-fw .navbar{
  padding: 0 75px;
}
.main-header.header-fw .top-header{
  padding: 10px 75px;
}
.main-header.header-3 .navbar .navbar-nav > .menu-item:last-child > a{
  padding-right: 20px;
}

/* Header 4 */
.main-header.header-4{
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.top-header{
  padding: 10px 0;
  background-color: #1D2228;
}
.top-header-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-header .top-header-inner .social-media li a{
  color: #efefef;
  border: 0;
  width: auto;
  height: auto;
  margin-right: 0;
  padding-right: 30px;
}
.top-header .top-header-inner .social-media li a:hover{
  background-color: transparent;
  color: #fff;
}
.top-header-nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}
.top-header-nav li{
  margin: 0;
}
.top-header-nav li:nth-child(2){
  margin: 0 10px;
  color: #fff;
  font-size: 12px;
}
.top-header-nav li a{
  color: #efefef;
  font-weight: 700;
  font-size: 12px;
}

.top-header-nav li a:hover{
  color: #fff;
}
.top-header-nav li a i{
  margin-right: 5px;
}

/* Aside */
.main-aside {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 270px;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-300px);
      -ms-transform: translateX(-300px);
          transform: translateX(-300px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-aside.open {
  -webkit-transform: translateX(-300px);
      -ms-transform: translateX(-300px);
          transform: translateX(-300px);
}

.main-aside .navbar-brand {
  padding: 10px 15px;
  display: block;
  width: 200px;
  margin: 0;
}
.main-aside ul {
  margin: 0;
}
.main-aside ul .menu-item {
  margin: 0;
}
.main-aside>ul>li>a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-aside ul .menu-item.menu-item-has-children>a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 28px;
  margin-left: auto;
  font-size: 10px;
}

.main-aside ul .menu-item a {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1D2228;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.main-aside ul .menu-item a:hover, .main-aside ul .menu-item a.active {
  color: #4766FF;
}

.main-aside ul .menu-item .submenu {
  display: none;
  background-color: #f7f9fc;
}

.main-aside ul .menu-item .submenu.open {
  display: block;
}

.main-aside ul .menu-item .submenu a {
  font-weight: 400;
}
.main-aside ul .menu-item .submenu .submenu a{
  padding-left: 40px;
}

.main-aside.open+.aside-overlay {
  opacity: 1;
  visibility: visible;
}

.aside-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s;
  display: none;
}

/*======================
3. Footer
========================*/
.ag-footer {
  padding: 80px 0 0;
}
.ag-footer p{
  margin-bottom: 20px;
  color: #515151;
}
.ag-footer a,
.ag-footer i{
  color: #515151;
}
.ag-footer a:hover{
  color: #4766FF;
}
.footer-widget {
  padding-bottom: 80px;
}

.footer-widget .widget-title,
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo{
  width: 180px;
}

.footer-widget ul {
  margin: 0;
}
.footer-widget ul li + li{
  margin: 10px 0 0;
}
.footer-widget ul li a {
  position: relative;
  display: block;
}

.footer-widget ul li a i{
  font-weight: 400;
}
.footer-widget ul.social-media li {
  display: inline-block;
  margin-top: 0;
}
.footer-widget ul.social-media li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  font-size: 18px;
  border: 0;
  background-color: #f7f9fc;
  color: #515151;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-widget ul.social-media li a i{
  color: #515151;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.footer-widget ul.social-media li a:hover{
  background-color: #4766FF;
  border-color: #4766FF;
  color: #fff;
}
.footer-widget ul.social-media li a:hover i{
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.footer-bottom a{
  font-weight: 600;
  color: #515151;
}
.footer-bottom ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer-bottom ul li{
  margin: 0;
}
.footer-bottom ul li a{
  font-weight: 400;
  padding-left: 15px;
}

/* Footer 2 */
.ag-footer.footer-2{
  text-align: center;
}
.ag-footer.footer-2 .social-media{
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ag-footer.footer-2 li:last-child a{
  margin-right: 0;
}
.ag-footer.footer-2 .footer-widget ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ag-footer.footer-2 .footer-widget ul li{
  margin-top: 0;
}
.ag-footer.footer-2 .footer-widget ul li a{
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag-footer.footer-2 .footer-widget ul li a::before{
  content: '\f111';
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  padding: 0 10px;
  line-height: 1;
  font-size: 5px;
}
.ag-footer.footer-2 li:first-child a::before{
  display: none;
}
.ag-footer.footer-2 .footer-widget ul.social-media li a{
  width: 50px;
  height: 50px;
}

/* Dark footer */
.footer-dark{
  background-color: #1D2228;
}
.footer-dark .footer-widget .widget-title{
  color: #fff;
}

.footer-dark p,
.footer-dark .media-body p,
.footer-dark .media-body span,
.footer-dark a,
.footer-dark i{
  color: #cecece;
}
.footer-dark .footer-widget ul.social-media li a{
  background-color: #29313a;
}
.footer-dark ul.social-media li a{
  color: #cecece;
}
.footer-dark ul.social-media li a i{
  color: #cecece;
}

.ag-footer.footer-dark a:hover{
  color: #fff;
}

/*======================
4. Banner
========================*/

.can-sticky + .banner{
  padding: 180px 0 120px;
}
.header-absolute + .banner{
  padding: 280px 0 200px;
}
.banner{
  position: relative;
  padding: 200px 0;
  background-size: cover;
  background-position: center;
}

.banner .title{
  font-size: 42px;
  line-height: 50px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.banner .subtitle{
  color: #848486;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
  max-width: 500px;
}
.banner .banner-text.text-center .subtitle{
  margin: 0 auto 25px;
}

.banner .slick-arrow{
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  border: 2px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1;
  overflow: hidden;
}
.banner .slick-arrow.slider-prev{
  left: 30px;
  right: auto;
}

.banner .slick-arrow:hover{
  background-color: #4766FF;
  border-color: #4766FF;
  color: #fff;
}

.banner .slick-dots{
  margin-top: 30px;
}

.banner-form-wrapper{
  background-color: #fff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 20px 20px 30px;
}
.banner-form-wrapper h4{
  margin-bottom: 5px;
}
.banner-form-wrapper p{
  margin-bottom: 20px;
}
.banner-form-wrapper + .btn-custom,
.banner-form-wrapper + .btn-custom::before{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* 4.1. Image Banner */
.banner.banner-img{
  display: block;
  padding: 0;
  min-height: auto;
}
.banner.banner-img .slick-list,
.banner.banner-img .slick-slide{
  margin: 0;
}
.banner.banner-img .banner-inner{
  max-width: 100%;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 200px 0;
}
.can-sticky + .banner.banner-img .banner-inner{
  padding: 180px 0 120px;
}
.banner.banner-img .banner-inner .container{
  max-width: 700px;
  text-align: center;
}
.banner.banner-img .slick-arrow{
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner.banner-img .slick-dots{
  margin: 0;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* 4.2. Video Banner */
.banner video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

/* 4.3. Carousel Banner */
.banner.banner-carousel .title{
  font-size: 34px;
  line-height: 42px;
}
.banner.banner-carousel .subtitle{
  font-size: 16px;
}
.banner.banner-carousel .banner-inner{
  min-height: auto;
}
.banner.banner-carousel .banner-inner .container{
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.banner.banner-carousel .slick-current .banner-inner.dark-overlay::before{
  background-color: rgba(0,0,0,.6);
}

.banner.banner-carousel .slick-current .banner-inner .container{
  opacity: 1;
  visibility: visible;
}
/*======================
5. Subheader
========================*/
.can-sticky + .subheader{
  padding: 180px 0 70px;
}
.subheader{
  padding: 120px 0;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  margin: 0;
}
.breadcrumb-item.active{
  color: #fff;
}
.breadcrumb li a {
  font-weight: 500;
  color: #fff;
}
.breadcrumb li a:hover{
  color: #4766FF;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* Style 2 */
.subheader.subheader-2{
  position: relative;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 1;
}
.subheader.subheader-2::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-linear-gradient(bottom, rgba(0,0,0,.7), transparent);
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.7)), to(transparent));
  background-image: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  z-index: -1;
}

.subheader.subheader-2 .post-categories{
  margin-top: 20px;
}
.subheader.subheader-2 h1{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  margin-top: 20px;
}
.subheader.subheader-2 h1 .small-data{
  color: #30ca71;
}
.subheader.subheader-2 .breadcrumb{
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.subheader.subheader-2 .post-meta{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 0;
}

.subheader.subheader-2 .post-meta span{
  color: #fff;
  margin-right: 10px;
  font-size: 13px;
}
.subheader.subheader-2 .post-meta > span{
  margin-right: 0;
}
.subheader.subheader-2 .post-meta span i{
  margin-right: 10px;
}
/*======================
6. Shortcodes
========================*/

/* 6.0. Loaders */

/* 6.1. Blog Posts */
.post{
  position: relative;
  margin-bottom: 30px;
  border-radius: 3px;
  z-index: 1;
}
.post .post-thumbnail,
.post .post-thumbnail img{
  border-radius: 3px;
}
.post .post-thumbnail img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post .post-body{
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 3px;
  background-color: #fff;
}
.post .post-body p{
  margin-bottom: 20px;
}
.post .post-body .post-title a{
  color: #1D2228;
}
.post .post-body .post-title a:hover{
  color: #4766FF;
}
.post .post-body .post-meta{
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.1);
  color: #848486;
  font-size: 13px;
  width: 100%;
}
.post.post-has-thumbnail .post-body,
.post.post-format-quote .post-body{
  background-color: transparent;
}
.post.post-has-thumbnail .post-body .post-meta{
  border-top: 1px solid rgba(255,255,255,.3);
}
.post .post-body .post-meta i{
  margin-right: 10px;
}
.post .post-body .post-date{
  color: #4766FF;
  font-weight: 500;
}
.post.post-has-thumbnail .post-thumbnail{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.8);
  border: 0;
  z-index: -1;
}
.post.post-has-thumbnail .post-body::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.6);
  border-radius: 3px;
  z-index: -1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.post.post-has-thumbnail .post-body:hover::before{
  background-color: rgba(0,0,0,.8);
}
.post.post-has-thumbnail .post-body .post-title a{
  color: #fff;
}
.post.post-has-thumbnail .post-body p{
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.post.post-has-thumbnail .post-body .post-meta,
.post.post-has-thumbnail .post-body .post-date{
  color: rgba(255,255,255,.8);
}

/* List View */
.post.post-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 3px;
  background-color: #fff;
}
.post.post-list.post-has-thumbnail .post-thumbnail{
  position: relative;
  z-index: 0;
  width: 300px;
  margin-right: 20px;
}
.post.post-list.post-has-thumbnail .post-body{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post.post-list.post-has-thumbnail .post-body::before{
  display: none;
}
.post.post-list .post-body{
  width: 100%;
  padding: 0;
  border: 0;
}
.post.post-list .post-body .post-meta{
  border-top: 1px solid rgba(0,0,0,.1);
  margin-top: 20px;
}
.post.post-list.post-has-thumbnail .post-body p,
.post.post-list.post-has-thumbnail .post-body,
.post.post-list.post-has-thumbnail .post-body .post-meta{
  color: #515151;
}
.post.post-list.post-has-thumbnail .post-body .post-title a{
  color: #1D2228;
}
.post.post-list.post-has-thumbnail .post-body .post-title a:hover,
.post.post-list.post-has-thumbnail .post-body .post-date{
  color: #4766FF;
}

.post.post-list.post-format-quote .post-body::before{
  position: relative;
  margin-bottom: 20px;
}
.post.post-list.post-format-quote .post-body p{
  max-width: 700px;
  margin: 0 auto;
}

/* Post format quote */
.post.post-format-quote,
.post.post-list .post-format-quote{
  background-color: #4766FF;
  text-align: center;
}
.post.post-format-quote .post-body{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post.post-format-quote .post-body::before{
  content: '\f106';
  font-family: flaticon;
  position: absolute;
  left: 20px;
  font-size: 34px;
  color: #fff;
  opacity: .3;
}
.post.post-format-quote .post-body p{
  margin: 0;
  color: #fff;
}
.post.post-format-quote .post-body h5{
  color: #fff;
}

/* 6.2. Call to action (Footer) */
.ag-footer-cta{
  background-color: #4766FF;
  overflow: hidden;
}

.ag-footer-cta-text h2,
.ag-footer-cta-text p{
  color: #fff;
}
.ag-footer-cta-text p{
  max-width: 450px;
  margin-bottom: 20px;
}
.building-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 96px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .2;
}

.cloud-one {
  position: absolute;
  margin-left: 85px;
  top: 200px;
  height: 36px;
  width: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: animateCloud 10s linear infinite;
  animation: animateCloud 10s linear infinite;
  opacity: .2;
}

.cloud-two {
  position: absolute;
  margin-left: 200px;
  top: 60px;
  height: 29px;
  width: 80px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: animateCloudtwo 20s linear infinite;
  animation: animateCloudtwo 20s linear infinite;
  opacity: .2;
}

.cloud-three {
  position: absolute;
  margin-right: 180px;
  top: 60px;
  height: 35px;
  width: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: animateCloud 30s linear infinite;
  animation: animateCloud 20s linear infinite;
  opacity: .2;
}

.cloud-four {
  position: absolute;
  top: 200px;
  height: 35px;
  width: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: animateCloud 40s linear infinite;
  animation: animateCloud 40s linear infinite;
  opacity: .2;
}

.cloud-five {
  position: absolute;
  margin-right: 130px;
  bottom: 170px;
  height: 35px;
  width: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: animateCloud 50s linear infinite;
  animation: animateCloud 50s linear infinite;
  opacity: .2;
}

/* 6.3. Images section */
.ag-images-section img{
  border-radius: 3px;
}

/* 6.4. Icon Box */
.icon-box{
  margin-bottom: 30px;
}
.icon-box i{
  display: inline-block;
  font-size: 34px;
  margin-bottom: 20px;
}
.icon-box h6{
  margin: 0;
}
.icon-box.ag-infographic-item{
  text-align: center;
}
.icon-box.ag-infographic-item,
.icon-box.ag-infographic-item h4{
  color: #fff;
}
.icon-box.ag-infographic-item h4{
  margin-bottom: 10px;
}

/* Style 2 */
.icon-box.icon-box-2{
  padding: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.1);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  text-align: center;
}
.icon-box.icon-box-2 h6{
  font-weight: 400;
}
.icon-box.icon-box-2 span{
  display: block;
  font-weight: 700;
  color: #1D2228;
  font-size: 26px;
  margin-bottom: 10px;
}
.icon-box.icon-box-2:hover{
  -webkit-box-shadow: 0 3px 14px rgba(0,0,0,.1);
          box-shadow: 0 3px 14px rgba(0,0,0,.1);
}

/* 6.5. Info Box */
.ag-info-box{
  display: block;
  background-color: #bec9ff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}
.ag-info-box .ag-info-box-icon{
  width: 100%;
  height: 100%;
  border-radius: 8px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.ag-info-box .ag-info-box-icon i{
  font-size: 40px;
  line-height: 1;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #4766FF;
}
.ag-info-box h5{
  margin-bottom: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.ag-info-box span{
  font-weight: 600;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/* 6.6. Testimonials */
.ag-testimonial{
  margin-bottom: 30px;
}
.ag-testimonial-body{
  position: relative;
  border-radius: 3px;
  background-color: #f7f9fc;
  padding: 20px;
}
.ag-testimonial-body::before{
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f7f9fc;
}
.ag-testimonial-body p{
  margin-bottom: 0;
}
.ag-testimonial-body h5{
  margin-bottom: 0;
}
.ag-testimonial-author{
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag-testimonial-author img{
  width: 80px;
  border-radius: 3px;
  margin-right: 15px;
}
.ag-testimonial-author-inner{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ag-testimonial-author-inner h6{
  margin-bottom: 0;
}
.ag-testimonial-author-inner span{
  line-height: 20px;
  font-size: 13px;
  color: #848486;
}

/* Style 2 */
.ag-testimonial.slick-slide{
  margin: 0 15px 30px;
}

/* 6.7. Pricing Plans */

.ag-pricing-plan{
  padding: 20px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  margin-bottom: 30px;
  background-color: #fff;
}
.ag-pricing-plan:hover{
  -webkit-box-shadow: 0 3px 12px rgba(0,0,0,.1);
          box-shadow: 0 3px 12px rgba(0,0,0,.1);
}
.ag-pricing-plan-header{
  margin-bottom: 20px;
}
.ag-pricing-plan-header h5{
  margin-bottom: 5px;
}
.ag-pricing-plan-header span{
  font-weight: 500;
}
.ag-pricing-plan-body{
  margin-bottom: 20px;
}
.ag-pricing-plan-body ul{
  margin: 0;
}

/* 6.8. Timeline */

.timeline{
  position: relative;
}
.timeline{
  padding-left: 40px;
}
.timeline h6{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 20px;
}
.timeline h6 span{
  font-size: 13px;
  color: #848486;
  font-weight: 400;
}
.timeline::before{
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 1px;
  height: 100%;
  background-color: #eee;
}
.timeline li{
  position: relative;
  margin-bottom: 20px;
}

.timeline li::before{
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 20px;
  height: 20px;
  background-color: #eee;
  border-radius: 50%;
}
.jbr-tagline span{
  font-weight: 400;
  font-size: 14px;
}
.timeline li.current::before{
  background-color: #4766FF;
}

/* 6.9. Clients */
.ag-client-item{
  text-align: center;
  margin-bottom: 30px;
}

/* 6.10. Countries */
.ag-country-item{
  position: relative;
  margin-bottom: 30px;
}
.ag-country-item .ag-country-thumb,
.ag-country-item .ag-country-thumb img{
  border-radius: 3px;
}
.ag-country-item .ag-country-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0,0,0,.6);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding: 20px;
}
.ag-country-item:hover .ag-country-content{
  background-color: rgba(0,0,0,.7);
}
.ag-country-item .ag-country-content h6,
.ag-country-item .ag-country-content h4{
  color: #fff;
}
.ag-country-item .ag-country-content h6{
  margin-bottom: 0;
}
.ag-country-item .ag-country-content h4{
  margin-bottom: 10px;
}
.ag-country-item .ag-country-content span{
  display: block;
  color: #fff;
}
.ag-country-item.ag-country-item-lg .ag-country-content{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* 6.11. Gallery */
.gallery-container img{
  border-radius: 3px;
  margin-bottom: 30px;
}
.gallery-filter{
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.gallery-filter a {
  margin-right: 10px;
  padding: 5px 10px;
  min-width: 100px;
  text-align: center;
  border-radius: 3px;
  font-weight: 500;
  color: #1D2228;
}
.gallery-filter a:hover{
  color: #4766FF;
}
.gallery-filter a.active{
  background-color: #bec9ff;
  color: #4766FF;
}

/* 6.12. House Tour */

.ag-house-tour{
  height: 600px;
}
.ag-house-tour iframe{
  width: 100%;
  height: 100%;
}

/*======================
7. Misc
========================*/
.ag-home-map .ag-listing-map-wrapper{
  height: 400px;
}

.slick-list{
  margin: 0 -15px;
}
.slick-slide{
  outline: none;
  margin: 0 15px;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow{
  border: 1px solid rgba(0,0,0,.1);
}

/* Dots */
.slick-dots{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.slick-dots li{
  margin: 0 5px;
  text-align: center;
}
.slick-dots li button{
  font-size: 0;
  width: 12px;
  height: 4px;
  background-color: #fff;
  border: 0;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}
.slick-dots li.slick-active button{
  width: 20px;
  background-color: #4766FF;
}
.slick-slide{
  outline: none;
}

/* Dropzone */
.dropzone{
  border: 1px dashed rgba(0,0,0,.1);
}
.dropzone i{
  font-size: 28px;
  color: #848486;
}
.dropzone .dropzone-msg-title{
  margin: 20px 0 5px;
  color: #848486;
}
.dropzone .dropzone-msg-desc{
  color: #848486;
  margin: 0;
}

/* Arrows */
.ag-arrows{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ag-arrows .slick-arrow{
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  border: 2px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1;
  overflow: hidden;
}
.ag-arrows .slick-arrow::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #4766FF;
  z-index: -1;
  border-radius: 3px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.ag-arrows .slick-arrow:hover{
  -webkit-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s;
  background-color: #4766FF;
  border-color: #4766FF;
  color: #fff;
}
.ag-arrows .slick-arrow:hover::after{
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.ag-arrows.ag-arrows-relative{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ag-arrows.ag-arrows-relative .slick-arrow{
  border: 2px solid #bec9ff;
  color: #4766FF;
  margin: 0 10px;
  background-color: #bec9ff;
}
.ag-arrows.ag-arrows-relative .slick-arrow:hover{
  border-color: #4766FF;
  color: #fff;
}

/* Filter */
.ag-filter{
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ag-filter-sticky{
  z-index: 998;
  background-color: #fff;
  width: 100%;
}
.ag-filter-sticky.sticky{
  position: fixed;
  top: 0;
  left: 0;
}
.ag-filter-form{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.ag-filter-label,
.ag-filter-value{
  display: block;
}
.ag-filter-label{
  font-size: 13px;
  line-height: 20px;
  color: #848486;
  font-weight: 500;
}
.ag-filter-value{
  font-weight: 700;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
.ag-filter-item{
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  padding: 20px;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-left: 1px solid rgba(0,0,0,.1);
}
.ag-filter-item:hover{
  background-color: #f8f9fa;
}
.ag-filter-item.filter-item-fw{
  position: static;
}
.ag-filter-item .btn-custom{
  width: 100%;
  height: 100%;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.ag-filter-submit{
  padding: 0;
}

.ag-filter-dropdown-wrap{
  position: absolute;
  bottom: 110%;
  left: 0;
  width: 100%;
  z-index: 800;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.1);
          box-shadow: 0 2px 12px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.ag-filter-item:hover .ag-filter-dropdown-wrap{
  opacity: 1;
  visibility: visible;
  bottom: 100%;
}
.ag-filter-top.ag-filter{
  border-bottom: 0;
}
.ag-filter-border.ag-filter{
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ag-filter-border.ag-filter .ag-filter-item:last-child{
  border-right: 1px solid rgba(0,0,0,.1);
}
.ag-filter-top .ag-filter-dropdown-wrap{
  bottom: auto;
  top: 110%;
}
.ag-filter-top .ag-filter-item:hover .ag-filter-dropdown-wrap{
  bottom: auto;
  top: 100%;
}
.ag-filter-dropdown-wrap .custom-control-label{
  color: #515151;
}
.ag-filter-dropdown-wrap ul{
  padding: 0;
  margin: 0;
}
.ag-filter-dropdown-wrap ul li{
  position: relative;
  padding: 10px;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.ag-filter-dropdown-wrap ul li:hover{
  color: #4766FF;
}
.ag-filter-dropdown-wrap ul li.active{
  background-color: #4766FF;
  color: #fff;
}
.filter-item-fw .ag-filter-dropdown-wrap ul li{
  cursor: default;
}
.filter-item-fw .form-control{
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.ag-filter-search-field{
  padding: 10px 10px 0;
}

/* pagination */
.pagination{
  margin-top: 50px;
  margin-bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page-item{
  margin: 0;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link,
.pagination .page-item .page-link{
  border-radius: 3px;
}

.pagination .page-link{
  color: #848486;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  margin-left: 15px;
}
.pagination .page-item.active .page-link{
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
  color: #4766FF;
}
.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus{
  color: #4766FF;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ag-slider-arrows{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
}
.ag-slider-arrows i{
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 15px;
  border-radius: .25rem;
  cursor: pointer;
  background-color: #4766FF;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.tooltip{
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}
.media{
  margin-bottom: 10px;
}
.media > a{
  margin-right: 15px;
}
.media img{
  margin-right: 15px;
  border-radius: 3px;
}
.media i{
  margin-right: 15px;
  line-height: 24px;
}
.media-body h6{
  line-height: 24px;
}
.media-body h6 a{
  color: #1D2228;
}
.media-body h6 a:hover{
  color: #4766FF;
}
.media-body h6,
.media-body h5{
  margin-bottom: 5px;
}
.media-body p,
.media-body span{
  margin-bottom: 0;
  color: #848486;
  font-size: 13px;
  line-height: 21px;
}

/* Accordion */
.accordion .card {
  margin-bottom: 0;
}
.accordion .card .card-header {
  position: relative;
  background-color: #fff;
  border-bottom: 0;
  padding: .75rem 1.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  font-weight: 700;
  color: #1D2228;
}

.accordion .card-header[aria-expanded="true"] {
  background-color: #f8f9fa;
  color: #1D2228;
}

.accordion .card-header::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1.25rem;
  width: 10px;
  height: 2px;
  background-color: #848486;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.accordion .card-header::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1.25rem;
  width: 10px;
  height: 2px;
  background-color: #848486;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion .card-header[aria-expanded="true"]::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  opacity: 0;
}

.accordion .card-header[aria-expanded="true"]::after, .accordion .card-header[aria-expanded="true"]::before {
  background-color: #1D2228;
}

.accordion .card-header i {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 10px;
  font-size: 20px;
}

.accordion .card-header[aria-expanded="true"] i {
  color: #4766FF;
}

.accordion .card {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion.with-gap .card-header {
  border-radius: 3px 3px;
}

.accordion.with-gap .card {
  margin-bottom: 20px;
}
.accordion.with-gap .card:first-of-type, .accordion.with-gap .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Rating */
.ag-rating-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag-rating-wrapper > span{
  margin-left: 10px;
  color: #848486;
  font-size: 13px;
}
.ag-rating{
  margin-bottom: 5px;
}
.ag-rating i{
  margin-right: 5px;
  font-size: 12px;
  color: #848486;
}
.ag-rating i.active{
  color: #ffa80a;
}

/*======================
8. Pages
========================*/

/* 8.0. Post Single */
.post-single {
  margin-bottom: 50px;
  border: 1px solid rgba(0,0,0,.1);
  padding: 20px 20px 0;
  border-radius: 3px;
}
.post-single .post-categories{
  margin-bottom: 15px;
}
.post-single .post-meta{
  margin-bottom: 20px;
}
.post-single .post-meta span,
.post-single .post-meta span i{
  margin-right: 10px;
  font-size: 13px;
  color: #848486;
}
.post-single .post-thumbnail{
  position: relative;
}
.post-single .post-thumbnail img {
  border-radius: 3px;
  margin-bottom: 20px;
}
.post-single .media {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.post-single .media img {
  width: 50px;
  border-radius: 50%;
}
.post-single .media p {
  margin-bottom: 0;
}
.post-single .title {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
.post-content blockquote p{
  margin: 0;
}
.post-content img{
  border-radius: 3px;
}
.post-content p,
.post-content img{
  margin-bottom: 20px;
}

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.social-media li{
  margin: 0;
}

.social-media a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #1D2228;
  color: #1D2228;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social-media a:hover {
  background-color: #4766FF;
  border-color: #4766FF;
  color: #fff;
}
.social-media li a i{
  margin: 0;
}
.comment-area{
  padding: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.1);
}
.comments-list {
  margin-bottom: 50px;
}
.comments-list ul{
  margin: 0;
}
.comments-list h4 {
  margin-bottom: 30px;
}
.comments-list .comment-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.comments-list .comment-item ul{
  -webkit-box-flex: 0;
      -ms-flex: 0 100%;
          flex: 0 100%;
  padding-left: 85px;
}
.comments-list .comment-item ul li{
  margin-top: 30px;
}
.comments-list .comment-item .comment-body{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.comments-list .comment-item img {
  width: 65px;
  margin-right: 20px;
  border-radius: 3px;
}
.comments-list .comment-item h5 {
  margin-bottom: 15px;
  font-weight: 600;
}
.comments-list .comment-item span {
  display: inline-block;
  margin-bottom: 15px;
  color: #848486;
  font-size: 13px;
  line-height: 21px;
  position: absolute;
  top: 4px;
  right: 0;
}
.comments-list .comment-item p {
  margin-bottom: 15px;
 }
.comments-list li {
  margin-bottom: 30px;
 }
.comments-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.comment-form h4 {
  margin-bottom: 30px;
}
.reply-link{
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  margin: 0;
  border-radius: 3px;
}
.reply-link:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* 6.4.1. Sidebar */
.sidebar-widget + .sidebar-widget{
  margin-top: 50px;
}
.sidebar-widget{
  padding: 20px;
  border: 1px solid rgba(0,0,0,.1);
}

.sidebar-widget p{
  margin-bottom: 20px;
}
.sidebar-widget h5{
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}

.sidebar-widget .sidebar-post{
  margin-bottom: 30px;
}
.sidebar-widget .sidebar-post .price{
  display: block;
  margin: 10px 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: #4766FF;
}
.sidebar-widget .sidebar-post .ag-listing-status{
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 15px;
}
.sidebar-widget .sidebar-post-controls{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sidebar-widget .sidebar-post-controls a{
  font-size: 13px;
  font-weight: 500;
}
.sidebar-widget .sidebar-post-controls a i{
  margin-right: 5px;
}
.sidebar-widget .sidebar-post:last-child{
  margin-bottom: 0;
}
.sidebar-widget .sidebar-post > a{
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.sidebar-widget .sidebar-post img{
  width: 100%;
  border-radius: 3px;
}
.sidebar-widget .sidebar-post h6 a{
  color: #1D2228;
}
.sidebar-widget .sidebar-post h6 a:hover{
  color: #4766FF;
}
.tags a{
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  margin: 2px 2px 2px 0;
  border-radius: 3px;
}
.tags a:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.sidebar-widget .media.sidebar-author{
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-widget .media.sidebar-author > a{
  width: 80px;
}
.sidebar-widget .media.sidebar-author span{
  display: block;
}
.sidebar-widget .media.sidebar-author + .btn-custom{
  margin: 10px 0 30px;
}
.sidebar-widget .media.sidebar-author.listing-agent{
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sidebar-widget .media.sidebar-author.listing-agent i{
  position: absolute;
  top: 0;
  right: 0;
  color: #47bfff;
  margin: 0;
}
.sidebar-widget .media.sidebar-author.listing-agent .listing-agent-badge,
.listing-agent-badge{
  margin-top: 10px;
  display: inline-block;
  padding: 3px 6px;
  background-color: #47bfff;
  border-radius: 3px;
  color: #fff;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 21px;
}
.post-meta-sidebar .tags{
  margin-bottom: 30px;
}
.post-meta-sidebar form{
  margin-bottom: 30px;
}
.ag-share-post ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.ag-share-post ul li a{
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 5px;
}
.sidebar-widget.sidebar-list ul{
  margin: 0;
}
.sidebar-widget.sidebar-list ul li{
  margin-top: 0;
}
.sidebar-widget.sidebar-list ul li:first-child a{
  border-top: 0;
  padding-top: 0;
}
.sidebar-widget.sidebar-list ul li:last-child a{
  padding-bottom: 0;
}
.sidebar-widget.sidebar-list ul li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  color: #1D2228;
}
.sidebar-widget.sidebar-list ul li a i{
  font-size: 12px;
  margin-left: auto;
}
.sidebar-widget.sidebar-list ul li a span{
  margin-left: 5px;
  color: #848486;
  font-size: 13px;
}
.sidebar-widget.sidebar-list ul li a:hover{
  color: #4766FF;
}
.sidebar-author-personal{
  margin: 30px 0;
}
.sidebar-author-personal ul{
  margin-bottom: 0;
}
.sidebar-author-personal ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 21px;
}
.sidebar-author-personal ul li span{
  margin-left: auto;
  color: #848486;
}
.sidebar-author-personal ul li a{
  color: #515151;
}
.sidebar-author-personal ul li a:hover{
  color: #4766FF;
}
.sidebar-author-personal ul li i{
  width: 25px;
}

/* 8.1. Login & Register */
.modal-body .auth-controls{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.auth-seperator{
  margin: 30px 0;
  text-align: center;
}
.auth-seperator span{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #848486;
  font-size: 13px;
  font-weight: 500;
}
.auth-seperator span::before{
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(0,0,0,.1);
  height: 1px;
  margin-right: 20px;
}
.auth-seperator span::after{
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(0,0,0,.1);
  height: 1px;
  margin-left: 20px;
}
.ag-social-login{
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 24px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.ag-social-login:last-child{
  margin-bottom: 0;
}
.ag-social-login i{
  margin-right: 10px;
}

/* 8.2. Listings Archive */
.ag-listings-scroll{
  max-height: 700px;
  overflow-y: auto;
}
.leaflet-popup-content-wrapper{
  border-radius: 3px !important;
}
.ag-property-listing{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  padding: 10px;
}
.ag-property-listing .ag-property-thumb{
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: #f9f9f9;
  position: relative;
  margin-right: 15px;
}
.ag-property-listing img{
  width: 100%;
  border-radius: 3px;
}
.ag-property-listing .body h5{
  margin-bottom: 5px;
}
.ag-property-listing .body h5 a{
  color: #1D2228;
}
.ag-property-listing .body h5 a:hover{
  color: #4766FF;
}
.ag-property-listing span{
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #848486;
}
.ag-listings-outter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ag-listing-map-wrapper{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ag-listing-map{
  height: 100%;
}
.ag-listings-inner{
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 700px;
          flex: 0 700px;
  width: 700px;
}
.ag-listings-outter.fullwidth .ag-listings-inner{
  -webkit-box-flex: 0;
      -ms-flex: 0 100%;
          flex: 0 100%;
}
.ag-listing-compare-trigger{
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,.1);
  text-align: center;
  display: none;
}
.ag-listing-compare-trigger.active{
  display: block;
}
.ag-listings-scroll{
  padding: 20px;
}
.ag-listing{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.ag-listing + .pagination{
  margin-top: 30px;
}
.ag-listing:last-child{
  margin-bottom: 0;
}
.ag-listing .ag-listing-thumb{
  -webkit-box-flex: 0;
      -ms-flex: 0 150px;
          flex: 0 150px;
  width: 150px;
  margin-right: 15px;
}
.ag-listing .ag-listing-thumb a{
  display: block;
}
.ag-listing .ag-listing-thumb a,
.ag-listing .ag-listing-thumb img{
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.ag-listing .ag-listing-thumb .ag-listing-price{
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  font-size: 16px;
  padding: 3px 0;
}
.ag-listing .ag-listing-controls{
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ag-listing .ag-listing-controls a{
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  margin: 0 2px 0 0;
  border-radius: 3px;
}
.ag-listing .ag-listing-controls a:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ag-listing .ag-listing-content{
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ag-listing .ag-listing-content .ag-listing-status{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.ag-listing-status{
  padding: 3px 6px;
  line-height: 20px;
  font-size: 13px;
  border-radius: 3px;
  background-color: #30ca71;
  color: #fff;
}
.ag-listing-status.Available{
  background-color: #30ca71;
  color: #fff;
}
.ag-listing-status.In{
  background-color: #a4bf49;
  color: #fff;
}
.ag-listing-status.Sold{
  background-color: red;
  color: white;
}
.ag-listing .ag-listing-title{
  margin-bottom: 10px;
  margin-right: 100px;
}
.ag-listing .ag-listing-title a{
  color: #1D2228;
}
.ag-listing .ag-listing-title a:hover{
  color: #4766FF;
}
.ag-listing .ag-listing-meta{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ag-listing .ag-listing-meta span{
  color: #848486;
  font-size: 13px;
  margin-bottom: 5px;
  margin-right: 10px;
}
.ag-listing .ag-listing-meta span i{
  margin-right: 5px;
}
.ag-listing .ag-listing-meta span.ag-listing-address{
  display: block;
  margin-right: 0;
}
.ag-listing .ag-listing-date,
.ag-listing .ag-listing-author{
  font-size: 13px;
  color: #848486;
}
.ag-listing .ag-listing-author a{
  font-weight: 500;
}
.ag-listing .ag-listing-controls a.favorite-listing.active{
  color: #ff4764;
  border-color: #ff4764;
}
.ag-listing .ag-listing-controls a.compare-listing.active{
  color: #4766FF;
  border-color: #4766FF;
}

.ag-listings-controls-wrap{
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ag-listings-controls-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ag-listings-controls-wrap > a{
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  border-radius: 3px;
}
.ag-listings-controls-wrap > a:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ag-listings-controls-wrap .form-control{
  height: 35px;
  margin-right: 20px;
}
.ag-listing-btn-controls button{
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  margin: 2px 2px 2px 0;
  border-radius: 3px;
  outline: none;
}
.ag-listing-btn-controls button:hover,
.ag-listing-btn-controls button:focus{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.ag-listing-filters-wrap{
  display: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ag-listing-filters-wrap .ag-filter-item:last-child{
  border-right: 1px solid rgba(0,0,0,.1);
}

/* List View */
.listings-list .ag-listing{
  padding: 20px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 3px;
}
.listings-list .ag-listing-compare-trigger,
.listings-grid .ag-listing-compare-trigger{
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 10px;
  -webkit-box-shadow: 0 3px 12px rgba(0,0,0,.1);
          box-shadow: 0 3px 12px rgba(0,0,0,.1);
  background-color: #fff;
  border: 0;
  border-radius: 3px;
  z-index: 999;
  width: auto;
}
.listings-list .ag-listing-compare-trigger button,
.listings-grid .ag-listing-compare-trigger button{
  display: block;
  margin-top: 10px;
  width: 100%;
}
.listings-list .ag-listing-compare-trigger button:first-child,
.listings-grid .ag-listing-compare-trigger button:first-child{
  margin-top: 0;
}
.listings-list .pagination{
  margin-bottom: 10px;
}

/* Grid View */
.listings-grid .ag-listing{
  display: block;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.1);
  background-color: #fff;
}
.listings-grid .ag-listing .ag-listing-controls{
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 13px;
}
.listings-grid .ag-listing .ag-listing-thumb{
  width: auto;
  margin-right: 0;
  margin-bottom: 10px;
}

/* 8.3. Listing Details */
.listings-single .listing-section {
  border: 1px solid rgba(0,0,0,.1);
  padding: 20px;
  border-radius: 3px;
  margin-bottom: 50px;
}
.listing-section .ag-listing-map-wrapper{
  height: 400px;
  margin-bottom: 20px;
}
.listing-section .ag-listing-map{
  width: 100%;
  height: 100%;;
}
.listings-single .listing-section:last-child{
  margin-bottom: 0;
}
.listings-single .listing-section p{
  margin-bottom: 20px;
}
.listings-single .listings-thumbnail{
  position: relative;
}
.listings-single .listings-thumbnail img {
  border-radius: 3px;
  margin-bottom: 20px;
}
.listing-sub-thumb img{
  opacity: .4;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.listing-sub-thumb img:hover{
  opacity: .7;
}
.listing-sub-thumb .slick-current img{
  opacity: 1;
}
.listing-section img{
  border-radius: 3px;
}
.listing-section img{
  margin-bottom: 20px;
}
.listing-section iframe{
  width: 100%;
  height: 400px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.listing-section h4{
  margin-bottom: 30px;
}

.ag-listing-sticky-nav{
  margin-top: 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}
.ag-listing-sticky-nav ul,
.ag-listing-sticky-nav ul li{
  margin: 0;
}
.ag-listing-sticky-nav ul li a{
  display: block;
  padding: 10px 10px 10px 15px;
  margin-bottom: 10px;
  background-color: #f7f9fc;
  border-radius: 3px;
  border-left: 2px solid #4766FF;
}
.ag-listing-sticky-nav ul li a:hover,
.ag-listing-sticky-nav ul li a:focus{
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.ag-listing-sticky-nav ul li a i{
  width: 25px;
}
.ag-listing-sticky-nav ul li:last-child a{
  margin-bottom: 0;
}
.listing-sidebar-controls{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.listing-sidebar-controls a{
  -webkit-box-flex: 0;
      -ms-flex: 0 50%;
          flex: 0 50%;
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  text-align: center;
  margin: 0 2px 0 0;
  border-radius: 3px;
}
.listing-sidebar-controls a:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.listing-cta{
  position: relative;
  background-color: #bec9ff;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
}
.listing-cta h5{
  margin-bottom: 5px;
}
.listing-cta p{
  max-width: 400px;
  margin-bottom: 30px;
}
.listing-cta > i{
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 100px;
  line-height: 128px;
  color: #4766FF;
  z-index: -1;
}

.ag-listing-nearby .listing-nearby-item{
  margin-bottom: 30px;
}
.ag-listing-nearby .listing-nearby-item h5{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag-listing-nearby .listing-nearby-item h5 i{
  font-weight: 400;
  font-size: 28px;
  margin-right: 15px;
}
.ag-listing-nearby .listing-nearby-item:last-child{
  margin-bottom: 0;
}
.ag-listing-nearby .listing-nearby-item ul{
  margin-bottom: 0;
}
.ag-listing-nearby .listing-nearby-item ul li{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
}
.ag-listing-nearby .listing-nearby-item ul li span{
  font-weight: 400;
  color: #848486;
  font-size: 13px;
}
.ag-listing-nearby .listing-nearby-item ul li:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* 8.4. Agents Archive */
.ag-agent-item{
  position: relative;
  padding: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.1);
  background-color: #fff;
  margin-bottom: 30px;
}
.ag-agent-item > i{
  position: absolute;
  top: 20px;
  right: 20px;
  color: #47bfff;
  margin: 0;
}
.ag-agent-item .ag-agent-header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.ag-agent-item .ag-agent-header > a{
  width: 80px;
  margin-right: 15px;
  display: block;
}
.ag-agent-item .ag-agent-header.broker > a{
  width: 70px;
}
.ag-agent-item .ag-agent-header.broker{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag-agent-item .ag-agent-header > a,
.ag-agent-item .ag-agent-header > a img{
  border-radius: 3px;
}
.ag-agent-item .ag-agent-header-inner{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ag-agent-item .ag-agent-header-inner h6{
  margin-bottom: 5px;
  line-height: 24px;
}
.ag-agent-item .ag-agent-header-inner span:not(.listing-agent-badge){
  display: block;
  font-size: 13px;
  color: #848486;
  line-height: 20px;
}
.ag-agent-item .ag-agent-header-inner h6 a{
  color: #1D2228;

}
.ag-agent-item .ag-agent-header-inner h6 a:hover{
  color: #4766FF;
}
.ag-agent-item .ag-agent-body{

}
.ag-agent-item .ag-agent-body .ag-agent-meta{
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul{
  margin: 0;
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 21px;
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul li:last-child{
  margin-bottom: 0;
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul li a{
  color: #515151;
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul li a i{
  width: 25px;
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul li a:hover{
  color: #4766FF;
}
.ag-agent-item .ag-agent-body .ag-agent-meta ul li span{
  margin-left: auto;
  color: #848486;
}
.ag-agent-item .ag-agent-footer{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag-agent-item .ag-agent-footer > a{
  margin-left: auto;
}
.ag-agent-footer .ag-share-post ul li{
  margin-top: 0;
}

/* 8.5. Broker Details */
.ag-broker-sticky-nav{
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}
.ag-broker-single .ag-listing-map-wrapper{
  height: 400px;
  margin-bottom: 20px;
}
.ag-broker-single .ag-listing-map{
  width: 100%;
  height: 100%;;
}

/* 8.6. Contact Page */
.ag-contact-map-wrapper{
  position: relative;
  height: 400px;
  margin-bottom: 30px;
}
.ag-contact-map-wrapper .ag-contact-map{
  width: 100%;
  height: 100%;
}
.ag-contact-map-wrapper .btn-custom{
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 15px;
  z-index: 99999;
}
.ag-contact-sidebar{
  margin-bottom: 30px;
}

/* 8.7. 404 page */

.ag-404-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ag-404-container img{
  margin-bottom: 50px;
  max-width: 500px;
}

/* 8.8. Profiles */
.ag-profile-nav{
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  padding: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.1);
}
.ag-profile-nav ul,
.ag-profile-nav ul li{
  margin: 0;
}
.ag-profile-nav ul li a{
  display: block;
  padding: 10px 10px 10px 15px;
  margin-bottom: 10px;
  background-color: #f7f9fc;
  border-radius: 3px;
  border-left: 2px solid #4766FF;
}
.ag-profile-nav ul li a.active{
  background-color: #4766FF;
  color: #fff;
}
.ag-profile-nav ul li a.logout{
  color: #ff4764;
  border-left-color: #ff4764;
}

.ag-profile-nav ul li a:hover,
.ag-profile-nav ul li a:focus{
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.ag-profile-nav ul li a i{
  width: 25px;
}
.ag-profile-nav ul li:last-child a{
  margin-bottom: 0;
}

.ag-profile-content{
  padding: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.1);
}
.ag-profile-content-padding{
  padding: 20px 20px 0;
}
.ag-profile-content-header{
  margin-bottom: 30px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.ag-profile-content-header:first-child{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.ag-profile-content-header h4{
  margin-bottom: 5px;
}
.ag-profile-content-footer{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ag-profile-content .ag-listing .ag-listing-controls{
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ag-profile-content .ag-listing .ag-listing-controls a{
  margin-right: 5px;
}

/*======================
9. Repsonsive
========================*/

@media(max-width: 1680px){
  .main-header.header-fw .navbar{
    padding: 0 55px;
  }
  .main-header.header-fw .top-header{
    padding: 10px 55px;
  }
}

@media(max-width: 1199px){
  .banner .slick-arrow{
    width: 40px;
    height: 40px;
  }
  .main-header.header-fw .navbar{
    padding: 0 25px;
  }
  .main-header.header-fw .top-header{
    padding: 10px 25px;
  }
  .banner.banner-carousel .title{
    font-size: 62px;
    line-height: 80px;
  }
  .banner.banner-carousel .subtitle{
    font-size: 18px;
  }

  .checkout-billing{
    margin-top: 50px;
  }
  .checkout-billing table{
    margin-bottom: 50px;
  }
  .ag-listings-inner{
    -webkit-box-flex: 0;
        -ms-flex: 0 480px;
            flex: 0 480px;
    width: 480px;
  }
  .ag-listing{
    display: block;
  }
  .ag-listing .ag-listing-controls{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 13px;
  }
  .ag-listing .ag-listing-thumb{
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }

}

@media (max-width: 991px) {
  body, p, label, .breadcrumb li, .form-control, .pagination .page-link{
    font-size: 14px;
  }
  .mb-lg-30{
    margin-bottom: 30px;
  }
  .mb-lg-50{
    margin-bottom: 50px;
  }
  .mr-lg-30{
    margin-left: 0;
  }
  .main-aside{
    -webkit-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  .main-aside.open{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .aside-overlay {
    display: block;
  }
  .aside-toggler{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar{
    padding: 15px 0;
  }
  .main-header.header-1 .navbar,
  .main-header.header-3 .navbar,
  .main-header.header-4 .navbar{
    padding: 8px 0;
  }

  .top-header .top-header-inner .social-media li a{
    padding-right: 15px;
  }
  .navbar-nav {
    display: none;
  }
  .header-controls-inner li.search-dropdown-wrapper{
    padding-right: 15px;
  }
  .main-header.header-2 .navbar>.container{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 0;
  }
  .navbar-brand,
  .main-header.header-2 .navbar-brand{
    width: 120px;
  }
  .section {
    padding: 60px 0;
  }
  .ag-footer{
    padding: 60px 0 0 0;
  }
  .footer-widget{
    padding-bottom: 60px;
  }
  .section.section-padding{
    padding: 60px 0 30px;
  }

  .banner{
    padding: 70px 0;
  }
  .banner-text{
    margin-bottom: 30px;
  }
  .banner.banner-img .banner-text{
    margin-bottom: 0;
  }
  .banner .slick-dots{
    margin-top: 0;
    margin-bottom: 30px;
  }

  .header-absolute + .banner{
    padding: 130px 0 70px;
  }
  .title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .subtitle{
    font-size: 14px;
  }

  .main-header.header-fw .navbar{
    padding: 8px 0;
  }
  .main-header.header-fw .top-header{
    padding: 10px 0;
  }

  .ag-categories-2 .ag-category .ag-category-info h5{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .post-single .title,
  .product-single .title{
    font-size: 24px;
    line-height: 32px;
  }
  .product-single .product-price{
    font-size: 20px;
    line-height: 28px;
  }

  .sidebar{
    margin-top: 20px;
  }
  .pagination{
    margin-top: 30px;
  }
  .footer-bottom p{
    text-align: center;
  }
  .footer-bottom ul{
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-bottom ul li a{
    padding: 0 10px;
  }

  .ag-listings-inner{
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
    width: 100%;
  }
  .ag-listings-outter{
    display: block;
  }
  .ag-listing-map-wrapper{
    height: 250px;
  }
  .ag-listings-outter.fullwidth .ag-listing-map-wrapper{
    display: none;
  }
  .ag-listings-scroll{
    max-height: 100%;
    overflow-y: auto;
  }
  .ag-listing{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ag-listing .ag-listing-controls{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10px;
  }
  .ag-listing .ag-listing-thumb{
    width: 150px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .ag-profile-nav{
    margin-bottom: 30px;
  }

}

@media (max-width: 768px){

  h1{
    font-size: 34px;
    line-height: 42px;
  }
  h2{
    font-size: 30px;
    line-height: 38px;
  }
  h3{
    font-size: 26px;
    line-height: 32px;
  }
  h4{
    font-size: 22px;
    line-height: 30px;
  }
  .section-title-wrap.section-header{
    margin-bottom: 30px;
  }

  .aside-toggler{
    margin-left: 10px;
  }

  .ag-responsive-table thead {
    display: none;
  }

  .ag-responsive-table td {
    position: relative;
    display: block;
    width: 100%;
    border-top: 0;
    text-align: right;
    padding: 10px;
    border-bottom: 0;
  }

  .ag-responsive-table td::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }

  .ag-responsive-table td.remove::before {
    display: none;
  }

  .ag-responsive-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .ag-responsive-table tr:last-child {
    border-bottom: 0;
  }

  .can-sticky + .banner{
    padding: 85px 0 0;
  }
  .can-sticky + .banner.banner-img{
    padding: 0;
  }
  .can-sticky + .banner.banner-img .banner-inner{
    padding: 70px 0 0;
  }
  .banner-inner{
    max-width: 100%;
  }
  .banner,
  .banner.banner-img .banner-inner{
    padding: 80px 0;
  }

  .banner .title,
  .banner.banner-carousel .title{
    font-size: 32px;
    line-height: 40px;
  }
  .banner .subtitle,
  .banner.banner-carousel .subtitle{
    font-size: 16px;
  }
  .banner .slider-next,
  .banner .slider-prev{
    display: none;
  }
  .can-sticky + .subheader{
    padding: 150px 0 70px;
  }
  .subheader{
    padding: 70px 0;
  }
  .subheader h1{
    font-size: 32px;
    line-height: 40px;
  }
  .subheader.subheader-2{
    height: auto;
    padding: 150px 0 60px;
    text-align: center;
  }
  .subheader.subheader-2 h1{
    display: block;
    text-align: center;
  }
  .subheader.subheader-2 h1 .small-data{
    display: block;
    margin-top: 5px;
  }
  .subheader.subheader-2 .post-meta{
    display: block;
  }
  .post.post-list{
    display: block;
  }
  .post.post-list.post-has-thumbnail .post-thumbnail{
    width: auto;
    margin: 0 auto 20px;
  }
  .comments-list .comment-item img{
    width: 45px;
  }
  .comments-list .comment-item span{
    position: relative;
  }
  .comments-list .comment-item h5 {
    margin-bottom: 0;
  }
  .product-additional-info .comment-body .ag-rating{
    margin: 5px 0 0;
  }
  .comments-list .comment-item ul{
    padding-left: 25px;
  }

  .ag-arrows .slick-arrow{
    width: 40px;
    height: 40px;
  }
  .img-gradient::before,
  .img-gradient::after{
    display: none;
  }
  .post.post-2 .post-body .post-title{
    max-width: 100%;
  }

  .ag-filter-form{
    display: block;
  }
  .ag-filter-item{
    border-right: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
  }
  .ag-filter-item:last-child{
    border-bottom: 0;
  }

  .timeline h6,
  .timeline h6 span{
    display: block;
  }
  .timeline h6 span{
    margin-top: 5px;
  }

  .gallery-filter{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gallery-filter a{
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }

}

@media (max-width: 575px){

  .btn-block-custom-sm{
    width: 100%;
  }

  .ag-preloader-inner {
    margin-left: -65px;
  }
  .cta-item-inner{
    max-width: 100%;
  }
  .cta-item img,
  .listing-cta i{
    opacity: .1;
  }

  .pagination .page-link{
    padding: 10px 15px;
  }
  .post-single .post-meta span,
  .subheader.subheader-2 .post-meta span{
    display: block;
    margin-right: 0;
  }
  .post.post-2 .post-body{
    margin: -40px 15px 0;
  }
  .post.post-2 .post-body .post-meta span{
    display: block;
    margin: 0;
  }
  .ag-product.product-list{
    display: block;
  }
  .ag-product.product-list .ag-product-thumbnail{
    max-width: 100%;
    margin-right: 0;
  }

  .ag-product.product-list .ag-product-thumbnail a.btn-custom{
    display: block;
  }
  .ag-product.product-list .ag-product-body{
    margin-top: 15px;
  }

  .ag-newsletter{
    display: block;
  }
  .ag-newsletter .btn-custom{
    margin: 15px 0 0;
    width: 100%;
  }

  .filter-wrapper{
    display: block;
  }
  .filter-wrapper .view-toggler{
    display: none;
  }
  .filter-wrapper .view-toggler,
  .filter-wrapper select{
    width: 100%;
  }

  .atc-form{
    display: block;
    margin-bottom: 20px;
  }
  .atc-form .form-group{
    margin-right: 0;
  }
  .atc-form .btn-custom{
    margin-top: 10px;
    display: block;
    width: 100%;
  }
  .nav-tabs .nav-link{
    padding: 0 10px 20px 10px;
  }

  .ag-listing{
    display: block;
  }
  .ag-listing .ag-listing-controls{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 13px;
  }
  .ag-listing .ag-listing-thumb{
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .ag-listing-compare-trigger{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    z-index: 999;
  }
  .ag-listing-compare-trigger button{
    display: block;
    width: 100%;
    margin-top: 5px;
  }
  .ag-listing-compare-trigger button:first-child{
    margin-top: 0;
  }
  .ag-agent-item .ag-agent-footer{
    display: block;
  }
  .ag-agent-item .ag-agent-footer > a{
    margin-top: 10px;
    display: block;
    width: 100%;
  }

  .ag-profile-content-footer{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .ag-profile-content-footer button{
    width: 100%;
    display: block;
  }
  .ag-profile-content-footer button:first-child{
    margin-top: 10px;
  }

}

/* All elements with noprint class wont be printed (used in listing details) */
@media print{
  .noprint {display:none;}
}



/* --------------------------------------------------------------------------------------------------------------------------- */

@charset "utf-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #000 url(../images/bg.gif) repeat left top;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000;
}
.twoColFixRtHdr #containerOutside { 
	width: 90%; 
	background: #3e2106;
	margin: 10px;
	border: 1px solid #000000;
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
} 

.twoColFixRtHdr #header { 
	background: #3e2106 url(../imgHeader/header.jpg) no-repeat left top;
	width: 90%;
	margin: 10px;
	height:120px;
	
} 

.twoColFixRtHdr #header h1 {
	margin: 0; 
	padding: 10px 0; 
}
.twoColFixRtHdr #header2 h1 {
	margin: 0; 
	padding: 10px 0; 
}

.twoColFixRtHdr #nav { 
	background: #3e2106 url(../images/navBG.jpg) repeat-x left top;
	height: 35px;
	margin: 10px;
	padding-top: 7px;
}
.twoColFixRtHdr #nav a{
	color:	#ede2c3;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	margin: 0 30px;
}
.twoColFixRtHdr #nav a:hover{
	color:	#000;
	font-size: 14px;
	font-weight: bold;
}
.twoColFixRtHdr #containerInside1 { 
	background: #d0c199;
	margin: 10px; 
	border: 1px solid #000000;
}

.twoColFixRtHdr #containerInside3 {
	background: #ede1c1;
	margin: 10px; 
	border: 1px solid #d0c199;
	text-align: left; 
	padding: 5px 20px;	
	min-height: 400px;
} 

.twoColFixRtHdr #containerInside3   h3{
	color: #a2390c;
	font-size: 12pt;
}


#map {
float:left;
width: 50%; 
height: 300px;
overflow:hidden;
position:relative;

}

#mapquick {
/*float:left;
overflow:hidden;*/
width: 1100px; 
height: 600px;
position:relative;
}

#mapinneriframe
{
position:absolute;
/*top:-110px;*/
/*left:-10px;*/
width:60%;
height:auto;
}


#searchBox {
float:left;
width: 25%; 
height: auto;	
}

.twoColFixRtHdr #sidebarIndexxxxxxxxxxxxx {
	float: right;
	width: 254px; 
	margin: 0 5px 0 0;
	background: #a28651; 
	padding: 0 10px;
	text-align:left;
}

.twoColFixRtHdr #sidebarIndexxxxxxxxxxxxxxxxxxxxx  h3{
	color: #ede2c3;
	font-size: 12pt;
}

.twoColFixRtHdr #sidebarStatexxxxxxxxxxxxxxxxxxxxxxxxxxxx{
	float: right;
	width: 264px; 
	margin: 0 ;
	background: #d3b47f; 
	padding: 0 5px;
	text-align:left;
	min-height: 300px;
}

.twoColFixRtHdr #sidebarStatexxxxxxxxxxxxxxxxxxxxxx  h4{
	color: #fefaf2;
	font-size: 12pt;
	margin: 5px 0 10px 0;
}

.twoColFixRtHdr #containerInside1Contentxxxxxxxxxxxxx {
	text-align: left;	
	font-size: 12px;
	padding: 0 10px 0 10px;
}
.twoColFixRtHdr #containerInside1Content xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx h3{
	color: #a2390c;
	font-size: 12pt;
}

.twoColFixRtHdr #containerInside2 { 
	background: #ede1c1;
	margin: 10px; 
	border: 1px solid #d0c199;
	text-align: left; 
} 

.twoColFixRtHdr #containerInside2  h3{
	color: #a2390c;
	font-size: 12pt;
	padding: 0 10px;
}

.stateTitle{
	color: #a2390c;
	font-size: 10pt;
	font-weight: bold;
	padding: 0 10px;
}

.twoColFixRtHdr #containerInside2Properties{
	margin: 0 ;
}

.twoColFixRtHdr #searchTable {
	width: 300px;
	margin: 0 10px;
}

.twoColFixRtHdr #footerLinks {
	padding: 5px 0;	
}

.twoColFixRtHdr #footerLinks a{
	color:	#a2390c;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	padding: 10px 25px;
}

.twoColFixRtHdr #footerLinks a:hover{
	color:	#fff;
	font-size: 10px;
	font-weight: bold;
}

.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; 
	background:#DDDDDD; 
} 
.twoColFixRtHdr #footer p {
	margin: 0; 
	padding: 10px 0; 
}
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

a.more, a.more:active, a.more:visited {
	color: #a2390c;
	text-decoration: none;
	font-size:10px;
}

a.more:hover {
	color: #fff;
	text-decoration: none;
	font-size:10px;
}

.title {
	color: #a2390c;
	font-size: 16px;
	font-weight: bold;
}
a.propertyTitle {
	color:#a2390c;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
}

a.propertyTitle:hover {
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
}

a.newListing {
	color:#00F;
	font-weight: normal;
	font-size: 12px;
	text-decoration: none;
}

a.newListing:hover {
	color:#d89e12;
	font-weight: normal;
	font-size: 12px;
	text-decoration: underline;
}

a.propertyTitle2 { 
	color:#fefaf2;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
}

a.propertyTitle2:hover {
	color:#a2390c;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
}

a.loginLink { 
	color: #ffffff;
	font-weight: bold;
	font-size: 10px;
	text-decoration: none;
	margin-top: 2px;
}

a.loginLink:hover {
	color:#d89e12; 
	font-weight: bold;
	font-size: 10px;
	text-decoration: none;
	margin-top: 2px;
}

.propertyDesc {
	color: #000;
	font-size: 12px;
}

.msg {
	color: #F00;
	font-size:12px;
	font-weight:bold;
}

.copyright{
	color: #d0c199;
	font-size:11px;
	 padding: 5px 0;
}
.copyright a{
	color:	#d0c199;
	font-size: 11px;
	 text-decoration:none;
}

.copyright a:hover{
	color:	#fff;
	font-size: 11px;
    text-decoration:none;
}

li {
margin: 0 .15em; 
padding: .15em; 
} 

.adBox {
	background: #ede1c1 url(../images/yellowBox.jpg) no-repeat left top;
	height: 216px; 
	width: 614px;
	margin: 0;
	padding: 0;
	font-size: 10px;
}

.adBoxSm {
	background: #ede1c1 url(../images/smYellowBox.jpg) no-repeat left top;
	height: 200px; 
	width: 285px;
	margin: 0;
	padding: 0;
	font-size: 10px;
}

#land {
	background: #ede1c1 url(../images/land.jpg) no-repeat left top;
	height: 312px; 
	width: 840px;
	margin: 0;
	padding: 0;
}

  .ag-listing{
    display: block;
  }
  .ag-listing .ag-listing-controls{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 13px;
  }
  .ag-listing .ag-listing-thumb{
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .ag-listing-compare-trigger{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    z-index: 999;
  }
  .ag-listing-compare-trigger button{
    display: block;
    width: 100%;
    margin-top: 5px;
  }
  .ag-listing-compare-trigger button:first-child{
    margin-top: 0;
  }