@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);
  }
}
.homeBanner {
  position: relative;
  z-index: 2;
}
.homeBanner .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .homeBanner .bg {
    line-height: 0;
    position: relative;
  }
}
.homeBanner .bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
  opacity: 0.8;
  display: none;
}
@media only screen and (max-width: 991px) {
  .homeBanner .bg::before {
    display: block;
  }
}
.homeBanner .bg picture {
  width: 100%;
}
.homeBanner .bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 675px) {
  .homeBanner .bg img {
    min-height: 220px;
  }
}
.homeBanner .bg h1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: normal;
  max-width: 260px;
  color: var(--white);
  display: none;
  line-height: 35px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .homeBanner .bg h1 {
    display: block;
  }
}
@media only screen and (max-width: 675px) {
  .homeBanner .bg h1 {
    font-size: 25px;
  }
}

.HomeSecA .container-fluid {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .HomeSecA .container-fluid {
    padding: 0 15px;
  }
}

.hotPrjCard .item {
  position: relative;
}
.hotPrjCard .item > a {
  display: block;
  position: relative;
}
.hotPrjCard .item > a .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.hotPrjCard .item > a .img::before, .hotPrjCard .item > a .img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.hotPrjCard .item > a .img::before {
  top: 0;
  background: linear-gradient(to bottom, var(--black), transparent);
  height: 250px;
  opacity: 0.5;
}
@media only screen and (max-width: 675px) {
  .hotPrjCard .item > a .img::before {
    display: none;
  }
}
.hotPrjCard .item > a .img::after {
  height: 67%;
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
}
@media only screen and (max-width: 675px) {
  .hotPrjCard .item > a .img::after {
    opacity: 0.6;
  }
}
.hotPrjCard .item > a .img img {
  width: 100%;
  height: 345px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotPrjCard .item > a .loca {
  position: absolute;
  left: 20px;
  top: 20px;
  max-width: 210px;
  color: var(--white);
  line-height: 19px;
  font-weight: 600;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .hotPrjCard .item > a .loca {
    left: 15px;
    top: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .hotPrjCard .item > a .loca {
    display: none;
  }
}
.hotPrjCard .item .wishlistIcon {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .hotPrjCard .item .wishlistIcon {
    right: 20px;
    top: 18px;
  }
}
.hotPrjCard .item .wishlistIcon.added svg path {
  fill: #b5d545;
  stroke: #b5d545;
}
.hotPrjCard .item .content {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  padding-right: 160px;
}
@media only screen and (max-width: 991px) {
  .hotPrjCard .item .content {
    padding: 15px;
  }
}
.hotPrjCard .item .content .projName {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--white);
  margin-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .hotPrjCard .item .content .projName {
    line-height: 22px;
    font-size: 16px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 675px) {
  .hotPrjCard .item .content .projName {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 2px;
  }
}
.hotPrjCard .item .content .pric {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}
@media only screen and (max-width: 991px) {
  .hotPrjCard .item .content .pric {
    line-height: 20px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 675px) {
  .hotPrjCard .item .content .pric {
    line-height: 20px;
    font-size: 10px;
  }
}
.hotPrjCard .item .varient-a {
  position: absolute;
  right: 20px;
  font-size: 13px;
  bottom: 20px;
  padding: 10px 12px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .hotPrjCard .item .varient-a {
    display: none;
  }
}

.cardNewLaunch .item {
  padding: 15px;
}
@media only screen and (max-width: 991px) {
  .cardNewLaunch .item {
    padding: 6px;
  }
}
.cardNewLaunch .item > a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0px 1px 11.6px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  position: relative;
}
.cardNewLaunch .item > a .img {
  flex: 0 1 200px;
  max-height: 200px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.cardNewLaunch .item > a .img::after {
  content: "";
  position: absolute;
  height: 220px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--black), transparent);
  display: none;
}
.cardNewLaunch .item > a .content {
  flex: 1;
  padding: 15px;
}
.cardNewLaunch .item > a .content .projName {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  color: var(--black);
  margin-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .cardNewLaunch .item > a .content .projName {
    line-height: 20px;
  }
}
.cardNewLaunch .item > a .content .loca {
  font-size: 13px;
  color: var(--text);
  line-height: 18px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .cardNewLaunch .item > a .content .loca {
    margin-bottom: 10px;
  }
}
.cardNewLaunch .item > a .content .pric {
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  line-height: 18px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .cardNewLaunch .item > a .content .pric {
    font-size: 13px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 991px) {
  .cardNewLaunch .item > a .content .pric {
    padding-right: 130px;
  }
}
.cardNewLaunch .item > a .content .type {
  font-size: 13px;
  color: var(--text);
  line-height: 18px;
}
@media only screen and (min-width: 991px) {
  .cardNewLaunch .item > a .content .type {
    padding-right: 130px;
  }
}
.cardNewLaunch .item > a .content .strip {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 36%;
  height: 26px;
  background: var(--green);
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: var(--white);
  padding: 6px 0;
}
@media only screen and (max-width: 991px) {
  .cardNewLaunch .item > a .content .strip {
    display: none;
  }
}
.cardNewLaunch .item > a .content .strip::before {
  content: "";
  position: absolute;
  left: -11px;
  width: 26px;
  height: 26px;
  background: white;
  top: 0;
  transform: rotate(45deg);
}
.cardNewLaunch.owl-carousel.owl-loaded.navCerCenter .owl-nav button {
  width: 50px;
  height: 50px;
}
.cardNewLaunch.owl-carousel.owl-loaded.navCerCenter .owl-nav button.owl-prev {
  left: -10px;
}
.cardNewLaunch.owl-carousel.owl-loaded.navCerCenter .owl-nav button.owl-next {
  right: -10px;
}

@media only screen and (max-width: 675px) {
  .HomeSecB .heading {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.HomeSecC {
  padding-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .HomeSecC {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecC .heading {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.HomeSecC .heading p {
  padding: 0 40px;
}
.HomeSecC .container-fluid {
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  .HomeSecC .container-fluid {
    padding: 0 15px;
  }
}

.explorPropCard .item {
  padding: 10px;
}
@media only screen and (max-width: 991px) {
  .explorPropCard .item {
    padding: 5px;
  }
}
.explorPropCard .item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.explorPropCard .item a .img {
  position: relative;
}
.explorPropCard .item a .img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4705882353) 16%, transparent 67%);
}
@media only screen and (max-width: 675px) {
  .explorPropCard .item a .img::after {
    top: auto;
    height: 180px;
  }
}
.explorPropCard .item a .img img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.explorPropCard .item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
@media only screen and (max-width: 991px) {
  .explorPropCard .item .content {
    padding: 12px;
  }
}
.explorPropCard .item .content .projName {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .explorPropCard .item .content .projName {
    font-size: 16px;
    line-height: 24px;
  }
}
.explorPropCard .item .content .tot {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 24px;
}
@media only screen and (max-width: 991px) {
  .explorPropCard .item .content .tot {
    font-size: 12px;
    line-height: 20px;
  }
}

.filtertab {
  display: flex;
  flex-direction: column;
  width: 55px;
  gap: 20px 0;
  position: absolute;
  left: 50px;
}
@media only screen and (max-width: 991px) {
  .filtertab {
    position: static;
    width: 100%;
    gap: 0 20px;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 520px) {
  .filtertab {
    gap: 0;
  }
}
.filtertab::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 2px;
  bottom: 100%;
  background: var(--blue);
  height: 50vh;
}
@media only screen and (max-width: 991px) {
  .filtertab::before {
    display: none;
  }
}
.filtertab .tab {
  display: block;
  margin: 0 0;
}
@media only screen and (max-width: 991px) {
  .filtertab .tab {
    width: 80px;
  }
}
.filtertab .tab .icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .filtertab .tab .icon {
    margin: 0 auto;
  }
}
.filtertab .tab .icon img {
  filter: brightness(0.4);
}
.filtertab .tab span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--text);
}
.filtertab .tab.current .icon {
  background: #1E0F44;
}
.filtertab .tab.current .icon img {
  filter: brightness(0) invert(1);
}

.HomeSecD {
  padding: 80px 0;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .HomeSecD {
    padding: 50px 0;
  }
}
.HomeSecD .container-fluid {
  position: relative;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .HomeSecD .container-fluid {
    padding: 0px 15px;
  }
}
.HomeSecD .heading {
  margin-bottom: 30px;
}
.HomeSecD .slide {
  margin-top: 60px;
  padding-left: 180px;
}
@media only screen and (max-width: 991px) {
  .HomeSecD .slide {
    padding: 0;
    margin-top: 40px;
  }
}

.cardPropInGur .item {
  position: relative;
  padding: 10px;
}
@media only screen and (max-width: 991px) {
  .cardPropInGur .item {
    padding: 5px;
  }
}
.cardPropInGur .item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 1px 5.6px 0px rgba(0, 0, 0, 0.05);
}
.cardPropInGur .item a .img {
  overflow: hidden;
}
.cardPropInGur .item a .img img {
  width: 100%;
}
.cardPropInGur .item .content {
  background: var(--white);
  padding: 15px 20px;
}
@media only screen and (max-width: 991px) {
  .cardPropInGur .item .content {
    padding: 13px;
  }
}
.cardPropInGur .item .content .projName {
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  margin-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .cardPropInGur .item .content .projName {
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 20px;
  }
}
.cardPropInGur .item .content .pri {
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.HomeSecE {
  background: var(--white);
  padding: 62px 0;
}
@media only screen and (max-width: 991px) {
  .HomeSecE {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecE {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecE .heading {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.topDevCard .col {
  flex: 0 1 25%;
  max-width: 25%;
  padding: 12px;
}
@media only screen and (max-width: 1024px) {
  .topDevCard .col {
    flex: 0 1 25%;
    max-width: 25%;
    padding: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .topDevCard .col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
  }
}
@media only screen and (max-width: 675px) {
  .topDevCard .col {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
.topDevCard .card {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 1px 11.6px 0px rgba(0, 0, 0, 0.1490196078);
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .topDevCard .card {
    text-align: center;
    flex-direction: column;
    padding: 12px;
  }
}
.topDevCard .card .img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .topDevCard .card .img {
    width: 100%;
    flex: 1;
    min-height: 85px;
  }
}
.topDevCard .card .img img {
  max-width: 95px;
  display: block;
  margin: 0 auto;
  mix-blend-mode: darken;
}
.topDevCard .card .text {
  display: block;
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .topDevCard .card .text {
    width: 100%;
    flex: 1;
  }
}
.topDevCard .card .text .projName {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 3px;
}
@media only screen and (max-width: 1024px) {
  .topDevCard .card .text .projName {
    display: none;
  }
}
.topDevCard .card .text .name {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: var(--text);
}
@media only screen and (max-width: 1024px) {
  .topDevCard .card .text .name {
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
  }
}

.HomeSecF {
  background: var(--blue);
  padding: 80px 0;
}
@media only screen and (max-width: 675px) {
  .HomeSecF {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecF .heading {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.HomeSecF .heading h2 {
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .HomeSecF .slideA {
    display: none;
  }
}
.HomeSecF .slideA .slideTabA {
  padding: 20px 30px 0;
}
.HomeSecF .slideA .slideTabA .owl-stage {
  z-index: 1;
  display: flex;
}
.HomeSecF .slideA .slideTabA .owl-stage .owl-item {
  height: auto;
}
.HomeSecF .slideA .slideTabA .owl-stage .owl-item .item {
  height: 100%;
}
.HomeSecF .slideA .slideTabA .owl-nav button {
  position: absolute;
  bottom: -7px;
  width: 24px;
}
.HomeSecF .slideA .slideTabA .owl-nav button.owl-prev {
  left: -10px;
}
.HomeSecF .slideA .slideTabA .owl-nav button.owl-next {
  right: -10px;
}
.HomeSecF .slideA .slideTabA .owl-nav button img {
  filter: brightness(0) invert(1);
}
.HomeSecF .slideA .owl-stage-outer::after {
  content: "";
  position: absolute;
  bottom: 6px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5019607843);
  left: 0;
  right: 0;
}
.HomeSecF .slideA .item {
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: 0.5s ease;
}
.HomeSecF .slideA .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #7b748e;
  border-radius: 20px;
  margin: 0 auto;
}
.HomeSecF .slideA .item span {
  opacity: 0.6;
}
.HomeSecF .slideA .current, .HomeSecF .slideA .next {
  pointer-events: none;
}
.HomeSecF .slideA .current .item::after, .HomeSecF .slideA .next .item::after {
  background: #d9d9d9;
}
.HomeSecF .slideA .current .item span, .HomeSecF .slideA .next .item span {
  opacity: 1;
}
.HomeSecF .slideB {
  position: relative;
  padding-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .HomeSecF .slideB {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .HomeSecF .slideB {
    padding: 0;
  }
}

.HomeSecG {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .HomeSecG {
    padding-bottom: 0;
  }
}
.HomeSecG .heading {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .HomeSecG .heading {
    margin-bottom: 30px;
  }
}
.HomeSecG .owl-carousel {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .HomeSecG .owl-carousel {
    padding: 0;
  }
}
.HomeSecG .owl-carousel .owl-stage {
  display: flex;
}
.HomeSecG .owl-carousel .owl-stage .owl-item {
  height: auto;
}
.HomeSecG .owl-carousel.owl-loaded.navCerCenter .owl-nav button {
  width: 50px;
  height: 50px;
}
.HomeSecG .owl-carousel.owl-loaded.navCerCenter .owl-nav button.owl-prev {
  left: 15px;
}
.HomeSecG .owl-carousel.owl-loaded.navCerCenter .owl-nav button.owl-next {
  right: 15px;
}

.servSliCard .item {
  display: block;
  padding: 11px;
  height: 100%;
}
.servSliCard .item a {
  display: flex;
  background: var(--white);
  box-shadow: 0px 1px 11.6px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
}
.servSliCard .item a .img {
  flex: 0 1 200px;
  max-height: 200px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  border-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media only screen and (max-width: 767px) {
  .servSliCard .item a .img {
    width: 100%;
    border-radius: 0;
  }
}
.servSliCard .item a .img img {
  height: 100%;
}
.servSliCard .item a .text {
  flex: 1;
  padding: 20px;
}
.servSliCard .item a .text .projName {
  font-size: 17px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  color: var(--black);
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .servSliCard .item a .text .projName {
    text-align: center;
  }
}
.servSliCard .item a .text p {
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .servSliCard .item a .text p {
    text-align: center;
  }
}

.shadeAnim {
  background-color: var(--white);
}

@media only screen and (max-width: 675px) {
  .HomeSecH {
    padding-bottom: 20px;
  }
}
.HomeSecH .flex {
  align-items: center;
}
.HomeSecH .flex .colA {
  flex: 0 1 55%;
  max-width: 55%;
}
@media only screen and (max-width: 675px) {
  .HomeSecH .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    order: 2;
  }
}
.HomeSecH .flex .colB {
  flex: 0 1 45%;
  max-width: 45%;
}
@media only screen and (max-width: 675px) {
  .HomeSecH .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    order: 1;
  }
}
.HomeSecH .img {
  line-height: 0;
}
.HomeSecH .img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .HomeSecH .content {
    padding: 20px 0;
  }
}
.HomeSecH .content .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content .title {
    font-weight: 500;
    line-height: 18px;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecH .content .title {
    line-height: 16px;
    font-size: 14px;
    font-weight: 400;
  }
}
.HomeSecH .content h2 {
  color: var(--blue);
  margin: 20px 0;
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  width: 400px;
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content h2 {
    margin: 4px 0 10px;
    font-size: 28px;
    line-height: 35px;
    width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecH .content h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.HomeSecH .content h2 span {
  color: var(--green);
}
.HomeSecH .content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--text);
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content p {
    font-size: 13px;
    margin-bottom: 23px;
  }
}
.HomeSecH .content ul {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content ul {
    margin-bottom: 15px;
  }
}
.HomeSecH .content .countlist .li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content .countlist .li {
    margin-bottom: 6px;
  }
}
.HomeSecH .content .countlist .li span {
  font-size: 36px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content .countlist .li span {
    font-size: 25px;
  }
}
.HomeSecH .content .countlist .tex {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .HomeSecH .content .countlist .tex {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
  }
}
@media only screen and (max-width: 675px) {
  .HomeSecH .content .countlist .tex {
    font-size: 12px;
    line-height: 15px;
  }
}
.HomeSecH .content .btn {
  padding: 12px 16px;
}
@media only screen and (max-width: 675px) {
  .HomeSecH .content .btn {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 991px) {
  .overflow-hidden .homeBanner {
    position: static;
  }
}/*# sourceMappingURL=home.css.map */