@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);
  }
}
@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);
  }
}
.banner-Search {
  position: relative;
  z-index: 1;
  padding: 90px 0 110px;
}
@media only screen and (min-width: 1400px) {
  .banner-Search {
    padding: 200px 0 150px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-Search {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search {
    padding: 0 5px;
  }
}
.banner-Search.searchPopbanner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  transform: translateY(100%);
}
.banner-Search.searchPopbanner h1 {
  text-align: center;
}
.banner-Search .close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}
.banner-Search .close svg {
  width: 20px;
  height: 20px;
}
.banner-Search.is-open {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 111;
  right: 0;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .banner-Search.is-open .close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.banner-Search.is-open .container {
  margin-top: 0;
  height: 100%;
  padding-top: 40px;
}
.banner-Search .container {
  max-width: 1100px;
}
@media only screen and (max-width: 991px) {
  .banner-Search .container {
    background: #fff;
    padding: 25px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 4px 10px #efefef;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .container {
    padding: 25px 10px;
    box-shadow: none;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-Search .wrapper h1 {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .banner-Search .wrapper h1 {
    display: none;
  }
}
.banner-Search .searcTabBanner {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .banner-Search .searcTabBanner {
    margin-bottom: 0px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .searcTabBanner {
    margin-bottom: 20px;
  }
}
.banner-Search .searcTabBanner ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .banner-Search .searcTabBanner ul {
    justify-content: center;
  }
}
@media only screen and (max-width: 991px) {
  .banner-Search .searcTabBanner ul {
    gap: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .searcTabBanner ul {
    display: block;
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 20px;
  }
  .banner-Search .searcTabBanner ul::-webkit-scrollbar {
    width: 3px;
    background: #f1f1f1;
    pointer-events: none;
  }
  .banner-Search .searcTabBanner ul::-webkit-scrollbar-track {
    box-shadow: none;
    pointer-events: none;
  }
  .banner-Search .searcTabBanner ul::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 10px;
    pointer-events: none;
  }
  .banner-Search .searcTabBanner ul::-webkit-scrollbar {
    height: 2px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .searcTabBanner ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 9px;
  }
}
.banner-Search .searcTabBanner ul li .filtList {
  display: block;
}
.banner-Search .searcTabBanner ul li .filtList .icon {
  width: 50px;
  height: 50px;
  background: var(--gray3);
  border-radius: 50px;
  margin: 0 auto 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-Search .searcTabBanner ul li .filtList span {
  white-space: nowrap;
  display: block;
  font-size: 14px;
  line-height: 17px;
  color: var(--text);
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .banner-Search .searcTabBanner ul li .filtList span {
    font-size: 12px;
  }
}
.banner-Search .searcTabBanner ul li.current .filtList .icon, .banner-Search .searcTabBanner ul li:hover .filtList .icon {
  background: var(--purple);
}
.banner-Search .searcTabBanner ul li.current .filtList .icon img, .banner-Search .searcTabBanner ul li:hover .filtList .icon img {
  filter: invert(1) brightness(11);
}
.banner-Search .searcTabBanner ul li.current .filtList span, .banner-Search .searcTabBanner ul li:hover .filtList span {
  color: var(--black);
}
.banner-Search .bannerSercBox {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1100px;
  margin: 0 auto;
  bottom: -30px;
}
@media only screen and (max-width: 1024px) {
  .banner-Search .bannerSercBox {
    position: static;
  }
}
@media only screen and (min-width: 992px) {
  .banner-Search .bannerSercBox .box {
    background: var(--white);
    padding: 8px;
    border-radius: 10px;
    border-right: 1px solid #DEDDDC;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1490196078);
  }
}
.banner-Search .bannerSercBox .box .inputDev {
  position: relative;
  flex: 1;
  padding-right: 313px;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputDev {
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputSerac {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .inputSerac {
    margin-bottom: 15px;
  }
}
.banner-Search .bannerSercBox .box .inputSerac input {
  width: 100%;
  border: 0;
  outline: none;
  height: 46px;
  background: var(--white);
  border-radius: 10px;
  padding: 0 20px;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputSerac input {
    border: 1px solid #ccc;
    border-radius: 3px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .inputSerac input {
    padding: 0 15px;
  }
}
.banner-Search .bannerSercBox .box .inputSerac input::-moz-placeholder {
  font-size: 14px;
  color: var(--text);
}
.banner-Search .bannerSercBox .box .inputSerac input::placeholder {
  font-size: 14px;
  color: var(--text);
}
.banner-Search .bannerSercBox .box .border {
  border-right: 1px solid #DEDDDC;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .border {
    border: 0;
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    padding: 0 5px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .border {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
}
.banner-Search .bannerSercBox .box .inputControl {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputControl {
    position: static;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .inputControl {
    display: block;
  }
}
.banner-Search .bannerSercBox .box .inputControl .btnTracLocaion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 17px;
  background: var(--gray2);
  color: var(--purple);
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputControl .btnTracLocaion {
    padding: 11px 18px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .inputControl .btnTracLocaion {
    width: 100%;
    justify-content: space-between;
  }
}
.banner-Search .bannerSercBox .box .inputControl .voiceRegSerc {
  height: 100%;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputControl .voiceRegSerc {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 46px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .inputControl .voiceRegSerc {
    top: 1px;
    right: 2px;
    width: 50px;
    height: 44px;
    background: var(--white);
  }
}
.banner-Search .bannerSercBox .box .inputControl .btnsearch {
  padding: 14px 35px;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .inputControl .btnsearch {
    width: 45%;
  }
}
@media only screen and (max-width: 675px) {
  .banner-Search .bannerSercBox .box .inputControl .btnsearch {
    width: 100%;
    margin-top: 15px;
  }
}
.banner-Search .bannerSercBox .box .customDropdown {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .customDropdown {
    border: 1px solid #ccc;
    border-radius: 3px;
  }
}
.banner-Search .bannerSercBox .box .customDropdown .selected .text {
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding: 12px 15px;
  cursor: pointer;
  padding-right: 40px;
  width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .banner-Search .bannerSercBox .box .customDropdown .selected .text {
    width: 100%;
    font-weight: 400;
    color: var(--text);
  }
}
.banner-Search .bannerSercBox .box .customDropdown .selected .text::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 18px;
  background: url("../../icon/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  text-align: left;
  padding-top: 8px;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown .listWrap {
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.14);
  border-radius: 5px;
  padding: 10px 15px;
  display: block;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown .rangeBox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown .rangeBox::after {
  margin: 0 auto;
  width: 8px;
  height: 1px;
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  background: #666;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown .min {
  width: 100%;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown .max {
  width: 100%;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown input {
  width: 100%;
  border: 1px solid var(--gray1);
  outline: none;
  width: 100px;
  padding: 5px 10px;
  margin-bottom: 5px;
  line-height: 37px;
  height: 37px;
  font-size: 13px;
  color: #333;
  background: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.banner-Search .bannerSercBox .box .customDropdown .listDropdown input:focus {
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.08);
  outline: none;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList {
  display: flex;
  max-height: 250px;
  overflow: hidden;
  overflow-y: auto;
  margin-right: -10px;
  padding-right: 10px;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList::-webkit-scrollbar {
  width: 3px;
  background: var(--gray3);
  pointer-events: none;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList::-webkit-scrollbar-track {
  box-shadow: none;
  pointer-events: none;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 10px;
  pointer-events: none;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList .minlist, .banner-Search .bannerSercBox .box .customDropdown .rangeList .maxlist {
  width: 100%;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList .maxlist {
  text-align: right;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList ul {
  width: 100%;
  overflow: initial;
  min-width: initial;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList ul li {
  width: 100%;
  height: 27px;
  line-height: 27px;
  transition: 0.3s;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  transition: 0.5s ease;
}
.banner-Search .bannerSercBox .box .customDropdown .rangeList ul li:hover {
  background: var(--gray3);
  padding-left: 12px;
}
.banner-Search .bannerSercBox .propType {
  display: block;
}
.banner-Search .bannerSercBox .propType .selected.more .text::before {
  content: attr(count);
  position: absolute;
  right: 31px;
  top: 14px;
  width: 17px;
  height: 17px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  font-size: 11px;
  line-height: 18px;
}
.banner-Search .bannerSercBox .propType .listDropdown {
  display: block;
  width: 550px;
}
.banner-Search .bannerSercBox .propType .customRadio ul {
  display: flex;
  gap: 20px;
}
.banner-Search .bannerSercBox .propType .customCheckBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0px;
}
.banner-Search .bannerSercBox .propType .customCheckBox ul li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
}
.banner-Search .buildingType {
  display: block;
}
.banner-Search .buildingType .unitTyp {
  font-size: 14px;
  padding: 0 0 3px;
  margin: 0 0 10px;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  color: #333;
}
.banner-Search .buildingType .customRadio ul li {
  display: block;
  margin-bottom: 8px;
}
.banner-Search .customCheckBox ul li {
  margin-bottom: 5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerupper: 49px;
  --headerbottom: 78px;
  --headerheight: 100px;
  --footerstrip: 40px;
  --blue: #1E0F44;
  --green: #8DCE66;
  --purple: #5F36C9;
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray1: #CCCCCC;
  --gray2: #E3D0FD;
  --gray3: #E9E9E9;
  --gradient: linear-gradient(270deg, #98CC5A 0%, #AEAF20 100%);
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  :root {
    --headerheight: 63px;
  }
}
@media only screen and (max-width: 1007px) {
  :root {
    --headerheight: 75px;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --headerheight: 55px;
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 675px) {
  :root {
    --headerheight: 55px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--green);
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header, body.overflow-hidden .home-banner {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header, body.overflow-hidden .home-banner {
    width: 100%;
  }
}

main {
  margin-top: var(--headerheight);
}

body, html {
  font-size: 14px;
  line-height: 22px;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

body.hidden {
  overflow: hidden;
  margin-right: 10px;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  height: 100%;
  display: block;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 {
  font-size: 30px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 365px) {
  h1 {
    font-size: 24px;
    line-height: 1.2;
  }
}

h2 {
  font-size: 28px;
  line-height: 32px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

h3 {
  font-size: 22px;
  line-height: 26px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

h4 {
  font-size: 20px;
  line-height: 25px;
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 18px;
    line-height: 26px;
  }
}

h5 {
  font-size: 18px;
  line-height: 25px;
}
@media only screen and (max-width: 991px) {
  h5 {
    font-size: 19px;
    line-height: 25px;
  }
}

h6 {
  font-size: 16px;
  line-height: 25px;
}

h4 {
  font-size: 18px;
  line-height: 1.28;
  padding: 0;
}

h5 {
  font-size: 28px;
  line-height: 1.15;
}

h6 {
  font-size: 20px;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  --inlinegap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--inlinegap);
}

img {
  max-width: 100%;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.commonSpace {
  padding: 90px 0 0px;
}
@media only screen and (max-width: 991px) {
  .commonSpace {
    padding: 50px 0 0px;
  }
}

.heading {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .heading {
    margin-bottom: 30px;
  }
}
.heading h2 {
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .heading h2 {
    margin-bottom: 4px;
  }
}
.heading p {
  color: var(--text);
  font-weight: 500;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.modelvoicerecogjs {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}
.modelvoicerecogjs.is-open {
  opacity: 1;
  visibility: visible;
}
.modelvoicerecogjs .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 520px) {
  .modelvoicerecogjs .close {
    top: 20px;
    right: 20px;
  }
}
.modelvoicerecogjs .close svg {
  width: 20px;
  height: 20px;
}
.modelvoicerecogjs .close path {
  stroke: var(--black);
}
.modelvoicerecogjs .modelBody {
  padding: 30px 20px 20px 20px;
  background: #fff;
  width: 375px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 -4px 43px 0 rgba(0, 0, 0, 0.11);
}
.modelvoicerecogjs p {
  font-size: 13px;
  text-align: center;
}
.modelvoicerecogjs .microphone {
  margin: 20px auto;
  z-index: 2;
  background: #5f449b;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
}
.modelvoicerecogjs .microphone::before, .modelvoicerecogjs .microphone::after {
  height: 55px;
  width: 55px;
  border-radius: 100%;
  border: 1px solid #5f449b;
  position: absolute;
  top: 0;
  animation: scaling 2s cubic-bezier(0.12, 0.7, 0.74, 0.71) infinite;
  content: "";
}
.modelvoicerecogjs .microphone::after {
  animation-delay: 1s;
}

.model {
  z-index: 5;
}

.btn {
  display: inline-block;
  overflow: hidden;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 500;
  line-height: 19px;
  cursor: pointer;
  transition: 0.5s ease;
}
.btn.varient-a {
  border: 0;
  background: var(--gradient);
  color: var(--black);
}
.btn.varient-a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn.varient-b {
  border: 1px solid var(--blue);
  color: var(--blue);
}
.btn.varient-b:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn.varient-c {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
}
.btn.varient-c:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn.varient-d {
  border: 1px solid var(--green);
  background: linear-gradient(270deg, #98CC5A 0%, #AEAF20 100%);
  color: var(--black);
}
.btn.varient-d:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.owl-carousel.owl-loaded.navCerCenter .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: var(--white);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 4.8px 0px rgba(0, 0, 0, 0.2509803922);
}
.owl-carousel.owl-loaded.navCerCenter .owl-nav button.owl-prev {
  left: 30px;
}
.owl-carousel.owl-loaded.navCerCenter .owl-nav button.owl-next {
  right: 30px;
}
.owl-carousel.owl-loaded.navToRight .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
}
.owl-carousel.owl-loaded.navToRight .owl-nav button {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customRadio label {
  gap: 13px;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
}
.customRadio label .radioBox {
  width: 25px;
  height: 25px;
  border: 1px solid var(--gray1);
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customRadio label .radioBox::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: #e3e3e3;
  border-radius: 20px;
}
.customRadio label span {
  display: block;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.customRadio label input[type=radio] {
  display: none;
}
.customRadio label input[type=radio]:checked ~ .radioBox {
  border-color: var(--green);
}
.customRadio label input[type=radio]:checked ~ .radioBox::after {
  background: var(--green);
}

.customCheckBox label {
  display: flex;
  cursor: pointer;
  position: relative;
  gap: 12px;
}
.customCheckBox label .fakeChecBox {
  width: 20px;
  height: 18px;
  border: 1px solid var(--gray1);
  border-radius: 3px;
  position: relative;
  display: flex;
  top: 2px;
  align-items: center;
  justify-content: center;
}
.customCheckBox label .fakeChecBox::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: url("../../icon/checked.png");
  border-radius: 20px;
  background-position: center;
  background-size: cover;
}
.customCheckBox label span {
  display: block;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.customCheckBox label input[type=checkbox] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
}
.customCheckBox label input[type=checkbox]:checked ~ .fakeChecBox, .customCheckBox label input[type=checkbox]:checked ~ span {
  border-color: var(--green);
  background: var(--green);
}
@media only screen and (max-width: 767px) {
  .customCheckBox label input[type=checkbox]:checked ~ span {
    background: #eee2ff;
    color: var(--purple);
  }
}

.overlay {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: var(--black);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.overlay.open {
  opacity: 0.34;
  pointer-events: all;
}

.menuOver {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: var(--black);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.menuOver.open {
  opacity: 0.8;
  pointer-events: all;
}

.img_hover .img img {
  transform: scale(1);
  transition: 0.8s ease;
}
.img_hover:hover .img img {
  transform: scale(1.1);
}

.sadeEff {
  position: relative;
  overflow: hidden;
}
.sadeEff::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);
  pointer-events: none;
}
.sadeEff:hover::before {
  animation: shine 1s;
}

video, iframe, img {
  pointer-events: none;
}

.cat-tab {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.cat-tab .tab {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  padding: 6px 0;
  position: relative;
  margin: 0 10px;
}
.cat-tab .tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  width: 0;
  transition: 0.5s ease;
}
.cat-tab .tab.current {
  color: var(--purple);
}
.cat-tab .tab.current::after {
  width: 100%;
}

.social-links ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-links ul li a {
  display: block;
}
.social-links ul li a svg {
  display: block;
}
.social-links ul li a svg path {
  fill: var(--blue);
  transition: 0.5s ease;
}
.social-links ul li a svg rect {
  stroke: var(--blue);
  transition: 0.5s ease;
}
.social-links ul li a:hover svg path {
  fill: var(--green);
}
.social-links ul li a:hover svg rect {
  stroke: var(--green);
}

.form .form-group {
  position: relative;
  margin-bottom: 15px;
}
.form .form-group .form-control {
  border: 0;
  outline: none;
  height: 42px;
  border: 1px solid #ccc;
  padding: 3px 17px;
  width: 100%;
  border-radius: 5px;
}
.form .form-group .form-control:focus ~ label {
  top: -11px;
}
.form .form-group textarea.form-control {
  height: 70px;
  padding-top: 10px;
}
.form .form-group label {
  position: absolute;
  top: 9px;
  left: 12px;
  background: var(--white);
  padding: 0 5px;
  color: var(--text);
  pointer-events: none;
  transition: 0.4s ease;
}
.form .form-group.valid label {
  top: -11px;
}
.form .formbtn .btn {
  display: block;
  width: 100%;
}
.form.border .form-group .form-control {
  border-radius: 0 !important;
  border: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
}
.form.border .form-group label {
  left: 0;
  padding: 0;
  background: transparent;
}

@media only screen and (max-width: 991px) {
  .onlydesk {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .onlymob {
    display: none !important;
  }
}

.msgwish {
  position: fixed;
  bottom: 3%;
  left: 0;
  right: 0;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  padding: 6px;
  border-radius: 2px;
  text-align: center;
  background: #98cb59;
  z-index: 1;
}
.msgwish p {
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
}
.msgwish span {
  position: absolute;
  color: var(--white);
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  text-align: center;
  padding: 5px 0;
  cursor: pointer;
}

.sharproduct .icon {
  cursor: pointer;
}
.sharproduct .postLink {
  background: var(--white);
  padding: 8px 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.0901960784);
  width: 150px;
  border-radius: 5px;
  text-align: left;
  position: absolute;
  top: 100%;
  right: 0px;
  display: none;
}
.sharproduct .postLink ul li {
  display: block;
  margin: 0;
  vertical-align: middle;
}
.sharproduct .postLink ul li a {
  width: 100%;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  color: var(--black);
  transition: 0.5s ease;
}
.sharproduct .postLink ul li a svg, .sharproduct .postLink ul li a span {
  display: inline-block;
}
.sharproduct .postLink ul li a span {
  font-size: 14px;
  color: #666;
}
.sharproduct .postLink ul li a .svg {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
}
.sharproduct .postLink ul li a svg {
  width: 20px;
  height: 20px;
}
.sharproduct .postLink ul li a svg path {
  fill: var(--text);
}
.sharproduct .postLink ul li a:hover span {
  color: var(--purple);
}
.sharproduct .postLink ul li a:hover svg path {
  fill: var(--purple);
}

.quckEnqForm {
  background: var(--white);
  border-radius: 5px;
  border: 1px solid rgba(205, 205, 205, 0.5294117647);
  overflow: hidden;
  margin-bottom: 15px;
}
.quckEnqForm .form .form-head {
  background: #E4E4E4;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.quckEnqForm .form .form-head .icon {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quckEnqForm .form .form-head .icon svg {
  display: block;
  width: 21px;
  height: 21px;
}
.quckEnqForm .form .form-head .title {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
}
.quckEnqForm .form .form-body {
  padding: 16px;
}
.quckEnqForm .form .form-body .form_p_contnet {
  color: var(--text);
  margin-top: 12px;
}
.quckEnqForm .form .form-group .form-control {
  border: 0;
  border-radius: 0;
  padding-left: 0;
  border-bottom: 1px solid #ccc;
}
.quckEnqForm .form .form-group .form-control:focus {
  border-color: var(--purple);
}
.quckEnqForm .form .form-group .form-control:focus ~ label {
  color: var(--purple);
}
.quckEnqForm .form .form-group label {
  left: 0;
  padding-left: 0;
}
.quckEnqForm .form .form-group.valid .form-control {
  border-color: var(--purple);
}
.quckEnqForm .link_btn .btn {
  width: 100%;
  text-align: center;
  padding: 11px 18px;
  font-size: 16px;
}

.threeView {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 57px;
  height: 57px;
  border-radius: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.threeView span {
  width: 57px;
  height: 57px;
  border: 1px solid var(--purple);
  border-radius: 57px;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(0deg);
  transition: 10s linear;
}
.threeView span::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 20px;
}
.threeView .sd {
  font-weight: 500;
  color: var(--purple);
  font-size: 16px;
}
.threeView:hover span {
  transform: rotate(360deg);
}

.filterResale {
  position: absolute;
  right: 0;
  top: 20px;
}
@media only screen and (max-width: 767px) {
  .filterResale {
    position: static;
    margin-top: 15px;
  }
}
.filterResale ul {
  width: 197px;
  position: relative;
  display: flex;
  background: #E9E9E9;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .filterResale ul {
    width: 100%;
  }
}
.filterResale ul li {
  display: block;
  position: relative;
  font-weight: 500;
  transition: 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .filterResale ul li {
    width: 50%;
  }
}
.filterResale ul li:nth-child(3) {
  color: var(--purple);
}
.filterResale ul li label {
  padding: 10px 24px;
  cursor: pointer;
  display: block;
}
@media only screen and (max-width: 767px) {
  .filterResale ul li label {
    padding: 8px 12px;
    text-align: center;
  }
}
.filterResale ul span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 98px;
  background: var(--gray2);
  border-radius: 30px;
  pointer-events: none;
  transition: 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .filterResale ul span {
    width: 50%;
  }
}
.filterResale ul input#checresol:checked ~ span {
  left: 98px;
}
@media only screen and (max-width: 767px) {
  .filterResale ul input#checresol:checked ~ span {
    left: 50%;
  }
}
.filterResale ul input#checresol:checked ~ li:nth-child(3) {
  color: var(--text);
}
.filterResale ul input#checresol:checked ~ li:nth-child(4) {
  color: var(--purple);
}

.switch-Slid {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.switch-Slid .slswl {
  position: relative;
  display: flex;
  background: #E9E9E9;
  border-radius: 30px;
  border: 1px solid #E9E9E9;
}
.switch-Slid .slswl .li {
  padding: 7px 18px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.switch-Slid .slswl .li.active {
  color: var(--white);
}
.switch-Slid .slswl .li.active:nth-child(2) ~ span {
  left: 50%;
}
.switch-Slid .slswl span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: var(--purple);
  border-radius: 30px;
  pointer-events: none;
  transition: 0.5s ease;
}

.table table {
  table-layout: fixed;
  width: 100%;
  text-align: left;
  border-spacing: 0;
  border: 1px solid var(--gray3);
}
.table thead {
  background: var(--gray3);
}
.table tr td, .table tr th {
  padding: 14px 16px;
  font-size: 16px;
}
.table tr th {
  font-weight: 500;
  color: var(--black);
}
.table tr td {
  padding: 14px 16px;
  color: var(--text);
}

.videoIcon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 60px;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .videoIcon {
    width: 47px;
    height: 47px;
  }
}
.videoIcon:before {
  width: 55px;
  height: 55px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media only screen and (max-width: 767px) {
  .videoIcon:before {
    width: 47px;
    height: 47px;
  }
}
.videoIcon .ply {
  border-style: solid;
  border-color: transparent transparent transparent var(--white);
  border-width: 10px 0 10px 15px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 675px) {
  .videoIcon .ply {
    border-width: 5px 0 5px 8px;
  }
}
.videoIcon img {
  width: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .videoIcon img {
    width: 10px;
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.link-nline {
  display: flex;
  gap: 0 10px;
}
.link-nline a {
  display: inline-block;
  border-radius: 5px;
  transition: 0.5s ease;
}
.link-nline a.btn-see {
  background: #E3D0FD;
  color: var(--purple);
}
.link-nline a.btn-see:hover {
  background: var(--green);
  color: var(--white);
}
.link-nline a.btn-wrtRev {
  background: var(--purple);
  color: var(--white);
}
.link-nline a.btn-wrtRev:hover {
  background: var(--green);
}

.crLoliCddes .item {
  padding: 11px;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item {
    padding: 5px;
  }
}
.crLoliCddes .item .card {
  background: rgba(255, 255, 255, 0.0509803922);
  padding: 20px 25px;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card {
    padding: 12px;
  }
}
.crLoliCddes .item .card .card-header {
  padding-bottom: 30px;
}
@media only screen and (max-width: 675px) {
  .crLoliCddes .item .card .card-header {
    padding-bottom: 15px;
  }
}
.crLoliCddes .item .card .card-header a {
  display: flex;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-header a {
    display: block;
  }
}
.crLoliCddes .item .card .card-header a .img {
  flex: 0 1 85px;
  max-width: 85px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-header a .img {
    max-width: 100%;
  }
}
.crLoliCddes .item .card .card-header a .img img {
  border-radius: 5px;
  width: 100%;
  display: block;
}
.crLoliCddes .item .card .card-header a .text {
  padding-left: 12px;
  flex: 1;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-header a .text {
    padding: 12px 0 0;
  }
}
.crLoliCddes .item .card .card-header a .text .loc, .crLoliCddes .item .card .card-header a .text span {
  display: block;
  color: var(--white);
}
.crLoliCddes .item .card .card-header a .text .loc {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 8px;
}
.crLoliCddes .item .card .card-header a .text span {
  font-size: 14px;
  line-height: 20px;
  color: #9C9A9A;
  font-weight: 400;
}
.crLoliCddes .item .card .card-body {
  padding-bottom: 30px;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-body {
    padding-bottom: 15px;
  }
}
.crLoliCddes .item .card .card-body .li {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.crLoliCddes .item .card .card-body .li a {
  display: flex;
  padding: 10px 0;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-body .li a {
    display: block;
  }
}
.crLoliCddes .item .card .card-body .li a .title {
  width: 85px;
  color: #CCCCCC;
  font-size: 14px;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-body .li a .title {
    width: 100%;
  }
}
.crLoliCddes .item .card .card-body .li a .text {
  flex: 1;
  padding-left: 12px;
}
@media only screen and (max-width: 520px) {
  .crLoliCddes .item .card .card-body .li a .text {
    padding: 0;
  }
}
.crLoliCddes .item .card .card-body .li a .text .name {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 3px;
}
.crLoliCddes .item .card .card-body .li a .text span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #9C9A9A;
  font-weight: 400;
}
.crLoliCddes .owl-item {
  opacity: 0.2;
  transition: 0.6s ease;
}
.crLoliCddes .owl-item.current, .crLoliCddes .owl-item.next, .crLoliCddes .owl-item.center, .crLoliCddes .owl-item.active {
  opacity: 1;
}

.btntype .btn {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--text);
  transition: 0.5s ease;
  margin: 0 4px;
}
.btntype .btn:hover, .btntype .btn.active {
  background: var(--gray2);
  color: var(--purple);
  border: 1px solid var(--gray2);
}

.owl-carousel .owl-nav button.disabled {
  opacity: 0.2;
  pointer-events: none;
}

.map_lis {
  min-width: 220px;
  max-width: 260px;
}
.map_lis .gm-style-iw-ch {
  display: none;
}
.map_lis img {
  display: block;
  max-width: 260px;
  width: 100%;
  margin-bottom: 10px;
  max-height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.map_lis .projname {
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 0px;
}
.map_lis .loc, .map_lis .price {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.map_lis .price {
  font-weight: 500;
  color: var(--black);
}
.map_lis ul li {
  margin-bottom: 5px;
  display: block;
}
.map_lis .gm-style-iw {
  max-width: 320px !important;
  width: 100%;
}
.map_lis .clmnvr {
  text-align: right;
  margin-top: 15px;
}
.map_lis .clmnvr a {
  color: var(--black);
  font-weight: 600;
  font-size: 12px;
}
.map_lis .clmnvr a img {
  display: inline-block;
  vertical-align: middle;
}

div#map_2 .gm-style-iw-chr .gm-style-iw-ch, .geoLocMap .gm-style-iw-chr .gm-style-iw-ch {
  display: none;
}
div#map_2 .gm-style-iw-chr button[aria-label=Close], .geoLocMap .gm-style-iw-chr button[aria-label=Close] {
  position: absolute !important;
  top: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
div#map_2 .gm-style-iw-chr button[aria-label=Close] span, .geoLocMap .gm-style-iw-chr button[aria-label=Close] span {
  margin: 0 !important;
  filter: grayscale(1) brightness(0) invert(1);
}
div#map_2 .gm-style-iw-d, .geoLocMap .gm-style-iw-d {
  overflow: hidden !important;
}
div#map_2 .gm-style .gm-style-iw-c, .geoLocMap .gm-style .gm-style-iw-c {
  padding: 8px !important;
}

.projDetailSection .listSideBar {
  position: sticky;
  top: 121px;
}

.projeuct-details .projDetailSection .listSideBar {
  top: 160px;
}

.ModelEnquiry {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  max-width: 440px;
  background: var(--white);
  z-index: 1111;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.ModelEnquiry.is-open {
  transform: translate(0);
}
.ModelEnquiry .close_model svg {
  color: var(--black);
  width: 23px;
}
.ModelEnquiry .close_model svg path {
  fill: var(--black);
}
.ModelEnquiry .modelBody {
  padding: 35px 45px;
  height: 100%;
  padding-right: 0;
}
@media only screen and (max-width: 420px) {
  .ModelEnquiry .modelBody {
    padding: 35px 15px;
    padding-right: 0;
  }
}
.ModelEnquiry .modelBody .modelForm {
  overflow-y: scroll;
  padding-right: 45px;
  height: 100%;
}
@media only screen and (max-width: 420px) {
  .ModelEnquiry .modelBody .modelForm {
    padding-right: 15px;
  }
}
.ModelEnquiry .modelBody .modelForm::-webkit-scrollbar {
  width: 5px;
}
.ModelEnquiry .modelBody .modelForm::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
.ModelEnquiry .modelBody .modelForm::-webkit-scrollbar-thumb {
  background-color: var(--blue);
}
.ModelEnquiry .modelBody .modelForm .title {
  text-align: center;
  margin-bottom: 30px;
}
.ModelEnquiry .modelBody .modelForm .title h3 {
  color: var(--black);
  font-size: 32px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media only screen and (max-width: 420px) {
  .ModelEnquiry .modelBody .modelForm .title h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.ModelEnquiry .modelBody .modelForm .title p {
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
  padding: 0 20px;
}
.ModelEnquiry .modelBody .modelForm .form .link_btn .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  font-size: 16px;
}
.ModelEnquiry .modelBody .modelForm .form .link_btn .btn span {
  color: var(--white);
}
.ModelEnquiry .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.BreadcrumbBox {
  padding: 0 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .BreadcrumbBox {
    display: none;
  }
}
.BreadcrumbBox ul {
  display: flex;
  gap: 0 14px;
}
.BreadcrumbBox ul li {
  color: var(--text);
  font-size: 14px;
}
.BreadcrumbBox ul li a {
  font-size: inherit;
  display: block;
  color: var(--black);
  position: relative;
  padding-right: 25px;
}
.BreadcrumbBox ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  background: url(../../icon/next.png);
  width: 11px;
  background-size: 6px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  top: 2px;
}

.moreServiceAsid {
  background: var(--white);
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #C9C9C9;
}
.moreServiceAsid .MoreWrap h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: var(--black);
  padding: 15px 15px;
  border-bottom: 1px solid #CCCCCC;
}
.moreServiceAsid .MoreWrap ul {
  padding: 12px 0;
}
.moreServiceAsid .MoreWrap ul li {
  display: block;
}
.moreServiceAsid .MoreWrap ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  color: var(--text);
  padding: 7px 15px;
  transition: 0.5s ease;
}
.moreServiceAsid .MoreWrap ul li a:hover {
  color: var(--purple);
}

.modelEmiCalculator {
  position: fixed;
  top: 100%;
  transform: translateY(100%);
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 672px;
  width: 100%;
  z-index: 5;
  margin: 0 auto;
  min-height: 530px;
  max-height: 636px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
@media only screen and (max-width: 675px) {
  .modelEmiCalculator {
    height: 100%;
    top: 0;
    bottom: 0;
    min-height: 100%;
    max-height: 100%;
    transform: translateY(0) translateX(100%);
  }
}
.modelEmiCalculator.is-open {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 675px) {
  .modelEmiCalculator.is-open {
    top: 0;
    transform: translateY(0) translateX(0);
  }
}
.modelEmiCalculator .ModelBody {
  width: 100%;
  background: var(--white);
  padding: 50px 30px;
  position: relative;
  border-radius: 5px;
}
@media only screen and (max-width: 675px) {
  .modelEmiCalculator .ModelBody {
    height: 100%;
    border-radius: 0px;
    padding: 50px 15px;
  }
}
.modelEmiCalculator .modelWrap {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.modelEmiCalculator .close_model {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.modelEmiCalculator .modelTitle {
  text-align: center;
  margin-bottom: 3rem;
}
.modelEmiCalculator .modelTitle h2 {
  color: var(--blue);
  margin-bottom: 5px;
}
.modelEmiCalculator .modelTitle p {
  color: var(--text);
  font-size: 16px;
}
.modelEmiCalculator .calucMaode .item {
  display: flex;
  margin-bottom: 20px;
}
.modelEmiCalculator .calucMaode .item .title, .modelEmiCalculator .calucMaode .item .form-group {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
.modelEmiCalculator .calucMaode .item .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: var(--text);
  padding-top: 8px;
}
.modelEmiCalculator .calucMaode .item .form-group {
  position: relative;
}
.modelEmiCalculator .calucMaode .item .form-control {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #CCCCCC;
  padding: 8px 0;
  outline: none;
  width: 100%;
}
.modelEmiCalculator .calucMaode .item .form-control.emi {
  padding-left: 30px;
  background: #F1E8FF;
  border: 0;
}
.modelEmiCalculator .calucMaode .item .rs {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 0 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modelEmiCalculator .calucMaode .textp {
  color: #666;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.modelEmiCalculator .calucMaode .dropDownRedb .sleleced {
  padding: 8px 0;
  order: 2;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: var(--text);
  border-bottom: 1px solid #CCCCCC;
  height: 41px;
  background: url("../../icon/formkit_down.png");
  background-repeat: no-repeat;
  background-position: 98% 18px;
}
.modelEmiCalculator .calucMaode .dropDownRedb ul {
  display: none;
  border-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1;
  padding: 5px 0;
  box-shadow: 0 0 6px #e7e7e7;
}
.modelEmiCalculator .calucMaode .dropDownRedb ul li {
  display: block;
  padding: 6px 12px;
  color: var(--text);
  cursor: pointer;
}
.modelEmiCalculator .calucMaode .dropDownRedb ul li.active {
  background: var(--purple);
  color: var(--white);
}
.modelEmiCalculator .btn_ {
  display: flex;
  gap: 0 22px;
  margin-top: 30px;
}
.modelEmiCalculator .btn_ .btn {
  width: 100%;
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1111;
  background: var(--black);
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video.is-open .modelBody iframe {
  display: block;
}
.Model_Video .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.Model_Video .close svg path {
  stroke: var(--white);
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
  display: none;
}

@media only screen and (max-width: 675px) {
  .shadeAnim {
    display: none;
  }
}

.wisCou {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 8px;
  background: #5f36c9;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: normal;
  padding: 4px;
  color: #fff;
  border-radius: 20px;
}

.mobStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: #5f36c9;
  display: none;
}
@media only screen and (max-width: 991px) {
  .mobStrip {
    display: block;
  }
}
.mobStrip ul {
  display: flex;
}
.mobStrip ul li {
  width: 25%;
}
@media only screen and (max-width: 675px) {
  .mobStrip ul li:has(.home) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.mobStrip ul .li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  justify-content: center;
  position: relative;
}
.mobStrip ul .li .wisCou {
  right: 20px;
  top: 0;
  background: var(--green);
}
.mobStrip ul .li svg {
  display: block;
  height: 22px;
  margin-bottom: 5px;
}
.mobStrip ul .li p {
  color: var(--white);
  white-space: nowrap;
  font-size: 12px;
  line-height: 16px;
}
.mobStrip ul .li.home {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 0 6px rgba(51, 51, 51, 0.1490196078);
}
@media only screen and (max-width: 675px) {
  .mobStrip ul .li.home {
    width: 52px;
    height: 52px;
  }
}
.mobStrip ul .li.home svg path {
  fill: var(--purple);
}

.serachResult {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-top: 8px;
  display: none;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .serachResult {
    top: 46px;
  }
}
.serachResult ul {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.serachResult ul li {
  display: block;
}
.serachResult ul li a {
  color: var(--text);
  display: block;
  padding: 8px 20px;
  position: relative;
  background: var(--white);
  transition: 0.5s ease;
}
.serachResult ul li .local {
  position: absolute;
  right: 20px;
  top: 6px;
  font-weight: 500;
}
.serachResult ul li:hover a {
  background: var(--gray3);
}
.serachResult ul li.current a {
  background: var(--gray3);
}

.inputSercIn {
  display: flex;
  align-items: center;
}
.inputSercIn .secSelec {
  white-space: nowrap;
  max-width: 230px;
}
.inputSercIn .secSelec div.span {
  display: inline-block;
  padding: 1px 10px;
  background: #f7f7f7;
  width: 100px;
  flex: 0 1 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 15px;
  margin: 0px 3px;
  font-size: 11px;
  border-radius: 30px;
  position: relative;
}
.inputSercIn .secSelec div.span span {
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  width: 18px;
  text-align: center;
  cursor: pointer;
}
.inputSercIn .secSelec div.span.moreli {
  width: auto;
  cursor: pointer;
  padding: 0px 10px;
}

.play-btn-grow {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn-grow {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn-grow {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn-grow::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn-grow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.video-pop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0;
  }
}
.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
}

.faqItem {
  position: relative;
}
.faqItem:first-child .faqans {
  display: block;
}
.faqItem .faqans {
  display: none;
}
.faqItem .que {
  position: relative;
  border-bottom: 1px solid #CCCCCC;
  padding-right: 40px;
  cursor: pointer;
}
.faqItem .que .faqtr {
  position: absolute;
  right: 0;
  top: 18px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqItem .que .faqtr::before, .faqItem .que .faqtr::after {
  content: "";
  position: absolute;
  background: var(--text);
  width: 100%;
  height: 2px;
  transition: 0.5s ease;
}
.faqItem .que .faqtr::after {
  transform: rotate(90deg);
}
.faqItem .que h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: var(--text);
  padding: 14px 0;
}
@media only screen and (max-width: 675px) {
  .faqItem .que h4 {
    font-size: 16px;
    line-height: 1.4;
  }
}
.faqItem .faqans {
  padding-top: 20px;
}
.faqItem.current .que {
  border-color: var(--purple);
}
.faqItem.current .que h4 {
  color: var(--purple);
}
.faqItem.current .que .faqtr::before {
  background: var(--purple);
}
.faqItem.current .que .faqtr::after {
  opacity: 0;
}

.form-control:is(textarea) {
  padding-top: 12px !important;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  border-bottom: 1px solid var(--gray1);
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  header {
    z-index: 5;
  }
}
header .container-fluid .flex {
  align-items: center;
}
header .container-fluid ul li {
  vertical-align: middle;
}
header .container-fluid ul li:not(.inline-flex) {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  header .model {
    z-index: 1;
  }
}
header .upper-header {
  background: var(--blue);
}
@media only screen and (max-width: 1024px) {
  header .upper-header {
    display: none;
  }
}
header .upper-header ul li {
  color: var(--white);
  padding: 0;
}
header .upper-header ul li a {
  color: inherit;
  line-height: inherit;
}
header .upper-header .strip-nav {
  flex: 1;
}
header .upper-header .strip-nav li.hasDropdown {
  cursor: pointer;
  font-weight: 500;
}
header .upper-header .strip-nav li.hasDropdown span {
  padding: 8px 18px;
  padding-right: 35px;
  position: relative;
  display: block;
}
header .upper-header .strip-nav li.hasDropdown span::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 14px;
  height: 8px;
  top: 16px;
  right: 12px;
  background: url(../../icon/arrow-down-blue.svg) no-repeat;
  background-position-y: 50%;
  background-position-x: 100%;
  filter: grayscale(1) brightness(1) invert(1);
}
header .upper-header .strip-nav li.hasDropdown span::before {
  content: "";
  position: absolute;
  top: 100%;
  border-left: 10px solid rgba(0, 0, 0, 0);
  border-right: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 16px solid #fff;
  left: 0;
  margin-top: 8px;
  opacity: 0;
  pointer-events: none;
  display: none;
}
header .upper-header .strip-nav li.hasDropdown:hover {
  background: var(--white);
}
header .upper-header .strip-nav li.hasDropdown:hover span {
  color: var(--blue);
}
header .upper-header .strip-nav li.hasDropdown:hover span::after {
  filter: grayscale(1) brightness(0) invert(0);
}
header .upper-header .strip-nav li.hasDropdown:hover span::before {
  opacity: 1;
}
header .upper-header .strip-nav li.hasDropdown:hover .megaMenuDropdown {
  display: block;
}
header .upper-header .strip-nav li.hasDropdown:hover .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.current a {
  background: var(--white);
}
header .upper-header .strip-nav li.hasDropdown:hover .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.current .mengaSubnav {
  display: block;
}
header .upper-header .strip-con {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}
header .upper-header .strip-con li {
  display: flex !important;
  align-items: center;
}
header .upper-header .strip-con .searchBtn {
  cursor: pointer;
  padding: 0 22px;
}
header .botom-header {
  padding: 4px 0;
}
header .botom-header .container-fluid .flex .logo {
  flex: 0 1 auto;
}
header .botom-header .container-fluid .flex .logo a {
  display: block;
  line-height: 0;
}
@media only screen and (max-width: 991px) {
  header .botom-header .container-fluid .flex .logo a img {
    max-width: 100px;
  }
}
header .botom-header .container-fluid .flex .bottmHed-Right {
  flex: 1;
}
header .botom-header .container-fluid .flex .bottmHed-Right .flex {
  justify-content: flex-end;
  align-items: unset;
}
@media only screen and (min-width: 992px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .flex {
    gap: 20px;
  }
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(100%);
    bottom: -100%;
    transition: 0.5s ease;
    padding: 0 6px;
  }
}
@media only screen and (max-width: 991px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun.is-open {
    transform: translateY(0%);
    bottom: 0px;
  }
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .userIcHed {
  line-height: 0;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .userIcHed {
    position: absolute;
    left: 0;
    right: 0;
    top: -32px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .userIcHed img {
    display: block;
    width: 24px;
    filter: brightness(0) invert(0.4);
  }
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas {
  position: absolute;
  top: 100%;
  right: -15px;
  width: 200px;
  padding-top: 13px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas {
    position: static;
    opacity: 1;
    transform: translate(0);
    pointer-events: all;
    width: 100%;
  }
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas ul {
  background: var(--white);
  position: relative;
}
@media only screen and (max-width: 991px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas ul {
    padding: 10px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}
@media only screen and (min-width: 992px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas ul {
    padding: 6px 0;
    box-shadow: 0px 3px 5.6px 0px rgba(0, 0, 0, 0.1019607843);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}
@media only screen and (min-width: 992px) {
  header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas ul::before {
    content: "";
    position: absolute;
    top: -22px;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    border-bottom: 14px solid #1e0f44;
    right: 21px;
    margin-top: 8px;
    pointer-events: none;
  }
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas li {
  display: block;
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas li a {
  display: block;
  padding: 5px 13px;
  color: var(--text);
  transition: 0.5s ease;
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun .urdDas li a:hover {
  color: var(--purple);
}
header .botom-header .container-fluid .flex .bottmHed-Right .myAccoun:hover .urdDas {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: all;
}
header .hedLocation {
  max-width: 145px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--text);
  position: relative;
}
@media only screen and (max-width: 991px) {
  header .hedLocation {
    border: 0;
  }
}
@media only screen and (max-width: 675px) {
  header .hedLocation {
    max-width: 95px;
    z-index: 2;
  }
}
header .hedLocation .selectLoc {
  position: relative;
  cursor: pointer;
}
header .hedLocation .selectLoc::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 18px;
  background: url("../../icon/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 675px) {
  header .hedLocation .selectLoc::after {
    right: 4px;
  }
}
header .hedLocation .selectLoc .glob {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  header .hedLocation .selectLoc .glob {
    display: none;
  }
}
header .hedLocation .selectLoc .selcCun {
  padding: 0 25px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 675px) {
  header .hedLocation .selectLoc .selcCun {
    padding-left: 0;
  }
}
header .hedLocation .hedTopCityDrop {
  position: absolute;
  top: 100%;
  right: 0;
  max-width: 620px;
  width: 620px;
  padding: 20px;
  display: none;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    width: 100%;
  }
}
header .hedLocation .hedTopCityDrop .sh {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  opacity: 0.3;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop .sh {
    display: none;
  }
}
header .hedLocation .hedTopCityDrop .wrap {
  background: var(--white);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.1490196078);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop .wrap {
    width: 100%;
    height: 100%;
    box-shadow: none;
  }
}
header .hedLocation .hedTopCityDrop .wrap .close {
  display: none;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop .wrap .close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 7px;
    top: 8px;
    width: 40px;
    height: 40px;
    z-index: 1;
  }
}
header .hedLocation .hedTopCityDrop .wrap .close svg {
  width: 22px;
  height: 22px;
}
header .hedLocation .hedTopCityDrop .wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 60px;
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  border-bottom: 16px solid #ffffff;
  display: none;
}
header .hedLocation .hedTopCityDrop .wrap .topHedCit {
  position: relative;
}
header .hedLocation .hedTopCityDrop .wrap .topHedCit .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--black);
}
header .hedLocation .hedTopCityDrop .wrap .topHedCit .inpTopCity {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop .wrap .topHedCit .inpTopCity {
    position: static;
  }
}
header .hedLocation .hedTopCityDrop .wrap .topHedCit .inpTopCity input {
  border: 0;
  outline: none;
  border-bottom: 1px solid var(--text);
  height: 44px;
  width: 240px;
  padding-top: 10px;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop .wrap .topHedCit .inpTopCity input {
    width: 100%;
  }
}
header .hedLocation .hedTopCityDrop .wrap .topHedCit .inpTopCity svg {
  position: absolute;
  bottom: 6px;
  right: 0;
}
header .hedLocation .hedTopCityDrop .wrap .topHedCit .inpTopCity svg path {
  stroke: var(--text);
}
header .hedLocation .hedTopCityDrop .wrap .listCount {
  padding: 30px 0 15px;
}
header .hedLocation .hedTopCityDrop .wrap .listCount ul {
  display: flex;
  flex-wrap: wrap;
}
header .hedLocation .hedTopCityDrop .wrap .listCount ul li {
  flex: 0 1 20%;
  max-width: 20%;
  padding: 3px;
}
@media only screen and (max-width: 991px) {
  header .hedLocation .hedTopCityDrop .wrap .listCount ul li {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    padding: 0;
  }
}
header .hedLocation .hedTopCityDrop .wrap .listCount ul li a {
  display: block;
  text-align: center;
  background: var(--white);
  padding: 15px 8px;
  border-radius: 6px;
  transition: 0.5s ease;
}
header .hedLocation .hedTopCityDrop .wrap .listCount ul li a img {
  display: block;
  margin: 0 auto 8px;
  max-height: 33px;
  width: auto;
}
header .hedLocation .hedTopCityDrop .wrap .listCount ul li a span {
  display: block;
  color: var(--text);
}
header .hedLocation .hedTopCityDrop .wrap .listCount ul li a:hover {
  background: #F2F2F2;
}
@media only screen and (min-width: 992px) {
  header .wishIcon {
    width: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
  }
}
header .wishIcon .icon {
  position: relative;
}

.humburger {
  width: 36px;
  height: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin-right: 35px;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .humburger {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .humburger {
    margin-right: 15px;
    width: 32px;
    height: 24px;
  }
}
.humburger span {
  width: 100%;
  height: 2px;
  background: var(--black);
}
.humburger span::before, .humburger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--black);
}
.humburger span::before {
  top: 2px;
}
.humburger span::after {
  bottom: 2px;
}

@media only screen and (max-width: 991px) {
  footer {
    margin-bottom: 50px;
  }
}
footer .footerStrip {
  background: var(--blue);
}
footer .footerStrip .nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .footerStrip .nav ul {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding: 8px 0;
  }
}
footer .footerStrip .nav ul li {
  color: var(--white);
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  footer .footerStrip .nav ul li {
    padding: 8px 18px;
    font-size: 14px;
    display: inline-block;
    border-radius: 20px;
  }
}
footer .footerStrip .nav ul li.current {
  background: var(--white);
  color: var(--blue);
}
footer .navLinksGro {
  background: var(--white);
  padding: 25px 0 50px;
}
@media only screen and (max-width: 675px) {
  footer .navLinksGro {
    padding: 20px 0 10px;
  }
}
footer .navLinksGro .tab {
  display: none;
}
footer .navLinksGro .tab.current {
  display: block;
}
footer .navLinksGro .col {
  flex-grow: 1;
}
@media only screen and (max-width: 1024px) {
  footer .navLinksGro .col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  footer .navLinksGro .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 675px) {
  footer .navLinksGro .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .navLinksGro .item .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  margin-bottom: 15px;
}
footer .navLinksGro .item ul li {
  display: block;
}
footer .navLinksGro .item ul li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  padding: 8px 0;
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  footer .navLinksGro .item ul li a {
    padding: 5px 0;
  }
}
footer .navLinksGro .item ul li a:hover {
  color: var(--green);
}
footer .footerCenter {
  background: var(--gray3);
  padding: 60px 0;
}
@media only screen and (max-width: 675px) {
  footer .footerCenter {
    padding: 10px 0;
  }
}
footer .footerCenter .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  footer .footerCenter .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
footer .footerCenter .col.border {
  border-left: 1px solid rgba(65, 65, 65, 0.1019607843);
  border-right: 1px solid rgba(65, 65, 65, 0.1019607843);
}
@media only screen and (max-width: 675px) {
  footer .footerCenter .col.border {
    border: 0;
  }
}
@media only screen and (max-width: 675px) {
  footer .footerCenter .col.border {
    border-top: 1px solid rgba(65, 65, 65, 0.1019607843);
    border-bottom: 1px solid rgba(65, 65, 65, 0.1019607843);
  }
}
footer .footerCenter .item {
  text-align: center;
}
@media only screen and (max-width: 675px) {
  footer .footerCenter .item {
    padding: 30px 0;
  }
}
footer .footerCenter .item .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--blue);
  margin: 10px 0;
}
footer .footerCenter .item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text);
  margin-bottom: 25px;
}
@media only screen and (max-width: 1024px) {
  footer .footerCenter .item p {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 675px) {
  footer .footerCenter .item p {
    margin-bottom: 15px;
  }
}
footer .footerCenter .item .btn {
  padding: 8px 18px;
}
@media only screen and (max-width: 767px) {
  footer .footerCenter .social-links {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  footer .footerCenter .social-links li a svg {
    width: 25px;
    height: 25px;
  }
}
footer .footer-bottom {
  background: var(--white);
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  footer .footer-bottom {
    padding: 20px 0;
  }
}
footer .footer-bottom .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}
@media only screen and (max-width: 1024px) {
  footer .footer-bottom .nav {
    display: none;
  }
}
footer .footer-bottom .nav a {
  color: var(--blue);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  padding: 8px;
}
footer .footer-bottom .nav a:hover {
  color: var(--purple);
}
footer .footer-bottom .copy-right ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}
@media only screen and (max-width: 1024px) {
  footer .footer-bottom .copy-right ul {
    gap: 0;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .copy-right ul {
    flex-wrap: wrap;
  }
}
footer .footer-bottom .copy-right ul li {
  display: block;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  footer .footer-bottom .copy-right ul li {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 0 5px;
  }
}
footer .footer-bottom .copy-right ul li a {
  color: #9C9A9A;
  display: block;
}
footer .footer-bottom .copy-right ul li a span, footer .footer-bottom .copy-right ul li a img {
  display: inline-block;
  vertical-align: middle;
}
footer .footer-bottom .copy-right ul li a img {
  margin-left: 20px;
}

.growPropLoginMod {
  position: fixed;
  left: 0;
  right: 0;
  max-width: 415px;
  width: 100%;
  margin: 0 auto;
  top: 100%;
  transform: translateY(100%);
  transition: 0.6s ease;
}
@media only screen and (max-width: 991px) {
  .growPropLoginMod {
    padding: 0 8px;
  }
}
.growPropLoginMod.is-open {
  top: 50%;
  transform: translateY(-50%);
}
.growPropLoginMod .modelBody {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .growPropLoginMod .modelBody {
    padding: 24px 15px;
  }
}
.growPropLoginMod .modelBody .close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .growPropLoginMod .modelBody .close {
    right: 13px;
  }
}
.growPropLoginMod .modelBody .close svg {
  width: 45px;
  height: 45px;
}
.growPropLoginMod .modelBody .title {
  font-size: 28px;
  line-height: 32px;
  color: #1E0F44;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.growPropLoginMod .modelBody .form {
  padding-bottom: 20px;
}
.growPropLoginMod .modelBody .stepA .formbtn {
  margin-top: 30px;
}
.growPropLoginMod .modelBody .stepB {
  display: none;
}
.growPropLoginMod .modelBody .stepB .btnlBack {
  position: absolute;
  left: 10px;
  top: 10px;
  cursor: pointer;
}
.growPropLoginMod .modelBody .stepB .btnlBack svg {
  width: 35px;
  height: 35px;
}
.growPropLoginMod .modelBody .stepB .btnlBack svg path {
  fill: #999999;
}
.growPropLoginMod .modelBody .or {
  text-align: center;
  position: relative;
  margin-top: 25px;
}
.growPropLoginMod .modelBody .or::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ccc;
}
.growPropLoginMod .modelBody .or span {
  display: inline-block;
  color: var(--text);
  position: relative;
  z-index: 1;
  padding: 0 8px;
  background: var(--white);
}
.growPropLoginMod .modelBody .loginWith {
  margin-top: 30px;
}
.growPropLoginMod .modelBody .loginWith .btnflex {
  display: flex;
  gap: 0 10px;
}
.growPropLoginMod .modelBody .loginWith .btnflex .btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0 10px;
  justify-content: center;
  border: 1px solid var(--gray1);
}
.growPropLoginMod .modelBody .otptex {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 20px;
}
.growPropLoginMod .modelBody .otptex .otpTitl {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}
.growPropLoginMod .modelBody .otptex .txt {
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
}
.growPropLoginMod .modelBody .otpInput {
  display: flex;
  gap: 0 20px;
}
.growPropLoginMod .modelBody .otpInput input {
  background: #f1f1f1;
  border: 0;
  outline: none;
  color: var(--black);
  flex: 1;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
.growPropLoginMod .modelBody .resen {
  text-align: center;
  margin-top: 15px;
  color: var(--text);
  font-size: 14px;
}
.growPropLoginMod .modelBody .resen span {
  cursor: pointer;
  color: var(--purple);
  display: inline-block;
  margin-left: 3px;
  font-weight: 500;
}

@media only screen and (min-width: 992px) {
  .HwishlistModel {
    position: absolute;
    top: 100%;
    right: -60px;
    max-width: 480px;
    width: 620px;
    padding: 20px;
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .HwishlistModel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 12px;
    transform: translateY(200%);
    transition: 0.5s ease;
  }
}
@media only screen and (max-width: 991px) {
  .HwishlistModel.is-open {
    transform: translateY(0%);
  }
}
.HwishlistModel.is-open .HwishModelBody .close {
  opacity: 1;
  top: -48px;
  transition-delay: 0.4s;
}
.HwishlistModel .sh {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  opacity: 0.3;
}
@media only screen and (max-width: 767px) {
  .HwishlistModel .sh {
    display: none;
  }
}
.HwishlistModel .HwishModelBody {
  background: var(--white);
  padding: 30px 20px 40px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.1490196078);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HwishModelBody {
    padding: 15px;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.HwishlistModel .HwishModelBody::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 45px;
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  border-bottom: 16px solid #ffffff;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HwishModelBody::before {
    display: none;
  }
}
.HwishlistModel .HwishModelBody .close {
  display: none;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HwishModelBody .close {
    position: absolute;
    top: 48px;
    opacity: 0;
    left: 0;
    right: 0;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.5s ease;
  }
}
.HwishlistModel .HwishModelBody .close svg {
  width: 20px;
}
.HwishlistModel .HwishModelBody .close svg path {
  stroke: var(--text);
}
.HwishlistModel .wishTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--blue);
  margin-bottom: 15px;
}
.HwishlistModel .HedWishlist {
  max-height: 273px;
  overflow-y: scroll;
  margin-right: -10px;
  padding-right: 10px;
}
.HwishlistModel .HedWishlist::-webkit-scrollbar {
  width: 3px;
  background: #f1f1f1;
  pointer-events: none;
}
.HwishlistModel .HedWishlist::-webkit-scrollbar-track {
  box-shadow: none;
  pointer-events: none;
}
.HwishlistModel .HedWishlist::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 10px;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HedWishlist {
    max-height: 320px;
  }
}
.HwishlistModel .HedWishlist .wlmoWrap .item {
  position: relative;
}
.HwishlistModel .HedWishlist .wlmoWrap .item:not(:first-child) {
  border-top: 1px solid #C7C7C7;
}
.HwishlistModel .HedWishlist .wlmoWrap .item a {
  padding: 15px 0;
  position: relative;
  display: flex;
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .img {
  flex: 0 1 93px;
  max-width: 93px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HedWishlist .wlmoWrap .item a .img {
    flex: 0 1 50px;
    max-width: 50px;
  }
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .img img {
  width: 100%;
  border-radius: 5px;
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .text {
  flex: 1;
  width: 100%;
  padding-left: 24px;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HedWishlist .wlmoWrap .item a .text {
    padding-left: 12px;
  }
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .text .projName {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--blue);
  margin-bottom: 3px;
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .text .sord {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HedWishlist .wlmoWrap .item a .text .sord {
    margin-bottom: 5px;
  }
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .text .pric {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text);
  margin-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HedWishlist .wlmoWrap .item a .text .pric {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--text);
    margin: 0;
  }
}
.HwishlistModel .HedWishlist .wlmoWrap .item a .text .sqf {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .HedWishlist .wlmoWrap .item a .text .sqf {
    display: inline-block;
    vertical-align: middle;
  }
}
.HwishlistModel .HedWishlist .wlmoWrap .item button {
  position: absolute;
  right: 0;
  bottom: 15px;
}
.HwishlistModel .whisGruBtn {
  display: flex;
  margin-top: 25px;
  gap: 0 12px;
}
.HwishlistModel .whisGruBtn .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  font-size: 16px;
  padding: 8px 14px;
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .whisGruBtn .btn {
    display: none;
  }
}
.HwishlistModel .whisGruBtn .btn.btncompre {
  border: 1px solid var(--blue);
}
@media only screen and (max-width: 991px) {
  .HwishlistModel .whisGruBtn .btn.btncompre {
    display: flex;
  }
}

.megaMenuDropdown {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 15px 28px;
  padding-top: 0;
  display: none;
}
.megaMenuDropdown .megaMenuWrap {
  background: var(--white);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  position: relative;
}
.megaMenuDropdown .megaMenuWrap .menuList {
  background: #F3F3F3;
  max-width: 350px;
  width: 100%;
  padding: 15px 0;
}
@media only screen and (max-width: 1200px) {
  .megaMenuDropdown .megaMenuWrap .menuList {
    max-width: 300px;
  }
}
.megaMenuDropdown .megaMenuWrap .menuList .nav {
  padding-right: 5px;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul {
  max-height: 340px;
  margin-right: -5px;
  overflow: hidden;
  overflow-y: auto;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul::-webkit-scrollbar {
  width: 3px;
  background: #f1f1f1;
  pointer-events: none;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul::-webkit-scrollbar-track {
  box-shadow: none;
  pointer-events: none;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 10px;
  pointer-events: none;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li {
  display: block;
  color: var(--blue);
  padding: 0;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li > a {
  color: inherit;
  display: block;
  padding: 4px 22px;
  transition: 0.5s ease;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav {
  position: absolute;
  top: 0;
  left: 348px;
  right: 0;
  display: none;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav {
    left: 300px;
    height: 100%;
    overflow: auto;
  }
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap {
  padding: 20px 40px;
  background: var(--white);
}
@media only screen and (max-width: 1200px) {
  .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap {
    padding: 20px 0;
  }
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul {
    -moz-column-count: 2;
         column-count: 2;
    display: block;
  }
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 1px;
  background: #ccc;
}
@media only screen and (max-width: 1200px) {
  .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul::after {
    left: 50%;
  }
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul li {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul li {
    max-width: 100%;
    padding: 0 30px;
  }
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul li a {
  display: block;
  padding: 5px 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav .mengaSubnav .subNavWrap ul li a:hover {
  color: var(--purple);
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav:hover > a {
  background: var(--white);
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav:hover > .mengaSubnav {
  display: block;
}
.megaMenuDropdown .megaMenuWrap .menuList .nav > ul > li.hassubNav:hover > .mengaSubnav .subNavWrap ul {
  animation: menu 1s ease;
}

body .upper-header {
  position: relative;
  z-index: 2;
}
body.menu-hover .menuOver {
  opacity: 0.3;
  pointer-events: all;
}

.model-humburger {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 350px;
  width: 100%;
  background: var(--white);
  transform: translateX(-500px);
  overflow: hidden;
  transition: 0.6s ease;
}
.model-humburger.is-open {
  transform: translateX(0px);
}
.model-humburger .modelHeade {
  position: relative;
  padding: 35px 15px 25px;
}
.model-humburger .modelHeade .img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.model-humburger .modelHeade .img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  opacity: 0.84;
}
.model-humburger .modelHeade .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 30%;
     object-position: 0 30%;
}
.model-humburger .logo {
  position: absolute;
  z-index: 1;
  top: 10px;
}
.model-humburger .logo img {
  max-width: 90px;
}
.model-humburger .close {
  position: absolute;
  right: 10px;
  top: 0;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}
.model-humburger .close::before {
  content: "Close";
  position: absolute;
  right: 100%;
  color: var(--white);
}
.model-humburger .close svg {
  width: 25px;
  height: 25px;
  color: var(--white);
}
.model-humburger .useHumLog {
  text-align: center;
  padding: 0px 0;
  position: relative;
  text-align: right;
  margin-top: 20px;
  z-index: 1;
  padding-right: 7px;
}
.model-humburger .useHumLog .btn {
  border: 1px solid var(--white);
  color: var(--white);
}
.model-humburger .modelLinks {
  padding: 20px 0;
  overflow: hidden;
  overflow-y: auto;
}
.model-humburger .modelLinks .linksWrap ul li {
  display: block;
  padding: 0px 20px;
}
.model-humburger .modelLinks .linksWrap ul li a, .model-humburger .modelLinks .linksWrap ul li em {
  display: block;
  color: var(--text);
  padding: 4px 0;
  font-style: normal;
  transition: 0.5s ease;
}
.model-humburger .modelLinks .linksWrap ul li a:hover, .model-humburger .modelLinks .linksWrap ul li em:hover {
  color: var(--purple);
}
.model-humburger .modelLinks .linksWrap .topnav {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.model-humburger .modelLinks .linksWrap .topnav ul li {
  padding-top: 3px;
  padding-bottom: 3px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(225, 225, 225, 0.4392156863);
}
.model-humburger .modelLinks .linksWrap .topnav ul li a, .model-humburger .modelLinks .linksWrap .topnav ul li em {
  font-weight: 500;
  padding: 10px 0;
  font-size: 16px;
  cursor: pointer;
}
.model-humburger .modelLinks .linksWrap .topnav ul li .icon {
  width: 30px;
  margin-right: 10px;
}
.model-humburger .modelLinks .linksWrap .topnav ul li em {
  flex: 1;
  position: relative;
}
.model-humburger .modelLinks .linksWrap .topnav ul li em::after {
  content: "";
  position: absolute;
  right: 0;
  width: 11px;
  top: 14px;
  height: 18px;
  background: url("../../icon/next.png");
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody {
  background: var(--white);
  width: 100%;
  position: absolute;
  right: -500px;
  top: 0;
  height: 100%;
  transition: 0.6s;
  z-index: 1;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody.active {
  right: 0;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .syTab {
  height: 100%;
  display: none;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .syTab .syHeading {
  height: 42px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  background: #f8f5ff;
  border-bottom: #ded4f4 solid 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .syTab .syHeading .icon-angle-left {
  padding: 0;
  margin: 0;
  width: 45px;
  height: 100%;
  font-size: 14px;
  color: #5f449b;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: none;
  cursor: pointer;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .syTab .syHeading .icon-angle-left svg {
  width: 32px;
  height: 32px;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .syTab button.closeButton {
  position: absolute;
  right: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .syTab button.closeButton svg {
  width: 30px;
  height: 30px;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav {
  display: block;
  overflow: hidden;
  overflow-y: auto;
  height: calc(100% - 42px);
  padding: 57px 15px 15px;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav::-webkit-scrollbar {
  width: 3px;
  background: #f1f1f1;
  pointer-events: none;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav::-webkit-scrollbar-track {
  box-shadow: none;
  pointer-events: none;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 10px;
  pointer-events: none;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItem {
  cursor: pointer;
  border-bottom: #efefef solid 1px;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItem strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 45px;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItem strong em {
  margin: 0;
  width: 12px;
  height: 12px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItem strong em::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 12px;
  height: 2px;
  background: #5f449b;
  transform: rotate(-90deg);
  transition: 0.5s;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItem strong em::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 12px;
  height: 2px;
  background: #5f449b;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItem.active strong em::before {
  transform: rotate(0);
  transition: 0.5s;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItemList {
  display: none;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItemList ul {
  display: block;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItemList ul li {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  border: 0;
  position: relative;
  color: #333;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.model-humburger .modelLinks .linksWrap .syNavSubBody .accordionNav .accordionItemList ul li a {
  color: #666;
  font-size: 13px;
  display: flex;
  width: 100%;
  align-items: center;
}

body.search-active {
  height: 100vh;
  overflow: hidden;
}
body.search-active .homeBanner {
  position: static;
}
body.search-active .homeBanner h1 {
  text-align: center;
}
body.search-active .banner-Search {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 11;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(0%);
}
body.search-active .banner-Search .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
body.search-active .banner-Search .close svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}
body.search-active .banner-Search .bannerSercBox {
  position: static;
}
body.search-active .banner-Search .searcTabBanner ul {
  justify-content: center;
}

.shadeAnim {
  height: 200px;
  background-color: #f8f8f8;
  background-image: url(../../images/home/imggro.png);
  background-repeat: no-repeat;
  background-repeat: repeat-x;
  background-position: 0 100%;
  animation: bganimate 30s linear infinite reverse;
  background-blend-mode: darken;
}

.singledropdown {
  position: relative;
}
.singledropdown .singleMenuDrop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  display: none;
}
.singledropdown .singleMenuDrop .singMeuDrop {
  background: var(--white);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  position: relative;
}
.singledropdown .singleMenuDrop .singMeuDrop ul {
  padding: 6px 0;
}
.singledropdown .singleMenuDrop .singMeuDrop ul li {
  display: block;
}
.singledropdown .singleMenuDrop .singMeuDrop ul li a {
  display: block;
  color: var(--text);
  padding: 6px 22px;
  background: var(--white);
  transition: 0.5s ease;
}
.singledropdown .singleMenuDrop .singMeuDrop ul li a:hover {
  background: #f3f3f3;
  color: var(--blue);
}
.singledropdown:hover .singleMenuDrop {
  display: block;
}/*# sourceMappingURL=header.css.map */