@charset "utf-8";

/*
Theme Name: Flapartment - Real Estate HTML5 Template.
Author: Slidesigma
Author URL: https://themeforest.net/user/slidesigma
Version: 1.0.0

%%%%%%% Table of CSS %%%%%%%

1.General code
    1.1 Typography
    1.2 Space margins and padding
    1.3 forms
    1.4 Buttons
    1.5 Section-Colors-&-Backgrounds
    1.6 Modal & popups
    1.7 Accordion
2.Homepage
    2.1 Navigation
    2.2 About Us
    2.3 Recent Property
    2.4 Featured Property
    2.5 Sale
    2.6 Rent
    2.7 Agent
    2.8 Blog
    2.9 Why Choose Us
    2.10 Testimonials
    2.11 Partners
    2.12 Free Consultation
    2.13 Footer
    2.14 Copyright
3.Blog
4.Blog Details
5.Listing
6.Listing Detail
7.Listing Detail Classic
8.Profile
9.About Us
10.Faqs
11.404
12.Coming Soon
13.Contact Us
*/
/*======================
1.General Code
========================*/
.line_comp2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.line_comp3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.line_comp1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
/* flex布局 */
.m_flex_box {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
}
.m_flex {
  -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1; /* OLD - Firefox 19- */
  -webkit-flex: 1; /* Chrome */
  -ms-flex: 1; /* IE 10 */
  flex: 1;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex_hc {
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
   */
}
.flex_he {
  /* 09版 */
  -webkit-box-pack: flex-end;
  /* 12版 */
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}

.flex_jz {
  /*-webkit-box-pack: space-between;*/
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.flex_ar {
  /*-webkit-box-pack: space-between;*/
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
/* 父元素-纵向排列（主轴） */
.flex_v {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */

  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex_vw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex_vc {
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.flex_vb {
  /* 09版 */
  -webkit-box-align: flex-end;
  /* 12版 */
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex_1 {
  -webkit-box-ordinal-group: 1; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1; /* OLD - Firefox 19- */
  -ms-flex-order: 1; /* TWEENER - IE 10 */
  -webkit-order: 1; /* NEW - Chrome */
  order: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex_2 {
  -webkit-box-ordinal-group: 2; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2; /* OLD - Firefox 19- */
  -ms-flex-order: 2; /* TWEENER - IE 10 */
  -webkit-order: 2; /* NEW - Chrome */
  order: 2; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向换行 */
.flex_hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_scale1 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.flex_scale2 {
  -webkit-flex-grow: 2;
  flex-grow: 2;
}
.flex-1 {
  flex: 1;
  -moz-box-flex: 1; /* Firefox */
  -webkit-box-flex: 1; /* Safari 和 Chrome */
  box-flex: 1;
}
.flex-2 {
  flex: 2;
  -moz-box-flex: 2; /* Firefox */
  -webkit-box-flex: 2; /* Safari 和 Chrome */
  box-flex: 2;
}
/* html{
    overflow: hidden;
}
html.overflow{
    overflow-x: hidden;
    overflow-y: visible;
} */
button:focus,
*:focus {
  outline: none;
}
body {
  font-family: "黑体","Source Han Sans", arial, "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border-color: #dfdfdf;
  transition: transform ease-in 0.4s;
  background-color: #f4f4f4;
  /* overflow-x: hidden; */
}
button {
  background: transparent;
  border: none;
  padding: 0;
}
label {
  line-height: normal;
}
.menu-open {
  background-color: #000000ab;
}
.align-item-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.p-relative {
  position: relative;
}
.before-none:after,
.after-none:after,
.none {
  display: none;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.overlay-bg {
  background: #000;
  opacity: 0.5;
}
.overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.image-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.transform-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -50%);
  z-index: 1;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
  font-size: inherit;
  margin: 0;
}
.animate-img {
  position: relative;
  overflow: hidden;
}
.animate-img:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
/*preloader*/
.loader {
  /* overflow: hidden;
    display: none; */
}
.preloader {
  background: #fff;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 99;
  /* overflow: hidden; */
  display: none;
}
.boxes {
  height: 32px;
  width: 32px;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: 32px;
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0 auto;
}
.boxes .box {
  width: 32px;
  height: 32px;
  top: 0px;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  animation: box1 1s linear infinite;
}
.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  animation: box2 1s linear infinite;
}
.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  animation: box3 1s linear infinite;
}
.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  animation: box4 1s linear infinite;
}
.boxes .box > div {
  background: #0070b7;
  --translateZ: 15.5px;
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0070b7;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX))
    translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
  top: 0;
  left: 0;
  background: #0070b7;
}
.boxes .box > div:nth-child(2) {
  background: #0070b7;
  right: 0;
  --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
  background: #0070b79c;
  --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
  background: #dbe3f4;
  top: 0;
  left: 0;
  --translateZ: -90px;
}

/*section-header*/
.section-header {
  max-width: 540px;
  padding-bottom: 30px;
}
.section-header .section-heading {
  position: relative;
  padding-left: 25px;
}
.section-header .section-heading:after {
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 3px;
  left: 0;
}
.section-header .section-heading h5 {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-header .section-description {
  margin-bottom: 20px;
  position: relative;
}
/*section heading right*/
.section-header-right {
  max-width: 550px;
  padding-bottom: 30px;
  text-align: right;
}
.section-header-right .section-heading {
  position: relative;
  padding-right: 25px;
}
.section-header-right .section-heading:after {
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 3px;
  right: 0;
}
.section-header-right .section-heading h5 {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-header-right .section-description {
  margin-bottom: 20px;
  position: relative;
}
/*.custom-tooltip*/
.custom-tooltip:after,
.custom-tooltip:before {
  content: attr(data-tip);
  color: #fff;
  background-color: #000;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
  padding: 0 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -30px;
}
.custom-tooltip:after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -22px;
  z-index: -1;
}
.custom-tooltip:hover:before,
.custom-tooltip:hover:after {
  opacity: 1;
}
/*property-tag*/
.property-tag-1:after {
  position: absolute;
  content: "";
  display: block;
  left: 100%;
  top: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 13px solid;
  border-left-color: #4d4d4d;
  border-right-color: #4d4d4d;
}
.property-tag-1 {
  float: left;
}
.property-tag-2 {
  float: right;
}
.property-tag-1,
.property-tag-2 {
  display: inline-block;
  padding: 8px 15px;
  position: relative;
  line-height: 10px;
  font-size: 14px;
  position: relative;
}
.property-tag-2:after {
  position: absolute;
  content: "";
  display: block;
  right: 100%;
  top: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 13px solid;
  border-left-color: #0070b7;
  border-right-color: #0070b7;
}
/*slider arrow*/
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next span,
.swiper-button-prev span {
  font-size: 22px;
  background: #4d4d4d;
  color: #fff;
  padding: 0 10px;
  position: relative;
}
.slider-btn {
  position: absolute;
  top: -70px;
  right: 11px;
}
.swiper-button-prev {
  left: -113px;
}
.swiper-button-next span:after {
  position: absolute;
  content: "";
  display: block;
  right: 40px;
  top: 0px;
  border-top: 39px solid transparent;
  border-right: 39px solid;
  border-right-color: #0070b7;
  transform: rotate(270deg);
}
.swiper-button-prev span:after {
  position: absolute;
  content: "";
  display: block;
  left: 40px;
  top: 0px;
  border-top: 39px solid transparent;
  border-left: 39px solid;
  border-left-color: #4d4d4d;
}
.swiper-button-next span {
  background: #0070b7;
}
/*swiper pagination*/
.swiper-pagination {
  transform: translate(0%, 50%);
  position: absolute;
  left: 0;
  bottom: -5%;
  right: 0;
  display: none;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 6px;
  display: inline-block;
  border-radius: 10px;
  background: #0070b7;
  margin-right: 10px;
  transition: 0.6s;
  border: 2px solid #0070b7;
  position: relative;
  top: 5px;
}
.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  height: 6px;
  border-radius: 50px;
  opacity: 1;
  background: #0070b7;
}
.swiper-pagination-bullets .swiper-pagination-bullet:focus {
  outline: 0;
}
.swiper-slide .our_articles .post,
.swiper-slide .property-grid-box {
  margin: 2px;
}
/*pagination*/
.page-item:first-child .page-link,
.page-item:last-child .page-link,
.page-item .page-link {
  border-radius: 0;
}
.page-link:focus {
  box-shadow: none;
  z-index: 1;
}
.page-item .page-link {
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1.5;
  border: 2px solid #eee;
  color: #111111;
}
.page-item:hover .page-link,
.page-item.active .page-link {
  background-color: #0070b7;
  border-color: #0070b7;
  color: #fff;
}
.page-link.active{
    background-color: #0070b7;
    border-color: #0070b7;
    color: #fff;
}
#page{
    font-size: 14px;
}
.page_new{
    margin-left: 10px;
    line-height: 41px;
}
.page_new input{
    width: 60px;
}
.page_new span{
    font-weight: 600;
    cursor: pointer;
}
/*animation*/
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes box1 {
  0%,
  50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box3 {
  0%,
  50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*======================
1.1 Typography
========================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  font-family: "黑体","Source Han Sans", arial, "Poppins", sans-serif;
  font-weight: 600;
  color: #111111;
}
h1 {
  font-size: 50px;
  line-height: normal;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  font-family: "黑体","Source Han Sans", arial, "Poppins", sans-serif;
}
a {
  color: #111111;
  text-decoration: none;
  transition: 0.5s;
}
a:focus,
a:hover {
  color: #0070b7;
  text-decoration: none;
  transition: 0.5s;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}
ul li,
ol li {
  margin: 0px;
  position: relative;
}
ul.custom {
  list-style: none;
  padding: 0;
}
blockquote {
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px;
}
blockquote span {
  width: 50px;
  height: 50px;
  border: 2px solid #0070b7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-size: 16px;
  margin-right: 15px;
}
blockquote p {
  font-size: 16px;
  font-style: italic;
  margin: 0;
  font-weight: 500;
  word-break: break-word;
  margin-bottom: 0;
}
blockquote h6 {
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
}
iframe {
  border: none;
  width: 100%;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  transition: 0.5s;
}
table th,
table td {
  border: 1px solid #dfdfdf;
  padding: 15px;
}
table {
  border: 1px solid #dfdfdf;
  padding: 15px;
  width: 100%;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fw-100 {
  font-weight: 100;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 900;
}
/*======================
1.2 Space margins and padding
========================*/
.no-margin {
  margin: 0;
}
.no-padding {
  padding: 0;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.section-padding {
  padding: 80px 0;
}
.section_padding{
  padding: 0 0 80px;
}
.section-padding_ {
  padding: 60px 0 80px;
}
.section-padding-top {
  padding-top: 80px;
}
.section-padding-bottom {
  padding-bottom: 80px;
}
.padding-10 {
  padding: 10px;
}
.padding-15 {
  padding: 15px;
}
.padding-20 {
  padding: 20px;
}
.mb-xl-20 {
  margin-bottom: 20px;
}
.mb-xl-30 {
  margin-bottom: 30px;
}
.pb-xl-20 {
  padding-bottom: 20px;
}
/*==================
1.3. Forms
====================*/
.form-group {
  margin-bottom: 20px;
}
.form-control-custom::placeholder {
  font-size: 14px;
}
.form-control-custom {
  height: 50px;
  padding: 0.375rem 1.2rem;
  border-radius: 0;
  border: 2px solid #f0f0ff;
  width: 100%;
  background: none;
}
.form-control-custom:focus {
  border: 2px solid #f0f0ff;
  border-bottom: 2px solid #0070b7;
  box-shadow: none;
}
.custom-select {
  background-image: none;
}
.custom-select:focus {
  box-shadow: none;
}
label.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
label.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  user-select: none;
  line-height: normal;
  font-size: 14px;
}
label.custom-checkbox:last-child {
  margin-bottom: 10px;
}
/* Create a custom checkbox */
label.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 0px;
}
/* On mouse-over, add a grey background color */
label.custom-checkbox:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #0070b7;
}
/* When the checkbox is checked, add a blue background */
label.custom-checkbox input:checked ~ .checkmark {
  background-color: #0070b7;
  border: 1px solid #0070b7;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
label.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
label.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/*==================
1.4. Buttons
====================*/
.btn-height {
  height: 50px;
}
.btn-first {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  text-shadow: none;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0 25px;
  line-height: 44px;
  border-radius: 0;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-submit {
  background-color: #0070b7;
  color: #fff;
  border: 2px solid #0070b7;
  transition: 0.5s all;
}
.btn-submit:focus,
.btn-submit:hover {
  background-color: transparent;
  color: #0070b7;
  transition: 0.5s all;
}
.btn-transparent {
  background-color: #fff;
  color: #111111;
  border: 2px solid #fff;
  transition: 0.5s all;
}
.btn-transparent:focus,
.btn-transparent:hover {
  background-color: transparent;
  color: #ffffff;
  transition: 0.5s all;
}
.btn-border {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  transition: 0.5s all;
}
.btn-border:focus,
.btn-border:hover {
  background-color: #fff;
  color: #111111;
  transition: 0.5s all;
}
/*==================
1.5. Section-Colors-&-Backgrounds
====================*/
.bg-custom-black {
  background-color: #111111;
}
.bg-custom-white {
  background-color: #ffffff;
}
.bg-light-white {
  background-color: #f4f4f4;
}
.bg-theme {
  background-color: #4d4d4d;
}
.bg-custom-blue {
  background-color: #0070b7;
}
/*Colors*/
.text-custom-black {
  color: #000000;
}
.text-light-white {
  color: #7c8a97;
}
.text-dark-grey {
  color: #4d4d4d;
}
.text-theme {
  color: #111111;
}
.text-custom-blue {
  color: #0070b7;
}
.text-custom-white {
  color: #ffffff;
}
.text-custom-yellow {
  color: #ff9600;
}
/*======================
1.6 Modal & Popups
========================*/
/*map*/
.cluster div {
  background: #0070b7;
  border-radius: 100%;
  height: 50px;
  line-height: 38px;
  box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-popup-wrap {
  display: block;
  width: 300px !important;
  position: relative;
}
.map-popup-wrap:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  margin-top: -1px;
  z-index: 20;
}
.map-popup-wrap:before {
  border-color: transparent;
  border-top-color: #fff;
  border-width: 15px;
  margin-left: -15px;
}
.map-popup {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 9px 16px rgba(58, 87, 135, 0.15);
}
.map-popup-category,
.infoBox-close {
  background: #0070b7;
}
.infoBox-close {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 20px;
  right: 20px;
  color: #fff;
  border-radius: 100%;
  z-index: 20;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-popup-category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 500;
  color: #fff;
  z-index: 20;
  padding: 10px 12px;
  border-radius: 4px;
  box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.2);
}
.listing-img-content {
  overflow: hidden;
}
.fl-wrap {
  float: left;
  width: 100%;
  position: relative;
}
.listing-img-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #292929;
  opacity: 0.3;
}
.map-popup img {
  width: 100%;
  height: auto;
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}
.listing-content {
  background: #fff;
  padding: 20px;
  padding-bottom: 0;
  z-index: 20;
}

.listing-title h4 {
  font-size: 18px;
}
.listing-title h4 span {
  position: relative;
}
.map-popup .property-address {
  position: absolute;
  top: 180px;
  padding: 0 10px;
  z-index: 10;
}
.map-popup .property-address a {
  color: #fff;
  line-height: 1.8;
}
.map-popup .property-address a i {
  margin-right: 5px;
}
.map-popup .property-address:after {
  position: absolute;
  content: "";
  display: block;
  left: 100%;
  top: 0;
  border-top: 25px solid transparent;
  border-left: 25px solid;
  border-left-color: #0070b7;
}
.map-popup .price {
  display: flex;
  align-items: center;
}
.map-popup .price span {
  font-size: 80%;
  margin-left: 4px;
}
.map-popup .property-feature {
  columns: 2;
  padding-bottom: 10px;
}
.map-popup .property-feature li {
  padding: 0px 0 10px 0;
}
.map-popup .property-feature li i {
  font-size: 16px;
  margin-right: 5px;
  color: #4d4d4d;
}
.map-popup .property-feature li span {
  font-size: 14px;
  color: #111111;
  font-weight: 400;
}
.infoBox-close > .fa-times {
  font-size: 18px;
  font-style: normal;
}
.infoBox-close > .fa-times:before {
  content: "x";
}
/*modal popup*/
.modal.show .modal-dialog {
  max-width: 400px;
}
.modal-body {
  padding: 0;
}
.login-register .nav-tabs {
  justify-content: center;
  border: none;
}
.login-register .nav-tabs .nav-item {
  width: 50%;
  text-align: center;
  border-right: 2px solid #ccc;
}
.login-register .nav-tabs .nav-item:last-child {
  border-right: 0;
}
.login-register .nav-tabs .nav-link:focus,
.login-register .nav-tabs .nav-link:hover,
.login-register .nav-tabs .nav-link {
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  border-bottom: 2px solid #ccc;
  padding: 10px 0;
}
.login-register .nav-tabs .nav-link.active {
  border-bottom: 2px solid transparent;
  color: #0070b7;
}
.login-register .social-links ul {
  display: flex;
  justify-content: center;
}
.login-register .social-links ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #0070b7;
  border-radius: 50%;
  margin: 0px 5px;
  border: 1px solid #0070b7;
}
.login-register .social-links ul li a:hover {
  background-color: #0070b7;
  color: #fff;
}
.login-register .decleration {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}
/*======================
1.7 Accordion
========================*/
.custom-accordion .card {
  background: #ffffff;
  border-color: #fff;
  border-radius: 0;
}
.custom-accordion .card .card-header {
  padding: 0;
  background: #ededed;
  border-color: #ededed;
  border-radius: 0;
}
.custom-accordion .card .card-header .collapsebtn {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  align-items: center;
  padding: 10px 15px;
  width: 100%;
  background: #0070b7;
  color: #fff;
  cursor: pointer;
}
.custom-accordion .card .card-header .collapsebtn.collapsed {
  background: #ededed;
  border-color: #ededed;
  color: #111111;
}
.custom-accordion .card .card-header .collapsebtn:before {
  content: "-";
  background: #fff;
  color: #0070b7;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: normal;
  padding: 0 6px;
}
.custom-accordion .card .card-header .collapsebtn.collapsed:before {
  content: "+";
  background: #111111;
  color: #fff;
  padding: 0 4.5px;
}
.custom-accordion .card .card-body {
  padding: 15px 0;
}
/*======================
2. Homepage
========================*/
/*map-box*/
.main-map-box {
  height: 800px;
  position: relative;
}
.main-map-box #map-main {
  height: 100%;
}
/*map-search-box*/
.map-search-box {
  width: 350px;
  transition: 0.5s all;
  left: -350px;
}
.map-search-box.active {
  left: 0;
}
.map-search-box .float-btn {
  position: absolute;
  top: 70px;
  right: -50px;
  background: #fff;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
}
.map-search-box .float-btn .float-btn-inner i {
  font-size: 30px;
  padding: 0 10px;
}
.map-search-box .float-btn .float-btn-inner img {
  width: 50px;
  height: 50px;
  padding: 10px;
}
/*topbar*/
.topbar {
  padding-bottom: 10px;
}
.topbar .right-side,
.topbar .left-side {
  padding: 10px 0 0;
}
.topbar .left-side ul {
  display: flex;
  align-self: flex-start;
}
.topbar .left-side li {
  margin-right: 20px;
}
.topbar .left-side li a {
  color: #fff;
}
.topbar .left-side li a i {
  margin-right: 5px;
  color: #fff;
}
.topbar .right-side ul {
  display: flex;
  align-self: flex-end;
  justify-content: flex-end;
}
.topbar .right-side li {
  margin-left: 20px;
}
/*Navigation*/
.menu-style {
  transition: all 0.3s;
  background-color: #fff;
}
.topbar.fixed-top,
.menu-style.fixed-header {
  position: fixed;
  top: 41px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.topbar.fixed-top {
  top: 0;
  background-color: #111111;
}
.menu-open .menu-style,
.menu-open .menu-style.fixed-header {
  background-color: #000000ab;
}
.menu-style .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-style .header .logo {
  margin: 10px 0;
  width: 120px;
  height: 60px;
}
.menu-style .header a {
  display: block;
  /* width: 140px; */
  height: 60px;
}
.menu-style .header img {
  object-fit: contain;
}
.menu-style .header .right-side {
  display: flex;
}
.menu-style .header .right-side .cta-btn {
  background-color: #0070b7;
  margin-left: 45px;
  position: relative;
}
.menu-style .header .right-side .cta-btn .cta-text {
  margin-left: 26px;
  padding: 16.5px 0;
}
.menu-style .header .right-side .cta-btn .cta-text:before {
  content: "";
  display: block;
  right: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid;
  border-left-color: #0070b7;
  border-right-color: #0070b7;
}
.menu-style .header .right-side .cta-btn .cta-text:after {
  content: "";
  display: block;
  background-color: #0070b7;
  width: 1000%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
.menu-style .header .right-side .cta-btn .cta-text .addlisting-btn span {
  margin-left: 10px;
}
.menu-style .header .right-side .hamburger-menu {
  display: none;
  align-items: center;
  cursor: pointer;
}
.menu-style .header .right-side .hamburger-menu .menu-btn {
  transition: 0.3s;
}
.menu-style .header .right-side .hamburger-menu .menu-btn span {
  background: #111111;
  height: 2px;
  width: 25px;
  margin-bottom: 5px;
  display: block;
  transform: 0.3s;
}
.menu-style .header .right-side .hamburger-menu .menu-btn span:last-child {
  margin-bottom: 0;
}
.menu-style .header .right-side .hamburger-menu .menu-btn.active {
  position: relative;
  top: -4px;
  transition: 0.3s;
}
.menu-style
  .header
  .right-side
  .hamburger-menu
  .menu-btn.active
  span:first-child {
  transform: rotate(45deg);
  transition: 0.3s;
  position: relative;
  top: 7.4px;
  background-color: #fff;
}
.menu-style
  .header
  .right-side
  .hamburger-menu
  .menu-btn.active
  span:nth-child(2) {
  display: none;
}
.menu-style
  .header
  .right-side
  .hamburger-menu
  .menu-btn.active
  span:last-child {
  transform: rotate(-45deg);
  transition: 0.3s;
  background-color: #fff;
}
.menu-style .header .right-side .navigation .logo {
  display: none;
  margin: 10px 15px;
}
.menu-style .header .right-side .navigation .social-media {
  display: none;
  position: fixed;
  left: -320px;
  right: 0;
  width: 320px;
  bottom: 0;
  transition: 0.5s all;
  background: #eee;
}
.menu-style .header .right-side .navigation .social-media ul {
  display: flex;
}
.menu-style .header .right-side .navigation .social-media ul li:first-child {
  border-left: 0;
}
.menu-style .header .right-side .navigation .social-media ul li {
  width: 25%;
  float: left;
  position: relative;
  text-align: center;
  padding: 25px 0;
}
.menu-style .header .right-side .navigation .social-media ul li a {
  display: flex;
  padding: 0;
  width: 25px;
  height: 25px;
  text-align: center;
  margin: 0 auto;
  background: #0070b7;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.menu-style .header .right-side .navigation .social-media ul li a:hover {
  color: #fff;
}

.main-menu {
  display: flex;
  text-align: center;
}
.main-menu > li.menu-item {
  padding: 10px 0;
}
.main-menu > li.menu-item > a {
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  padding: 18px 25px;
}
.main-menu > li.menu-item > a:hover{
  color: #111;
}
.main-menu > li.menu-item > a:after {
  content: "";
  display: block;
  width: 0%;
  height: 4px;
  background-color: #a4242e;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.main-menu > li.menu-item:hover > a:after,
.main-menu > li.menu-item.active > a:after {
  width: 70%;
  transition: 0.3s;
}
.main-menu > li.menu-item.active > a {
  /* color: #0070b7; */
}
.menu-item-has-children > a > .arrow:after {
  display: inline-block;
  margin-left: 0.55em;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.menu-item-has-children > .sub-menu a:hover{
  color: #111;
}
.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-10px);
  border-bottom: solid 2px #a4242e;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.15);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  /* width: 250px; */
  width: 100%;
}
.menu-item-has-children:hover > .sub-menu {
  border-top: 1px solid #eee;
  opacity: 1;
  visibility: visible;
  z-index: 999;
  transform: translateY(0px);
  transition: 0.3s;
}
.menu-item-has-children.nav-postion:hover > .sub-menu {
  top: 0;
  transform: translateY(-100%);
}
.menu-item-has-children > .sub-menu > li.menu-item {
  padding: 0 10px;
}
.menu-item-has-children.nav-postion
  > .sub-menu
  > li.menu-item-has-children
  > .sub-menu {
  top: inherit;
}
.menu-item-has-children > .sub-menu > li.menu-item > a {
  display: block;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: 0.5s;
  white-space: nowrap;
}
.menu-item-has-children > .sub-menu > li.menu-item:last-child > a {
  border: none;
}
.menu-item-has-children > .sub-menu > li.menu-item:hover > a {
  padding-left: 25px;
  transition: 0.5s;
}
.menu-item-has-children > .sub-menu > li.menu-item-has-children > a > .arrow {
  position: absolute;
  right: 10px;
  transform: rotate(-90deg);
}
.menu-item-has-children
  > .sub-menu
  > li.menu-item-has-children
  > a
  > .arrow:after {
  display: inline-block;
  margin-left: 0;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.menu-item-has-children > .sub-menu > li.menu-item-has-children > .sub-menu {
  left: 100%;
  top: -3%;
}
/*banner*/
/*simple-banner*/
.simple-banner {
  position: relative;
  height: 100vh;
  z-index: 1;
}
.banner_con{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 110px;
}
.simple-banner .swiper-slide>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.banner_con p{
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
}
.banner_con h1{
  color: #fff;
  margin-bottom: 14px;
}
.banner_con h4{
  color: #fff;
}
.banner_con h5{
  color: #fff;
}
.banner_con .right, .banner_con .left{
  width: 50%;
}
.banner_con .block_inner{
  width: 44%;
  border: 1px solid #fff;
  padding: 5%;
  box-sizing: border-box;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}
.banner_con .block_inner:hover{
  border-color: #bd1d2b;
  background-color: rgba(255, 255, 255, 0.3);
}
.banner_con .block_inner:hover p{
  transition: all 0.3s;
  color: #bd1d2b;
}
.banner_con .block_inner:hover .fnt_24{
  transition: all 0.3s;
  color: #bd1d2b;
}
.block_inner p{
  margin-bottom: 40px;
}
.block_inner img{
  width: 60px;
  height: 60px;
}
.banner_con ul{
  color: #fff;
  list-style: none;
  padding-left: 10px;
}
.banner_con li:before{
  content: '';
  display: inline-block;
  background-image: url(/assets/images/arrow.png);
  height: 14px;
  width: 14px;
  background-size: cover;
  margin-right: 10px;
  transition: all 0.3s;
}
.banner_con li:hover:before{
  transform: rotate(90deg);
}
.banner_con li:hover{
  color: #bd1d2b;
  transition: all 0.3s;
  cursor: pointer;
}
.banner_con a{
  background-color: rgba(255,255,255,0.3);
  display: inline-block;
  border-radius: 4px;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.banner_con a em{
  position: relative;
  z-index: 2;
}
.banner_con a span{
  position: absolute;
  left: 0;
  width: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.3);
  transition: all 0.5s;
}
.banner_con a:hover{
  color: #fff;
}
.banner_con a:hover span{
  background-color: #bd1d2b;
  width: 100%;
}
/* .more_con{
  padding-left: 2vw;
  padding-top: 60px;
} */
.four_inner{
  width: 25%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 35px;
  border-left: 1px solid rgba(255,255,255,0.2);
  background-color: transparent;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.hover_{
  position: relative;
  z-index: 2;
}
.hover_con{
  position: absolute;
  bottom: 0;
  height: 0;
  width: 100%;
  transition: all 0.5s;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
}
.banner_con.four_con{
  top: 20vh;
  bottom: 20vh;
}
.four_inner:hover .hover_con{
  background-color: rgba(0, 0, 0, 0.57);
  height: 100%;
}
.four_inner img{
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.four_inner .fnt_36:after{
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: #fff;
  margin-top: 15px;
  border-radius: 4px;
}
.fnt_16{
  font-size: 16px!important;
}
.fnt_24{
  font-size: 24px;
  font-weight: 400;
}
.fnt_36{
  font-size: 30px;
  font-weight: 400;
}
.fnt_48 {
  font-size: 48px;
  font-weight: 400;
}
.fnt_72{
  font-size: 72px;
  font-weight: 400;
}
.fnt_80{
  font-size: 80px;
  font-weight: 400;
}
@media only screen and (max-width: 1599px) {
  .fnt_24{
    font-size: 22px;
  }
  .fnt_36{
    font-size: 30px;
  }
  .fnt_80{
    font-size: 65px;
  }
  .fnt_72{
    font-size: 60px;
    font-weight: 400;
  }
  .fnt_48 {
      font-size: 44px;
  }
}
@media only screen and (max-width: 1399px) {
  .fnt_16{
    font-size: 14px!important;
  }
  .fnt_24{
    font-size: 20px;
  }
  .fnt_36{
    font-size: 28px;
  }
  .fnt_80{
    font-size: 58px;
  }
  .fnt_72{
    font-size: 56px;
    font-weight: 400;
  }
  .fnt_48 {
      font-size: 40px;
  }
}
@media only screen and (max-width: 1279px) {
  .fnt_24{
    font-size: 18px;
  }
  .fnt_36{
    font-size: 24px;
  }
  .fnt_80{
    font-size: 53px;
  }
  .fnt_72{
    font-size: 50px;
    font-weight: 400;
  }
  .fnt_48 {
      font-size: 34px;
  }
  .banner_con a{
    font-size: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .fnt_24{
    font-size: 16px;
  }
  .fnt_36{
    font-size: 20px;
  }
  .fnt_80{
    font-size: 43px;
  }
  .fnt_72{
    font-size: 40px;
    font-weight: 400;
  }
  .fnt_48 {
      font-size: 30px;
  }
  .four_inner{
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .four_con{
    align-items: start;
    align-content: center;
  }
  .four_inner{
    width: 50%;
    padding: 10px;
    border: none;
    height: 250px;
  }
  .four_inner img{
    display: none;
  }
  .banner_con .right{
    width: 100%;
  }
  .banner_con .left{
    display: none;
  }
  .fnt_80{
    font-size: 30px;
  }
  .fnt_72{
    font-size: 30px;
    font-weight: 400;
  }
  .fnt_48 {
      font-size: 24px;
  }
  .fnt_36{
    font-size: 18px;
  }
}
.banner-pagination {
  position: absolute;
  z-index: 2;
  text-align: center;
  display: none;
  bottom: 100px!important;
}
.banner_swiper_button {
  top: 48%;
  width: 80px;
  height: 120px;
  /* background-color: rgba(0, 0, 0, 0.6); */
}
.banner_swiper_button img {
  width: 64px;
  height: 64px;
}
.swiper-button-prev.banner_swiper_button {
  top: 48%;
  width: 80px;
  height: 120px;
  /* background-color: rgba(0, 0, 0, 0.6); */
  left: 10px;
}
.swiper-button-prev.banner_swiper_button img {
  transform: rotate(180deg);
}
/*banner-style-2*/
.range-slider {
  display: flex;
}
.range-slider input {
  border: none;
  width: 40px;
  padding: 0;
  margin: -6px 0 0px 15px;
  font-size: 14px;
}
.banner-style-2 .banner-form form .form-group .ui-widget.ui-widget-content {
  margin-bottom: 20px;
}
.ui-widget.ui-widget-content {
  border: 0px solid #c5c5c5;
  background-color: #ddd;
  height: 0.3em;
  margin: 0.85em 0;
}
.ui-widget-header,
.ui-slider-horizontal .ui-slider-range-min {
  background: #0070b7;
}
.ui-slider-horizontal .ui-slider-handle {
  background: #0070b7;
  font-weight: normal;
  color: #454545;
  border-radius: 1.2em;
  border: 0.4em solid rgba(0, 0, 0, 0);
  cursor: pointer;
  width: 1em;
  height: 1em;
  top: -4px;
}
.ui-slider-horizontal .ui-slider-handle.ui-state-active {
  cursor: pointer;
  width: 1.2em;
  height: 1.2em;
  top: -6px;
}
/*about us*/
.about-left-side {
  padding-right: 50px;
}
.about-left-side .section-header {
  padding-bottom: 0;
}
.about-left-side .about-list ul {
  columns: 2;
}
.about-left-side p,
.about-left-side .about-list ul li {
  margin: 0px 0 20px;
}
.about-left-side .about-list {
  margin-bottom: 5px;
}
.about-left-side .about-list ul li span {
  margin-right: 7px;
  width: 20px;
  height: 20px;
  text-align: center;
  background: #0070b7 none repeat scroll 0 0;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  display: inline-block;
}
.about-left-side,
.about-right-side {
  overflow: hidden;
  position: relative;
}
.about-right-side:before {
  content: "";
  /* background: #0070b7; */
  display: block;
  height: 100%;
  z-index: -1;
  position: absolute;
  width: 100%;
  right: 0;
  left: 35px;
}
.about-right-side img {
  padding: 35px;
  padding-left: 0;
}
/*recent-property*/
.property-grid-box {
  position: relative;
}
.property-grid-box:hover {
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
}
.property-grid-box .property-grid-wrapper {
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border-radius: 3px;
}
.property-grid-box .property-grid-wrapper .property-img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.property-grid-box .property-grid-wrapper .property-img .property-type {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}
.property-address {
  font-size: 14px;
}
.property-grid-box .property-grid-wrapper .property-img .property-address {
  position: absolute;
  bottom: 0;
  padding: 0 10px;
  z-index: 10;
}
.property-grid-box .property-grid-wrapper .property-img .property-address a {
  color: #fff;
}
.property-grid-box .property-grid-wrapper .property-img .property-address a i {
  margin-right: 5px;
}
.property-grid-box .property-grid-wrapper .property-img .property-save-btn {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}
.property-grid-box:hover
  .property-grid-wrapper
  .property-img
  .property-save-btn {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
}
.property-grid-box .property-grid-wrapper .property-img .property-save-btn ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-grid-box
  .property-grid-wrapper
  .property-img
  .property-save-btn
  ul
  li {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.57);
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 2px;
}
.property-grid-box
  .property-grid-wrapper
  .property-img
  .property-save-btn
  ul
  li
  a
  i {
  color: #ccc;
  font-size: 16px;
  line-height: 36px;
}
.property-grid-box
  .property-grid-wrapper
  .property-img
  .property-address:after {
  position: absolute;
  content: "";
  display: block;
  left: 100%;
  top: 0;
  border-top: 25px solid transparent;
  border-left: 25px solid;
  border-left-color: #0070b7;
}
.property-grid-box .property-grid-wrapper .property-img > a {
  display: block;
}
.property-grid-box .property-grid-wrapper .property-img > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 9;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.45) 5%,
    rgba(22, 22, 23, 0) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: 0.7s;
}
.property-grid-box .property-grid-wrapper .property-grid-caption {
  background-color: #fff;
  border-radius: 3px;
  padding-bottom: 1px;
}
.property-grid-box .property-grid-wrapper .property-grid-caption h5 {
  font-size: 20px;
}
.property-grid-box .property-grid-wrapper .property-grid-caption .price {
  display: flex;
  align-items: center;
}
.property-grid-box .property-grid-wrapper .property-grid-caption .price span {
  font-size: 80%;
  margin-left: 4px;
}
.property-grid-box
  .property-grid-wrapper
  .property-grid-caption
  .property-feature {
  columns: 2;
  padding-bottom: 10px;
}
.property-grid-box
  .property-grid-wrapper
  .property-grid-caption
  .property-feature
  li {
  padding: 0px 0 10px 0;
}
.property-grid-box
  .property-grid-wrapper
  .property-grid-caption
  .property-feature
  li
  i {
  font-size: 18px;
  margin-right: 5px;
  color: #4d4d4d;
}
.property-grid-box
  .property-grid-wrapper
  .property-grid-caption
  .property-feature
  li
  span {
  font-size: 14px;
  color: #111111;
  font-weight: 400;
}
.property-grid-box .property-grid-wrapper .property-grid-footer {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-list-footer
  .link-btn
  span,
.property-grid-box .property-grid-wrapper .property-grid-footer > a span {
  transition: 0.5s all;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-list-footer
  > .link-btn:hover
  span,
.property-grid-box .property-grid-wrapper .property-grid-footer > a:hover span {
  padding-left: 8px;
  transition: 0.5s all;
}
.ratings span {
  cursor: pointer;
}
.ratings .rating-text {
  display: block;
  font-weight: 500;
  text-align: center;
}
/*browse-listing-gallery*/
.browse-listing-gallery .browse-gallery > .row > div {
  padding: 7.5px;
}
.browse-listing-gallery .browse-gallery .gallery-img {
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
}
.browse-listing-gallery .browse-gallery .gallery-img .img-overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  top: 0px;
  left: 0px;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
}
.browse-listing-gallery .browse-gallery .gallery-img:hover .btn-border {
  background-color: #fff;
  color: #111111;
  transition: 0.5s all;
}
.browse-listing-gallery .browse-gallery .gallery-img:hover .img-overlay {
  opacity: 0.15;
}
.browse-listing-gallery .browse-gallery .gallery-img:hover .img-overlay:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 0.75s;
}
/*our agents*/
.bg-agents {
  background-image: url(../images/homepage-1/agent-bg-1920x780.jpg);
  position: relative;
  z-index: 9;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.bg-agents:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0);
  z-index: -10;
  opacity: 0.5;
}
.agent-sec .agent-item {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background-color: #fff;
  padding: 30px;
  transition: 0.3s;
}
.agent-sec .agent-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.agent-sec .agent-item .agent-img {
  border-radius: 50%;
}
.agent-sec .agent-item .agent-content h6,
.agent-sec .agent-item .agent-content p {
  margin-bottom: 10px;
}
.agent-sec .agent-item .agent-content {
  text-align: center;
}
.agent-sec .agent-item .agent-content ul {
  display: flex;
  justify-content: center;
}
.agent-sec .agent-item .agent-content ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #0070b7;
  border-radius: 50%;
  margin: 0px 5px;
  border: 1px solid #0070b7;
}
.agent-sec .agent-item .agent-content ul li a:hover {
  background-color: #0070b7;
  color: #fff;
}
/*blog*/
.our_articles .post {
  position: relative;
}
.our_articles .post .post-wrapper {
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border-radius: 3px;
}
.our_articles .post:hover .post-wrapper {
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
}
.our_articles .post .post-wrapper .blog-img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.our_articles .post .post-wrapper .blog-img .post-date {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1;
}
.our_articles .post .post-wrapper .blog-img .post-video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -50%);
  justify-content: center;
  display: flex;
}
.our_articles .post .post-wrapper .blog-img .post-video .video-btn-wrapper {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  font-size: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.25s ease, width 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.our_articles
  .post
  .post-wrapper
  .blog-img
  .post-video
  .video-btn-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: ripple 2s linear infinite;
}
.our_articles
  .post
  .post-wrapper
  .blog-img
  .post-video
  .video-btn-wrapper
  .video-btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: inherit;
  font-size: 30px;
}
.our_articles .post .post-wrapper .blog-img .post-date > a {
  display: inline-block;
  padding: 8px 15px;
  line-height: 10px;
  font-size: 14px;
  position: relative;
  background-color: #0070b7;
  color: #fff;
  float: right;
}
.our_articles .post .post-wrapper .blog-img .post-date > a:after {
  position: absolute;
  content: "";
  display: block;
  right: 100%;
  top: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 13px solid;
  border-left-color: #0070b7;
  border-right-color: #0070b7;
}
.our_articles .post .post-wrapper .blog-meta .post-title {
  font-size: 20px;
}
.our_articles .post .post-wrapper .blog-footer-meta {
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-meta .text-light-white{
    height: 75px;
}
.our_articles .post .post-wrapper .blog-footer-meta .post-author {
  display: flex;
  align-items: center;
}
.our_articles .post .post-wrapper .blog-footer-meta .post-author .author-img {
  margin-right: 15px;
}
.our_articles .post .post-wrapper .blog-footer-meta .post-link > a {
  text-decoration: underline;
}
/*why choose us / testimonials*/
.testimonial-box .testimonials-inner {
  height: 335px;
  overflow: hidden;
}
.testimonial-box .testimonials-inner .testimonials-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-box .testimonials-inner .testimonials-item .testimonials-img {
  border: 10px solid #eee;
  border-radius: 50%;
}
.testimonial-box .testimonials-inner .testimonials-item .testimonials-content {
  width: 100%;
  background: #eee;
  padding: 18px 10px;
  border-bottom: 2px solid #c1c0c0;
  margin-left: -40px;
  z-index: -1;
  padding-left: 40px;
}
.testimonial-box
  .testimonials-inner
  .testimonials-item
  .testimonials-content
  .testimonials-text
  .content {
  display: flex;
}
.testimonial-box
  .testimonials-inner
  .testimonials-item
  .testimonials-content
  .testimonials-text
  .content
  i {
  padding-left: 10px;
  font-size: 20px;
  margin-right: 10px;
  color: #ccc;
}
/*partners*/
.partner-box .partner-logo {
  width: 220px;
  height: 84px;
  margin: 0 auto;
}
.partner-box .partner-logo img {
  width: 220px;
  height: 84px;
}
/*call-to-action*/
.bg-call-to-action {
  background-image: url(../images/homepage-1/free-consultation-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;

  background-size: cover;
  background-position: center;
}
.consult-form .nice-select span {
  color: #fff;
}
.consult-form .nice-select.open span {
  color: #111111;
}
.consult-form input.form-control-custom::placeholder,
.consult-form input.form-control-custom {
  color: #fff;
  background: transparent;
}
.consult-form .form-control-custom:focus {
  background: transparent;
}
/*footer*/
.footer .footer-box .footer-heading {
  position: relative;
  padding: 10px 0;
  padding-left: 25px;
  margin-bottom: 20px;
}
.footer .footer-box .footer-heading:after {
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 3px;
  left: 0;
}
.footer .footer-box .links li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 25px;
}
.footer .footer-box .links li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  content: "\f105";
  position: absolute;
  left: 0;
  top: -4px;
  color: #0070b7;
}
.footer .footer-box .popular_post li:last-child,
.footer .footer-box .links li:last-child {
  margin-bottom: 0;
}
.footer .footer-box .insta-feed {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  margin: 0px;
}
.footer .footer-box .popular_post li,
.footer .footer-box .newsletter .form-group {
  margin-bottom: 15px;
}
.footer .footer-box .social-media ul {
  margin-top: 15px;
  display: flex;
}
.footer .footer-box .social-media ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0070b7;
  border-radius: 50%;
  margin: 0px 5px;
  border: 1px solid #0070b7;
}
.footer .footer-box .social-media ul li a:hover {
  background-color: #0070b7;
  color: #fff;
}
.footer .footer-box .insta-feed .insta-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 2px;
}
.footer .footer-box .popular_post li .post .post-wrapper {
  width: 100%;
  display: flex;
}
.footer .footer-box .popular_post li .post .post-wrapper .popular_post_img {
  position: relative;
  overflow: hidden;
  flex: 0 0 80px;
  max-width: 80px;
  height: 80px;
}
.footer .footer-box .popular_post li .post .post-wrapper .popular_post_img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.footer .footer-box .popular_post li .post .post-wrapper .popular_post_title {
  flex: 0 0 calc(100% - 80px);
  max-width: calc(100% - 80px);
  padding: 2px 15px;
  padding-right: 0;
  width: 100%;
}
.footer
  .footer-box
  .popular_post
  li
  .post
  .post-wrapper
  .popular_post_title
  h6 {
  margin-bottom: 10px;
  line-height: 1.3;
}
.footer
  .footer-box
  .popular_post
  li
  .post
  .post-wrapper
  .popular_post_title
  h6
  a {
  font-weight: 500;
}
/*copyright*/
.copyright {
  padding: 20px 0;
  background: #000;
  border-top: 1px solid #f0f0ff7a;
}
.copyright .payment-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/*back to top*/
#back-top {
  text-align: center;
  display: none;
}
#back-top a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  text-align: center;
  line-height: 36px;
  border: #0070b7 solid 1px;
  color: #ffffff;
  background: #0070b7;
  transition-duration: 0.3s;
  font-size: 22px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 20px;
}
/*======================
3. Blog
========================*/
/*subheader*/
.subheader {
  background: url(../images/about-us/banner-1920x265-2.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  height: 263px;
}
.subheader:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
}
.subheader .breadcrumb-wrapper .page-title h1,
.subheader .breadcrumb-wrapper .custom li a {
  color: #ffffff;
}
.breadcrumb-wrapper .page-title {
  position: relative;
  padding: 10px 0;
  padding-left: 25px;
  margin-bottom: 20px;
}
.breadcrumb-wrapper .page-title:after {
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 3px;
  left: 0;
}
.breadcrumb-wrapper .page-title h1 {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  position: relative;
  margin: 0;
}
.breadcrumb-wrapper .breadcrumb {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.breadcrumb-wrapper .breadcrumb li {
  font-size: 15px;
  color: #111111;
  text-transform: capitalize;
  font-weight: 500;
}
.breadcrumb-wrapper .breadcrumb li a:after {
  content: "-";
  color: #0070b7;
  font-size: 14px;
  margin: 0 5px;
}
.breadcrumb-wrapper .breadcrumb li.active {
  color: #0070b7;
}
/*sidebar*/
.sidebar_wrap .sidebar .sidebar_widgets {
  padding: 20px;
  background: #fff;
  border: #efefef solid 1px;
  border-radius: 3px;
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
  margin: -20px -20px 20px;
  padding: 20px;
  position: relative;
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title h5 {
  font-size: 20px;
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title:after {
  content: "";
  height: calc(100% - 0px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 0px;
  left: 0;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li {
  position: relative;
  margin-bottom: 10px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li:last-child {
  margin-bottom: 0px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li a {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper {
  width: 100%;
  display: flex;
  box-shadow: none;
}
.sidebar_wrap
  .sidebar
  .sidebar_widgets
  .popular_post
  li
  .post:hover
  .post-wrapper {
  box-shadow: none;
}
.sidebar_wrap
  .sidebar
  .sidebar_widgets
  .popular_post
  li
  .post
  .post-wrapper
  .popular_post_img {
  position: relative;
  overflow: hidden;
  flex: 0 0 80px;
  max-width: 80px;
  height: 80px;
}
.sidebar_wrap
  .sidebar
  .sidebar_widgets
  .popular_post
  li
  .post
  .post-wrapper
  .popular_post_title {
  flex: 0 0 calc(100% - 80px);
  max-width: calc(100% - 80px);
  padding: 5px 15px;
  width: 100%;
}
.sidebar_wrap
  .sidebar
  .sidebar_widgets
  .popular_post
  li
  .post
  .post-wrapper
  .popular_post_title
  h6 {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 14px;
}
.sidebar_wrap .sidebar .sidebar_widgets .tags a {
  display: inline-block;
  padding: 5px 15px;
  border: #ccc solid 1px;
  margin: 0 5px 10px 0;
  background: #ffffff;
  font-weight: 500;
  color: #111111;
}
.sidebar_wrap .sidebar .sidebar_widgets .tags a:hover {
  border-color: #0070b7;
  color: #0070b7;
}
/*======================
4. Blog Details
========================*/
.blog-details .post .post-wrapper .blog-img,
.blog-details .post .post-wrapper .blog-img .swiper-slide {
  position: relative;
  width: 100%;
  height: 450px;
}
.blog-details .post .post-wrapper .blog-meta .blog-title {
  position: relative;
  padding: 10px 0;
  padding-left: 25px;
  margin-bottom: 20px;
}
.blog-details .post .post-wrapper .blog-meta .blog-title:after {
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 3px;
  left: 0;
}
.blog-details .post .post-wrapper .blog-meta .blog-title h2 {
  font-size: 30px;
  text-transform: capitalize;
  margin: 0;
}
.blog-details .post .post-wrapper .blog-img .post-date {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1;
}
.blog-details .post .post-wrapper .blog-img .post-date > a {
  display: inline-block;
  padding: 15px;
  line-height: 10px;
  font-size: 14px;
  position: relative;
  background-color: #0070b7;
  color: #fff;
  float: right;
}
.blog-details .post .post-wrapper .blog-img .post-date > a:after {
  position: absolute;
  content: "";
  display: block;
  right: 100%;
  top: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid;
  border-left-color: #0070b7;
  border-right-color: #0070b7;
}
.blog-details .post .post-wrapper .blog-img .post-video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -50%);
  justify-content: center;
  display: flex;
}
.blog-details .post .post-wrapper .blog-img .post-video .video-btn-wrapper {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  font-size: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.25s ease, width 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.blog-details
  .post
  .post-wrapper
  .blog-img
  .post-video
  .video-btn-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: ripple 2s linear infinite;
}
.blog-details
  .post
  .post-wrapper
  .blog-img
  .post-video
  .video-btn-wrapper
  .video-btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: inherit;
  font-size: 30px;
}

.blog-details .post .post-wrapper .post-meta,
.blog-details .post .post-wrapper .post-meta .post-author {
  display: flex;
  align-items: center;
  margin-right: 15px;
  flex-wrap: wrap;
  width: auto;
  border: none;
}
.blog-details .post .post-wrapper .post-meta {
  margin-right: 0;
  justify-content: space-between;
}
.blog-details .post .post-wrapper .post-meta .post-author .author-img {
  margin-right: 15px;
  flex: 0 0 40px;
  max-width: 40px;
  height: 40px;
}
.blog-details .post .post-wrapper .post-meta .post-content span:last-child {
  margin-right: 0;
}
.blog-details .post .post-wrapper .post-meta .post-content span {
  margin-right: 20px;
}
.blog-details .post .post-wrapper .blog-content .description {
  margin-bottom: 20px;
}
.blog-details .post .post-wrapper .blog-content .blog-video iframe {
  height: 450px;
}
.blog-details .post-details-tags-social {
  padding-top: 5px;
}
.blog-details .post-details-tags-social .tags-box {
  display: flex;
  align-items: flex-start;
}
.blog-details .post-details-tags-social .tags {
  margin-left: 15px;
}
.blog-details .post-details-tags-social .tags a {
  display: inline-block;
  padding: 5px 15px;
  border: #ccc solid 1px;
  margin: 0 5px 10px 0;
  background: #ffffff;
  font-weight: 500;
  color: #111111;
}
.blog-details .post-details-tags-social .tags a:hover {
  border-color: #0070b7;
  color: #0070b7;
}
.blog-details .social-media-box > ul {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}
.blog-details .social-media-box > ul > li {
  padding-left: 0;
  margin: 0;
  margin-left: 10px;
}
.blog-details .social-media-box > ul > li > a {
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: none;
  box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
}
.blog-details .social-media-box > ul > li > a.fb {
  color: #4661c5;
}
.blog-details .social-media-box > ul > li > a.fb:hover {
  color: #fff;
  background: #4661c5;
}
.blog-details .social-media-box > ul > li > a.tw {
  color: #45a4e6;
}
.blog-details .social-media-box > ul > li > a.tw:hover {
  color: #fff;
  background: #45a4e6;
}
.blog-details .social-media-box > ul > li > a.ln {
  color: #007bb5;
}
.blog-details .social-media-box > ul > li > a.ln:hover {
  color: #fff;
  background: #007bb5;
}
.blog-details .social-media-box > ul > li > a.gg {
  color: #d6463a;
}
.blog-details .social-media-box > ul > li > a.gg:hover {
  color: #fff;
  background: #d6463a;
}
.blog-details .social-media-box > ul > li > a:hover {
  background-color: #73be20;
  border-color: #73be20;
}
.blog-details .post-author {
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  width: 100%;
}
.blog-details .post-author .author-img {
  position: relative;
  overflow: hidden;
  flex: 0 0 150px;
  max-width: 150px;
  height: 150px;
  margin-right: 15px;
  border-radius: 50%;
}
.blog-details .post-author .author-caption {
  flex: 0 0 calc(100% - 165px);
  max-width: calc(100% - 165px);
  width: 100%;
}
.blog-details .post-author .author-caption h5 {
  margin-bottom: 10px;
}
.pagination-btn nav ul {
  justify-content: space-between;
}
.comment-box .children,
.comment-box .comments {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 35px;
  list-style: inherit;
}
.comment-box .children {
  padding-left: 95px;
}
.comment-box .comments li.comment {
  list-style: outside none none;
  padding-left: 0;
  margin-bottom: 20px;
}
.comment-box .comments li article {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.comment-box .comments li article .comment-avatar {
  margin-right: 20px;
  float: left;
  overflow: hidden;
  height: 80px;
  border-radius: 50px;
}
.comment-box .comments li article .comment-content {
  float: right;
  width: calc(100% - 110px);
}
.comment-box .comments li article .comment-content .comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.comment-box
  .comments
  li
  article
  .comment-content
  .comment-meta
  .comment-meta-reply
  .comment-reply-link {
  font-size: 20px;
  padding: 0 15px;
}
.comment-box
  .comments
  li
  article
  .comment-content
  .comment-meta
  .comment-meta-header
  .post-date
  .date {
  display: inline-block;
  padding: 8px 15px;
  position: relative;
  line-height: 10px;
  font-size: 14px;
  position: relative;
  color: #fff;
}
.comment-box
  .comments
  li
  article
  .comment-content
  .comment-meta
  .comment-meta-header
  .post-date
  .date:after {
  position: absolute;
  content: "";
  display: block;
  left: 100%;
  top: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 13px solid;
  border-left-color: #0070b7;
  border-right-color: #0070b7;
}
/*======================
5. Listing
========================*/
.center-hypen {
  position: relative;
}
.center-hypen:after {
  content: "-";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 25px;
  color: #111111;
}
.sidebar_wrap .sidebar .listing-categories li:after {
  content: "\f162";
  font-family: "Flaticon";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0070b7;
  font-size: 14px;
}
.sidebar_wrap .sidebar .listing-categories li {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.sidebar_wrap .sidebar .listing-categories li:hover a {
  padding-left: 15px;
  transition: 0.3s all;
}
.sidebar_wrap .sidebar .listing-categories li:last-child {
  margin-bottom: 0;
  border-bottom: 0px solid #ccc;
  padding-bottom: 0px;
}
.sidebar_wrap .sidebar .property-filter .range-slider {
  align-items: center;
  justify-content: space-between;
}
.sidebar_wrap .sidebar .property-filter .range-slider input {
  margin-left: 0;
}
.sidebar_wrap .sidebar .property-filter .more-filter button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar_wrap .sidebar .property-filter .more-filter button:after {
  position: relative;
  content: "-";
  background: #fff;
  border: 1px solid #eee;
  color: #111111;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.sidebar_wrap .sidebar .property-filter .more-filter button.collapsed:after {
  content: "+";
}
.sidebar_wrap .sidebar .property-filter .more-filter form {
  margin-top: 20px;
}
.listing-top-heading {
  border-bottom: 2px solid #0070b7;
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-top-heading h6 {
  padding: 20px 0;
}
.listing-top-heading .sort-by {
  display: flex;
  align-items: center;
}
.listing-top-heading .sort-by span {
  white-space: nowrap;
  margin-right: 15px;
}
.listing-top-heading .sort-by .custom-select {
  margin-bottom: 0;
  background: #fff;
}
.listing-top-heading .listing-view .nav-tabs {
  display: flex;
  width: 80px;
  border: none;
}
.listing-top-heading .listing-view .nav-tabs .nav-item {
  margin-left: 15px;
}
.listing-top-heading .listing-view .nav-tabs .nav-item .nav-link {
  font-size: 25px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #111111;
}
.listing-top-heading .listing-view .nav-tabs .nav-item .nav-link.active {
  color: #0070b7;
}
/*property-list-view*/
.img-overlay-new:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 9;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.45) 5%,
    rgba(22, 22, 23, 0) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: 0.7s;
}
.property-list-view .property-list-wrapper {
  display: flex;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.property-list-view:hover {
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
}
.property-list-view .property-list-wrapper .property-list-img {
  flex: 0 0 280px;
  max-width: 280px;
}
.property-list-view .property-list-wrapper .property-list-img .property-type {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}
.property-list-view
  .property-list-wrapper
  .property-list-img
  .property-save-btn {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}
.property-list-view
  .property-list-wrapper
  .property-list-img
  .property-save-btn
  ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-list-view
  .property-list-wrapper
  .property-list-img
  .property-save-btn
  ul
  li {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.57);
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 2px;
}
.property-list-view
  .property-list-wrapper
  .property-list-img
  .property-save-btn
  ul
  li
  a
  i {
  color: #ccc;
  font-size: 16px;
  line-height: 36px;
}
.property-list-view
  .property-list-wrapper
  .property-list-img:hover
  .property-save-btn {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
}
.property-list-view .property-list-wrapper .property-list-img .ratings {
  position: absolute;
  bottom: 0;
  background: #fff;
  z-index: 100;
  padding: 2px 20px;
  padding-right: 5px;
}
.property-list-view .property-list-wrapper .property-list-img .ratings:after {
  position: absolute;
  content: "";
  display: block;
  left: 100%;
  top: 0;
  border-top: 32px solid transparent;
  border-left: 32px solid;
  border-left-color: #ffffff;
}
.property-list-view .property-list-wrapper .property-list-content {
  flex: 0 0 calc(100% - 280px);
  max-width: calc(100% - 280px);
  width: 100%;
  background-color: #fff;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  h4 {
  font-size: 22px;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .desc {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 20px 0;
}

.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature {
  display: flex;
  padding-bottom: 10px;
  overflow-y: auto;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature.active {
  cursor: grab;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature
  li {
  padding: 0px 30px 0px 0px;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature
  li:after {
  content: "";
  background: #eee;
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 15px;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature::-webkit-scrollbar,
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature
  li:last-child:after {
  display: none;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-feature
  li
  i {
  font-size: 18px;
  margin-right: 10px;
  color: #4d4d4d;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-list-footer {
  padding-top: 20px;
  background: #fff;
  border-top: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-list-view
  .property-list-wrapper
  .property-list-content
  .content-box
  .property-list-footer
  .price {
  font-size: 24px;
}
.property-list-view
  .property-list-wrapper.full-width-layout
  .property-list-img {
  flex: 0 0 50%;
  max-width: 50%;
}
.property-list-view
  .property-list-wrapper.full-width-layout
  .property-list-content {
  flex: 0 0 50%;
  max-width: 50%;
}
.property-list-view
  .property-list-wrapper.full-width-layout
  .property-list-content
  .content-box
  h4 {
  font-size: 26px;
}
/*======================
6. Listing Detail
========================*/
.listing-detail-heading {
  position: relative;
  position: relative;
  padding: 20px 0;
  padding-left: 25px;
  background-color: #fff;
}
.listing-detail-heading:after {
  content: "";
  height: calc(100% - 0px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 0px;
  left: 0;
}
.listing-detail .image-sec-table {
  background-color: #fff;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-for
  .slide-item {
  position: relative;
  overflow: hidden;
  height: 450px;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-for
  .slide-item
  a:before {
  position: absolute;
  top: 50%;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
  transform: translate(0px, -50%);
  left: 0;
  right: 0;
  text-align: center;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-for
  .slide-item
  a:after {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #0070b785;
  content: "";
  transition: 0.4s;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-for
  .slide-item:hover
  a:before,
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-for
  .slide-item:hover
  a:after {
  opacity: 1;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  .slide-item {
  border: 2px solid #f4f4f4;
  margin: 0 10px;
  height: 90px;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  .slide-item.slick-current {
  border: 2px solid #0070b7;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button {
  font-size: 0;
  position: absolute;
  top: 0%;
  text-align: center;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button.slick-prev {
  left: 0;
  width: 100%;
  text-align: left;
  width: 30px;
  background: #ffffff;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button.slick-next {
  right: 0;
  width: 100%;
  text-align: right;
  width: 30px;
  background: #ffffff;
}

.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button.slick-next:before,
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button.slick-prev:before {
  content: "\f165";
  font-family: Flaticon;
  font-size: 35px;
  z-index: 1000;
  line-height: 1;
  color: #0070b7;
  transition: 0.5s all;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button.slick-next:before {
  content: "\f163";
  font-family: Flaticon;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button:hover {
  background: #0070b7;
  transition: 0.5s all;
}
.listing-detail
  .image-sec-table
  .images-wrapper
  .detail-page-slider-nav
  button:hover:before {
  color: #fff;
  transition: 0.5s all;
}
.listing-detail .property-details-box .price-box {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-detail .property-details-box .details {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 20px 0;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.listing-detail .property-details-box .details .text,
.listing-detail .property-details-box .details-2 .text {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.listing-detail .property-details-box .details .text span {
  margin-left: 15px;
}
.listing-detail .description-box .head {
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.listing-detail .description-box .desc {
  margin-bottom: 20px;
}
.listing-detail .description-box .content-box .listing-infor {
  columns: 3;
  margin-bottom: 10px;
}
.listing-detail .description-box .content-box .listing-infor li {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.listing-detail .description-box .content-box .listing-infor li:after {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0070b7;
  font-size: 14px;
}
.listing-detail .description-box .content-box .location #locmap {
  height: 350px;
}
.listing-detail .description-box .content-box .contact-form form textarea {
  height: 190px;
}
.listing-detail .description-box .content-box .contact-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*======================
7. Listing Detail Classic
========================*/
.listing-slider-classic-sec
  .listing-slider-classic
  .swiper-wrapper
  .swiper-slide {
  height: 500px;
  width: auto;
}
.listing-slider-classic-sec
  .listing-slider-classic
  .swiper-wrapper
  .swiper-slide
  iframe {
  width: 800px;
  height: 100%;
}
.property-basic-info {
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  padding: 20px 0;
}
.property-basic-info .property-basic-info-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.property-basic-info .property-basic-info-wrapper .property-price {
  position: relative;
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  width: 15%;
  padding: 5px 15px 0 0;
  font-size: 26px;
  font-weight: 600;
  color: #0070b7;
}
.property-basic-info .property-basic-info-wrapper .property-details {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 16%;
  border-left: 1px solid #e1e1e1;
  padding: 0 15px;
}
.property-basic-info
  .property-basic-info-wrapper
  .property-details
  .property-icon {
  width: 32px;
}
.property-basic-info
  .property-basic-info-wrapper
  .property-details
  .property-content {
  width: calc(100% - 42px);
  padding-left: 10px;
  font-size: 13px;
  line-height: 1.5em;
}
.property-basic-info
  .property-basic-info-wrapper
  .property-details
  .property-content
  .property-label {
  display: block;
  font-weight: 300;
}
.property-basic-info .property-basic-info-wrapper .property-cta {
  width: 21%;
}
.listing-header {
  border-bottom: 1px solid #ccc;
}
.listing-header .header-middle-sec,
.listing-header .header-top-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.listing-header .header-middle-sec .left-side ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.listing-header .header-middle-sec .left-side ul li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 20px;
}
.listing-header .header-middle-sec .left-side ul li:after {
  content: "";
  position: absolute;
  height: 100%;
  background-color: #ccc;
  width: 1px;
  display: inline-block;
  margin-left: 15px;
}
.listing-meta .content-box {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.listing-meta .content-box .meta-content .listing-property-details > ul {
  columns: 2;
  margin: 0 -15px 10px;
}
.listing-meta .content-box .meta-content .listing-property-details > ul > li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  padding: 0 15px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  > ul
  > li
  .left-side
  .icon
  img {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  > ul
  > li
  .left-side
  .icon
  i {
  font-size: 16px;
  margin-right: 8px;
}
.listing-meta .content-box .meta-content .listing-property-details iframe {
  height: 450px;
}
.listing-meta .content-box .meta-content .listing-property-details table th,
.listing-meta .content-box .meta-content .listing-property-details table td {
  white-space: nowrap;
  padding: 10px;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .custom-accordion
  .card
  .card-header
  ul {
  display: flex;
  position: absolute;
  right: 15px;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .custom-accordion
  .card
  .card-header
  .collapsebtn.collapsed
  ul
  li
  span {
  color: #111111;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .custom-accordion
  .card
  .card-header
  ul
  li {
  margin-left: 10px;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .floorplan-img {
  height: 310px;
  display: block;
  width: 310px;
  margin: 0 auto;
}
.listing-meta .content-box .meta-content .listing-property-details .tag-box {
  margin-bottom: 10px;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .tag-box
  .tags {
  margin-left: 15px;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .tag-box
  .tags
  a {
  display: inline-block;
  padding: 5px 15px;
  border: #ccc solid 1px;
  margin: 0 5px 10px 0;
  background: #ffffff;
  font-weight: 500;
  color: #111111;
}
.listing-meta
  .content-box
  .meta-content
  .listing-property-details
  .tag-box
  .tags
  a:hover {
  border-color: #0070b7;
  color: #0070b7;
}
.property-tag-2:hover {
  color: #ffffff;
}
/*======================
8. Profile
========================*/
.broker-contact {
  margin-bottom: 15px;
}
.broker-contact li {
  margin-bottom: 5px;
}
.broker-contact li a {
  margin-left: 10px;
  transition: 0.3s all;
}
.broker-contact li:hover a {
  padding-left: 15px;
  transition: 0.3s all;
}
.broker-social ul {
  display: flex;
  justify-content: flex-start;
}
.broker-social ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #0070b7;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #0070b7;
}
.broker-social ul li a:hover {
  background-color: #0070b7;
  color: #fff;
}
/*======================
9. About Us
========================*/
.satisfy-clients {
  background-image: url(../images/about-us/banner-1920x450.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: border 0.3s ease-in, box-shadow 0.3s ease-in, background 0.3s,
    opacity 0.3s ease-in;
}
.satisfy-clients:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(55, 107, 255);
  opacity: 0.5;
}
.satisfy-clients .client-box {
  padding: 15px 0;
  transition: border 0.3s ease-in, box-shadow 0.3s ease-in, background 0.3s,
    opacity 0.3s ease-in;
}
.satisfy-clients .client-box .client-box-inner {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.08);
}
/*======================
10. Faqs
========================*/
.faq-box .faq-wrapper .title-img {
  width: 100%;
  height: 145px;
}
/*======================
11. 404
========================*/
/*404 page*/
#page-404,
.coming-soon {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
#page-404 {
  background-image: url(../images/404.jpg);
}
.coming-soon {
  background-image: url(../images/coming-soonbg.jpg);
}
.coming-soon:before,
#page-404:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  left: 0;
  background-image: linear-gradient(to right, #00000073, #ffffff80);
}
#page-404 section {
  display: flex;
  justify-content: center;
  height: 100vh;
  text-align: center;
  align-items: center;
  width: 100%;
}
#page-404 .caption h5 {
  margin: 50px 0;
  font-weight: 400;
}
.coming-soon .content-wrapper h1 a,
#page-404 .caption h5 a {
  text-decoration: underline;
  text-underline-position: under;
}
/*======================
12. Coming Soon
========================*/
/*coming soon*/
.coming-soon {
  padding: 30px 0;
  min-height: 100vh;
}
.coming-soon .content-wrapper {
  padding: 100px 0px;
}
.coming-soon .content-wrapper .section-header {
  margin: 0;
  text-align: left;
}
.coming-soon .content-wrapper .section-header h1 {
  word-break: break-word;
}
.coming-soon .content-wrapper .counter {
  display: flex;
  margin: 30px 0;
}
.coming-soon .content-wrapper .counter .counter-box {
  margin-right: 20px;
  text-align: center;
}
.coming-soon .content-wrapper .counter .counter-box .inner-box {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 0px;
  margin-bottom: 10px;
}
.coming-soon .content-wrapper .newsletter-form {
  max-width: 550px;
}
.coming-soon .content-wrapper .newsletter-form input::placeholder,
.coming-soon .content-wrapper .newsletter-form input {
  background: transparent;
  color: #fff;
}
.coming-soon .content-wrapper .newsletter-form .input-group-append {
  margin-left: 10px;
}
.coming-soon .content-wrapper .social-media-icons ul {
  display: flex;
  padding: 0;
  list-style: none;
}
.coming-soon .content-wrapper .social-media-icons ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  margin-right: 5px;
  color: #fff;
  border-radius: 0px;
}
.coming-soon .content-wrapper .social-media-icons ul li:hover a {
  background: #0070b7;
}
/*======================
13. Contact Us
========================*/
.contact-info-box:hover {
  background: #fff;
}
.contact-info-box {
  background: #fff;
  padding: 30px 0;
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
}
.contact-info-box i {
  height: 75px;
  width: 75px;
  color: #fff;
  background: #0070b7;
  border-radius: 50%;
  line-height: 75px;
  font-size: 30px;
  margin-bottom: 25px;
  display: inline-block;
}
.contact-info-box h6 {
  line-height: 26px;
}
.contact-form .form-group textarea {
  height: 260px;
}
.contact-map,
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
}
.plan_con {
  text-align: center;
  width: 95%;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  margin: 0 auto 20px;
}

.col-4:nth-child(-n + 3) .plan_con {
  margin-bottom: 60px;
}
.plan_inner {
  transition: all 0.3s;
  position: relative;
  top: 0;
}
.plan_con:hover .plan_inner {
  top: -280px;
}
.plan_bottom {
  width: 100%;
  height: 280px;
  background-color: #fff;
  border-radius: 6px;
}
.plan_bottom p {
  font-size: 20px;
  color: #0070b7;
  font-weight: bold;
  margin-top: 30px;
}
.plan_bottom img {
  width: 80px;
  height: 80px;
}
.plan_top {
  transition: all 0.3s;
  background-color: #0070b7;
  height: 280px;
  width: 100%;
  border-radius: 6px;
  color: #fff;
  box-sizing: border-box;
  padding: 0 24px;
}
.plan_top .tit {
  font-weight: 600;
}
.plan_top img {
  width: 50px;
  height: 50px;
  margin: 10px 0;
}
.plan_top button,
.plan_top a {
  display: block;
  background-color: #fff;
  width: 110px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  color: #0070b7;
}
.unit {
  margin-bottom: 20px;
}

/* 解决方案 */
.c_plan_con {
  text-align: center;
  width: 95%;
  height: 140px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  margin: 0 auto;
}

.col-4:nth-child(-n + 3) .c_plan_con {
  margin-bottom: 60px;
}
.c_plan_inner {
  transition: all 0.3s;
  position: relative;
  top: 0;
}
.c_plan_con:hover .c_plan_inner {
  top: -140px;
}
.c_plan_bottom {
  width: 100%;
  height: 140px;
  background-color: #fff;
  border-radius: 6px;
}
.c_plan_bottom p {
  color: #0070b7;
  font-weight: bold;
}
.c_plan_bottom img {
  width: 50px;
  height: 50px;
  margin: 10px 0;
}
.c_plan_top {
  transition: all 0.3s;
  background-color: #0070b7;
  height: 140px;
  width: 95%;
  top: 240px;
  border-radius: 6px;
  color: #fff;
  box-sizing: border-box;
  padding: 0 24px;
}
.c_plan_top .tit {
  font-weight: 600;
}
.c_plan_top img {
  width: 50px;
  height: 50px;
  margin: 10px 0;
}
.c_plan_top button {
  background-color: #fff;
  width: 110px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  color: #0070b7;
}
.plan-slider .swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-slider .plan-button-next,
.plan-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.plan-button-next {
  right: 6px;
}
.plan-button-prev {
  left: 6px;
}
@media screen and (max-width: 800px) {
  /* .simple-banner{
    display: none;
  } */
  .banner-pagination{
    display: block;
  }
  .plan-button-con {
    display: none;
  }
  .banner_swiper_button {
    display: none;
  }
  .banner_con{
    padding: 0 30px;
  }
}
.mar_t3{
    margin-top: 60px;
}
.page-item{
    cursor: pointer;
}
.c_content{
    font-size: 16px;
}
.c_content p{
    font-size: 16px;
}
.c_content img{
    max-width: 100%;
}
.empty{
    background-color: #fff;
    font-size: 14px;
    margin: 0 15px;
    text-align: center;
    padding-bottom: 10px;
}
.empty img{
    max-width: 100%;
}
.empty p{
    margin: 20px;
    color: #999;
}
video{
  max-width: 100%;
  background-color: #000;
}
.ch_con{
  padding-top: 40px;
}
.ch_tit_con{
  position: relative;
}
.ch_tit_con:before{
  content: "";
  height: calc(100% - 6px);
  width: 5px;
  background-color: #0070b7;
  position: absolute;
  top: 3px;
  left: 0;
}
.ch_tit_con.red:before{
  background-color: rgb(163,15,15);
}
.ch_tit{
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 10px 0;
  padding-left: 25px;
  margin-bottom: 0;
}
.ch_time{
  margin: 20px 0 0;
  color: #999;
}
.bg_white{
  background-color: #fff;
}
/* 党建 */
.dj_top{
  position: relative;
  padding-bottom: 60px;
}
.dj_top .dj_bg{
  width: 100%;
}
.dj_main_tit{
  position: absolute;
  color: #fff;
  top: 24%;
  text-align: center;
  left: 0;
  right: 0;
}
.dj_pos{
  position: absolute;
  color: #fff;
  top: 40%;
  text-align: center;
  left: 0;
  right: 0;
}
.dj_pos p.fnt_16{
  line-height: 42px;
}
.dj_main_tit .fnt_48{
  color: #fff;
  margin-bottom: 0;
}
.dj_main_tit .fnt_16{
  font-family: Arial, Helvetica, sans-serif;
}
.dj_inner_tit{
  margin-bottom: 20px;
  text-align: center;
}
.has_icon{
  color: #555;
  margin-bottom: 30px;
}
.dj_inner_tit.has_icon:before, .dj_inner_tit.has_icon:after{
  content: '';
  display: inline-block;
  background-color: rgb(163,15,15);
  height: 3px;
  width: 30px;
  vertical-align: middle;
  margin: 0 10px;
}
.dj_btn_con{
  text-align: center;
  padding-top: 20px;
}
.dj_btn{
  display: inline-block;
  padding: 6px 10px;
  background-color: #DE2C00;
  color: #fff;
  border-radius: 4px;
}
.dj_btn:hover{
  color: #fff;
  background-color: #d6502f;
}
.yl_inner{
  width: 25%;
  padding: 10px;
}
.yl_inner a{
  position: relative;
  box-sizing: border-box;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.yl_inner p{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 82px;
  text-align: center;
  color: #fff;
  line-height: 80px;
  background: url(/assets/images/party_dot01.png) left bottom repeat-x;
  margin-bottom: 0;
  transition: all 0.3s;
}
.yl_inner:hover p{
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.dj_contain{
  padding-bottom: 60px;
}
.dj_news_con{
  width: 48%;
}
.dj_tab{
  border-bottom: 1px solid #ccc;
}
.dj_tab p{
  width: 30%;
  text-align: center;
  line-height: 60px;
  margin-bottom: 0;
  position: relative;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  cursor: pointer;
  color: #333;
}
.dj_tab p.active:after{
  content: '';
  position: absolute;
  height: 3px;
  width: 80%;
  background-color: rgb(163,15,15);
  bottom: 0;
  left: 10%;
}
.dj_list{
  margin-bottom: 20px;
}
.dj_list_inner{
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  display: block;
}
.dj_list_inner h4 {
  margin-bottom: 6px;
  color: #666;
}
.dj_list_inner p {
  margin-bottom: 0;
  color: #888;
}
.dj_list .dj_btn_con{
  text-align: left;
}
.dj_honor{
  display: block;
}
.dj_honor:hover .fnt_16{
  background-color: #eaeaea;
  border-color: rgb(163,15,15);
  color: rgb(163,15,15);
}
.dj_honor_top{
  position: relative;
}
.dj_honor_time{
  position: absolute;
  padding: 6px 10px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  bottom: 10px;
  left: 10px;
  display: block;
}
.dj_honor .fnt_16{
  padding: 10px;
  border-bottom: 3px solid #dcdcdc;
  transition: all 0.3s;
}
.dj_top_tit{
  position: absolute;
  top: 50%;
  text-align: center;
  color: #fff;
  left: 0;
  right: 0;
}
.dj_module_tab{
  border-bottom: 1px solid #dcdcdc;
}
.dj_module_tab p{
  line-height: 4em;
  margin-bottom: 0;
  width: 20%;
  cursor: pointer;
  color: #666;
  position: relative;
  text-align: center;
}
.dj_module_tab p.active:after{
  content: '';
  position: absolute;
  width: 80%;
  bottom: 0;
  left: 10%;
  height: 3px;
  background-color: rgb(163,15,15);
}
@media only screen and (max-width: 1599px) {
  .dj_pos p.fnt_16{
    line-height: 32px;
  }
}
@media only screen and (max-width: 1279px) {
  .dj_top{
    padding-bottom: 60px;
  }
  .dj_pos p.fnt_16{
    line-height: 28px;
  }
}
@media only screen and (max-width: 1023px) {
  .dj_top{
    padding-bottom: 140px;
  }
  .dj_pos p.fnt_16{
    background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#fff), to(rgba(0, 0, 0, 1)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media only screen and (max-width: 767px){
  .dj_main_tit{
    top: 20%;
  }
  .dj_top{
    padding-bottom: 60px;
  }
  .dj_pos{
    position: static;
    color: #111;
  }
  .dj_inner_tit{
    margin-bottom: 10px;
  }
  .dj_pos p.fnt_16{
    background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#111), to(#111));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #111;
    line-height: 28px;
  }
  .yl_inner{
    width: 50%;
    padding: 5px;
  }
  .dj_news_con{
    width: 100%;
  }
  .dj_list .dj_btn_con{
    text-align: center;
  }
}
@media only screen and (max-width: 567px){
  .dj_top{
    padding-bottom: 60px;
  }
  .dj_main_tit{
    top: 12%;
  }
  .dj_pos{
    position: static;
    color: #111;
    margin-top: 20px;
  }
  .dj_pos p.fnt_16{
    color: #111;
    line-height: 28px;
  }
}
/* 党建支部建设 */
.dj_top_bg{
  position: relative;
}
.dj_top_bg img{
  min-height: 200px;
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}
.our_articles .post .post-wrapper .blog-img .post-date.red > a{
  background-color: rgb(163,15,15);
}
.our_articles .post .post-wrapper .blog-img .post-date.red > a:after{
  border-left-color: rgb(163,15,15);
  border-right-color: rgb(163,15,15);
}

.bg_red .page-item:hover .page-link, .page-item.active .page-link{
  background-color: rgb(163,15,15);
  border-color: rgb(163,15,15);
}
.bg_red .page-link.active{
  background-color: rgb(163,15,15);
  border-color: rgb(163,15,15);
}
.swiper-img-sm{
  display: none;
}
@media only screen and (max-width: 992px){
  .swiper-img-sm{
    display: block;
  }
  .swiper-img{
    display: none;
  }
}


@font-face {
  font-family: "iconfont"; /* Project id  */
  src: url('font/iconfont.ttf?t=1706865056135') format('truetype');
  
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-liebiao:before {
  content: "\e62e";
}

.icon-liebiao1:before {
  content: "\e649";
}
.section-menu{ position: absolute; bottom: 30px; right: 0;}
.section-menu span{ display: inline-block; margin:0  10px; font-size: 20px; color: #c5c5c5;}
.section-menu span.current{color: #af292f; }

.img-fluid{height: 245px;object-fit: cover;}
.img-fluid2{height: 75px;object-fit: cover;}
.isp{ display: block;}
.isp .post{ width: 100%; max-width: 100%;  } 
.isp .post .post-wrapper{  overflow: hidden; background: #fff; height: auto; padding:18px;}
.isp .post .post-wrapper .blog-img{ float: left;height: auto !important;}
.isp .post .post-wrapper .blog-img .img-fluid{height: auto !important;}
.isp .post .post-wrapper .blog-meta{ margin-left: 380px;}