@keyframes scaling {
  0% {
    transform: scale(0.7);
    border-color: #5f449b;
  }
  100% {
    transform: scale(2);
    border-color: rgba(95, 68, 155, 0);
  }
}
@keyframes bganimate {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 100vw 100%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes menu {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.postPropBanner {
  position: relative;
  background: #E9E9E9;
}
.postPropBanner .bannerWrap {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.postPropBanner .bannerWrap .flex {
  align-items: center;
}
.postPropBanner .bannerWrap .flex .col1 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
.postPropBanner .bannerWrap .flex .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.postPropBanner .bannerWrap .img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 412px;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}
.postPropBanner .bannerWrap .img img {
  display: block;
  width: 100%;
}
.postPropBanner .banner-content .text {
  max-width: 396px;
}
.postPropBanner .banner-content .text h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  color: var(--blue);
  margin-bottom: 37px;
}
.postPropBanner .banner-content .text h1 span {
  display: inline-block;
  background: var(--green);
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  padding: 6px 20px;
  text-transform: uppercase;
  border-radius: 5px;
}
.postPropBanner .banner-content .text ul li {
  display: block;
  position: relative;
  padding: 10px 0;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text);
  position: relative;
}
.postPropBanner .banner-content .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 25px;
  height: 25px;
  background: url("../../icon/el_ok.png");
}
.postPropBanner .letConnecBanner {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
.postPropBanner .letConnecBanner .letWrap {
  position: relative;
}
.postPropBanner .letConnecBanner .letWrap h4 {
  color: var(--purple);
  font-size: 25px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.postPropBanner .letConnecBanner .letWrap .item {
  margin-bottom: 20px;
}
.postPropBanner .letConnecBanner .letWrap .item.form {
  margin-bottom: 20px;
}
.postPropBanner .letConnecBanner .letWrap .item .title {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: var(--text);
  margin-bottom: 16px;
}
.postPropBanner .letConnecBanner .letWrap .item .groupbtn {
  display: flex;
  gap: 20px;
}
.postPropBanner .letConnecBanner .letWrap .item .groupbtn .li {
  cursor: pointer;
  padding: 8px 22px;
  border: 1px solid var(--text);
  border-radius: 30px;
}
.postPropBanner .letConnecBanner .letWrap .item .groupbtn .li.active, .postPropBanner .letConnecBanner .letWrap .item .groupbtn .li:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex {
  display: flex;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel {
  border: 1px solid #ccc;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel .selcnumb {
  width: 85px;
  text-align: center;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  position: relative;
  background: url("../../icon/formkit_down.png");
  background-repeat: no-repeat;
  background-position: 60px 18px;
  cursor: pointer;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel ul {
  width: 100%;
  background: var(--white);
  max-height: 220px;
  overflow-y: auto;
  position: absolute;
  bottom: 104%;
  padding: 8px 0;
  display: none;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1490196078);
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel ul::-webkit-scrollbar {
  width: 3px;
  background: #f1f1f1;
  pointer-events: none;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel ul::-webkit-scrollbar-track {
  box-shadow: none;
  pointer-events: none;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel ul::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 10px;
  pointer-events: none;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel ul li {
  display: block;
  cursor: pointer;
  padding: 4px 6px;
  background: var(--white);
  transition: 0.5s ease;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .cuntrtel ul li:hover {
  background: #f1f1f1;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .input {
  position: relative;
  flex: 1;
  margin: 0;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .input .form-control {
  display: block;
  border-left: 0;
  border-top-left-radius: 0;
  height: 47px;
  border-bottom-left-radius: 0;
  font-size: 16px;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .input .form-control:focus ~ label {
  top: -11px;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .input.valid label {
  top: -11px;
}
.postPropBanner .letConnecBanner .letWrap .item .inputflex .input label {
  top: 11px;
  transition: 0.5s ease;
  font-size: 16px;
}
.postPropBanner .letConnecBanner .letWrap .btn-group .btn {
  display: block;
  width: 100%;
  padding: 11px 18px;
  text-transform: uppercase;
}

.postPSecA {
  padding: 80px 0 60px;
  background: #f8f8f8;
}
.postPSecA .heading {
  max-width: 310px;
  margin: 0 auto 45px;
}
.postPSecA .flex .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 10px;
}
.postPSecA .flex .col:nth-child(2) .card::before, .postPSecA .flex .col:nth-child(2) .card::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 63px;
  height: 136px;
  background: url("../../images/post-property/right-outline.png");
  background-repeat: no-repeat;
}
.postPSecA .flex .col:nth-child(2) .card::before {
  left: -70px;
}
.postPSecA .flex .col:nth-child(2) .card::after {
  right: -70px;
}
.postPSecA .card {
  text-align: center;
  max-width: 302px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 25px 0 70px;
}
.postPSecA .card .icon {
  width: 73px;
  height: 73px;
  background: var(--purple);
  border-radius: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.postPSecA .card .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  color: var(--blue);
  margin: 25px 0 12px;
}
.postPSecA .card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: var(--text);
}

.postPSecB {
  padding: 80px 0;
  background: #E9E9E9;
}
.postPSecB .cola {
  flex: 0 1 55%;
  max-width: 55%;
  width: 100%;
  padding-right: 25px;
}
.postPSecB .colb {
  flex: 0 1 45%;
  max-width: 45%;
  width: 100%;
}
.postPSecB .img {
  line-height: 0;
  height: 100%;
}
.postPSecB .img img {
  width: 100%;
  border-radius: 15px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.postPSecB .content {
  max-width: 650px;
}
.postPSecB .content .heading {
  display: block;
  margin-bottom: 30px;
}
.postPSecB .content .heading h2 {
  text-align: left;
}
.postPSecB .content .list {
  position: relative;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid var(--purple);
}
.postPSecB .content .list .item {
  position: relative;
  padding: 16px 0;
}
.postPSecB .content .list .item::before {
  content: "";
  position: absolute;
  left: -58px;
  top: 25px;
  width: 33px;
  height: 33px;
  background: url("../../images/post-property/check.png");
}
.postPSecB .content .list .item .title {
  color: var(--purple);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  margin-bottom: 16px;
}
.postPSecB .content .list .item p {
  color: var(--text);
  font-size: 16px;
}

.postPSecC {
  padding: 80px 0;
  background: #f8f8f8;
}
.postPSecC .heading {
  margin: 0 auto 45px;
}
.postPSecC .container {
  max-width: 897px;
}

.faqQesAns .item .ques {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: var(--text);
  border-bottom: 1px solid #CCCCCC;
  padding: 18px 0;
  position: relative;
  cursor: pointer;
}
.faqQesAns .item .ques em {
  margin: 0;
  width: 16px;
  height: 14px;
  display: flex;
  position: absolute;
  right: 0;
  top: 22px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.faqQesAns .item .ques em::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--text);
  transform: rotate(-90deg);
  transition: 0.5s;
}
.faqQesAns .item .ques em::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--text);
}
.faqQesAns .item .ans {
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;
  display: none;
}
.faqQesAns .item .ans p, .faqQesAns .item .ans li {
  color: var(--text);
  font-size: 16px;
}
.faqQesAns .item .ans ul, .faqQesAns .item .ans p {
  margin: 0 0 15px 0;
}
.faqQesAns .item .ans h3, .faqQesAns .item .ans h4, .faqQesAns .item .ans h5, .faqQesAns .item .ans h6 {
  margin: 25px 0 15px;
}
.faqQesAns .item .ans p {
  line-height: 24px;
}
.faqQesAns .item .ans ul {
  padding-left: 8px;
}
.faqQesAns .item .ans ul li {
  padding: 6px 0;
  padding-left: 30px;
  position: relative;
}
.faqQesAns .item .ans ul li::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--purple);
  border-radius: 20px;
  left: 8px;
  top: 10px;
}
.faqQesAns .item.active .ques {
  color: var(--purple);
  border-color: var(--purple);
}
.faqQesAns .item.active .ques em::before {
  transform: rotate(0);
  transition: 0.5s;
  background: var(--purple);
}
.faqQesAns .item.active .ques em::after {
  background: var(--purple);
}/*# sourceMappingURL=post-property.css.map */