/* BUY.CSS - Route-specific CSS for buy/rent pages
   Extracted from main.css for performance optimization
   Contains: Property grid, box-house, listing styles
   Size target: <50KB
*/

/* === PROPERTY GRID STYLES === */
.box-house {
  border-radius: 16px;
  border: 1px solid var(--Line);
  overflow: hidden;
  background-color: var(--White);
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-house .image-wrap {
  position: relative;
  overflow: hidden;
}
.box-house .image-wrap > a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
.box-house .image-wrap > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-house .image-wrap img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.box-house .box-tag,
.box-house .status {
  z-index: 2;
  position: absolute;
  top: 7px;
  left: 8px;
}
.box-house .box-tag .flat-tag,
.box-house .status .flat-tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 28px;
  border-radius: 999px;
}
.box-house .box-tag .flat-tag i,
.box-house .status .flat-tag i {
  font-size: 16px;
}
.box-house .box-tag .sale,
.box-house .status .sale {
  background: rgba(0, 0, 0, 0.4);
}
.box-house .status {
  left: unset;
  right: 24px;
}
.box-house .list-btn {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box-house .list-btn .btn-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--Primary);
  background-color: var(--White);
  border-radius: 999px;
  font-size: 20px;
  transform: translateY(12px);
  opacity: 0;
  visibility: hidden;
}
.box-house .list-btn .btn-icon:hover {
  background-color: var(--Secondary);
}
.box-house .list-btn .save {
  transition-delay: 0s;
}
.box-house .list-btn .find {
  transition-delay: 0.1s;
}
.box-house .content {
  position: relative;
  padding: 23px 24px 24px;
}
.box-house .content .title {
  margin-bottom: 10px;
}
.box-house .content .location {
  margin-bottom: 16px;
}
.box-house .content .location i {
  margin-right: 4px;
}
.box-house .meta-list {
  border-bottom: 1px solid var(--Line);
  padding-bottom: 16px;
  margin-bottom: 15px;
  gap: 9px;
}
.box-house .meta-list i {
  font-size: 20px;
}
.box-house .tag-catefories {
  color: var(--Primary);
  font-size: 14px;
  line-height: 19.6px;
  width: 76px;
  height: 34px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: absolute;
  z-index: 2;
  background-color: var(--White);
  border-radius: 999px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.0588235294);
  right: 24px;
  top: -17px;
}
.box-house .price {
  color: var(--Primary);
}
.box-house .wrap-btn {
  gap: 7px;
}
.box-house .wrap-btn .compare:hover svg path {
  fill: var(--Primary);
}
.box-house .tf-btn {
  height: 44px;
  border-radius: 12px;
}
.box-house:hover {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.0705882353);
}
.box-house:hover .btn-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.box-house:hover .image-wrap a::after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.box-house.style-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  box-shadow: unset;
}
.box-house.style-list .image-wrap {
  max-width: 290px;
  flex: none;
}
.box-house.style-list .image-wrap .box-tag {
  top: 8px;
}
.box-house.style-list .content {
  padding: 24px;
  width: 100%;
}
.box-house.style-list .content .location {
  margin-bottom: 23px;
}
.box-house.style-list .meta-list {
  gap: 8px 45px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.box-house.style-list .meta-list .meta-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.box-house.style-list .meta-list .meta-item > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.box-house.style-list.v2 .image-wrap {
  max-width: 312px;
  width: 100%;
}
.box-house.style-list.v2 .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.box-house.style-list.v2 .tag-catefories {
  position: unset;
  width: 102px;
  height: 34px;
  background-color: var(--Sub-primary-1);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}
.box-house.style-list.v2 .tag-catefories i {
  font-size: 18px;
}
.box-house.style-list.v2 .content {
  background-color: var(--Heading);
}
.box-house.style-list.v2 .content .location {
  margin-bottom: 19px;
}
.box-house.style-list.v2 .meta-list {
  gap: 8px 17px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-color: var(--border);
}
.box-house.style-list.v2 .meta-list li {
  gap: 3px;
  color: var(--border-3);
}
.box-house.style-list.v2 .meta-list li span {
  color: var(--Text-white);
}
.box-house.style-list.v2 .meta-list li i {
  color: var(--Primary);
}
.box-house.style-list.v2 .avatar {
  width: 36px;
  overflow: hidden;
  border-radius: 999px;
}
.box-house.style-list.v2 .bot {
  flex-wrap: wrap;
  gap: 10px;
}
.box-house.style-3 {
  border: none;
  border-radius: unset;
  display: grid;
  grid-template-columns: 0.96fr 1fr;
}
.box-house.style-3 .box-tag {
  position: unset;
  margin-bottom: 16px;
}
.box-house.style-3 .image-wrap {
  max-width: 940px;
}
.box-house.style-3 .image-wrap a {
  width: 100%;
  height: 100%;
  position: relative;
}
.box-house.style-3 .image-wrap a::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 0%;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
  bottom: 0;
}
.box-house.style-3 .image-wrap a::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 0%;
  background-color: rgba(0, 0, 0, 0.2);
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.box-house.style-3 .image-wrap a:hover::after {
  height: 100%;
}
.box-house.style-3 .image-wrap a:hover::before {
  height: 100%;
}
.box-house.style-3 .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-house.style-3 .meta-list {
  gap: 10px 37px;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}
.box-house.style-3 .meta-list .meta-item div {
  line-height: 21px;
  color: rgb(58, 58, 60);
}
.box-house.style-3 .content {
  width: unset;
  margin: 104px 15px 104px 30px;
  padding: 0;
}
.box-house.style-3 .content .title {
  margin-bottom: 16px;
}
.box-house.style-3 .content .location {
  margin-bottom: 40px;
}
.box-house.style-3 .author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  align-items: center;
}
.box-house.style-3 .author .avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 999px;
}
.box-house.style-3 .author .name {
  line-height: 25.2px;
}
.box-house.style-3 .bot {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--Line);
  gap: 10px;
  flex-wrap: wrap;
}
.box-house.style-3 .bot .price {
  color: var(--Heading);
}
.box-house.style-3 .bot .price span {
  color: #5c6368;
}
.box-house.style-4 {
  border: none;
  box-shadow: unset;
}
.box-house.style-4 .image-wrap {
  margin-bottom: 32px;
  border-radius: 16px;
}
.box-house.style-4 .content {
  padding: 0;
}
.box-house.style-5 {
  border: none;
  box-shadow: unset;
  position: relative;
  transition: unset;
}
.box-house.style-5:not(:last-child) {
  padding-bottom: 30px;
}
.box-house.style-5 .image-wrap {
  border-radius: 16px;
}
.box-house.style-5 .image-wrap > a::after {
  display: none;
}
.box-house.style-5 .content {
  padding: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  background-color: var(--White);
  margin-left: 12px;
  margin-right: 12px;
  border-radius: 16px;
}
.box-house.style-5 .content .title {
  margin-bottom: 6px;
}
.box-house.style-5 .content .location {
  margin-bottom: 0;
}
.box-house.style-5 .meta-list {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
  gap: 20px;
}
.box-house.style-5 .meta-list i {
  font-size: 16px;
  color: var(--Primary);
}
.box-house.style-5 .location i {
  font-size: 18px;
  margin-left: 0;
}
.box-house.style-5 .heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 19px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--Line);
}
.box-house.style-5 .bot .left {
  display: flex;
  align-items: center;
  gap: 48px;
}
.box-house.style-5 .tag {
  height: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Primary);
  font-weight: 600;
  background-color: rgb(254, 247, 241);
}
.box-house.style-6, .box-house.style-8 {
  border: none;
  box-shadow: none;
}
.box-house.style-6 .price, .box-house.style-8 .price {
  position: absolute;
  bottom: 16px;
  left: 24px;
  z-index: 1;
}
.box-house.style-6 .image-wrap, .box-house.style-8 .image-wrap {
  border-radius: 16px;
}
.box-house.style-6 .image-wrap::after, .box-house.style-8 .image-wrap::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.73%, rgba(0, 0, 0, 0.8) 100%);
}
.box-house.style-6 .image-wrap img, .box-house.style-8 .image-wrap img {
  height: 267px;
  object-fit: cover;
}
.box-house.style-6 .content, .box-house.style-8 .content {
  padding: 16px;
}
.box-house.style-6.none-overlay .image-wrap::after, .box-house.style-8.none-overlay .image-wrap::after {
  display: none;
}
.box-house.style-7 {
  box-shadow: none;
  border: none;
}
.box-house.style-7 .image-wrap {
  border-radius: 16px;
}
.box-house.style-7 .content {
  padding-left: 15px;
  padding-right: 15px;
}
.box-house.style-7 .tag {
  color: var(--Primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.box-house.style-7 .tag i {
  font-size: 18px;
  color: var(--Text);
}
.box-house.style-7 .meta-list {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  gap: 22px;
}
.box-house.style-7 .meta-list i {
  font-size: 16px;
  color: var(--Primary);
}
.box-house.style-7 .bot {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--Line);
}
.box-house.style-8 {
  border: 1px solid var(--Line);
}
.box-house.style-8 .image-wrap {
  border-radius: unset;
}
.box-house.style-8 .content {
  padding: 23px 23px;
}
.box-house.style-8 .content .location {
  margin-bottom: 24px;
}
.box-house.style-8 .bot {
  padding-top: 24px;
  border-top: 1px solid var(--Line);
}
.box-house.style-8 .info-agent {
  gap: 16px;
}
.box-house.style-8 .avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 999px;
}

.icons-box {
  padding: 24px;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--White);
}
.icons-box .tf-icon {
  margin-bottom: 32px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icons-box .title {
  margin-bottom: 24px;
}
.icons-box p {
  margin-bottom: 30px;
}
.icons-box:hover {
  box-shadow: 0px 30px 60px var(--Sub-primary-2);
}
.icons-box.default {
  padding: 24px 30px;
}
.icons-box.default .tf-icon svg path:not(:first-child) {
  fill: var(--Primary);
}
.icons-box.default:hover .tf-btn {
  background-color: var(--Primary);
  color: var(--White);
}
.icons-box.style-1 .heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.icons-box.style-1 .tf-icon {
  margin-bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--Sub-primary-2);
  border-radius: 16px;
  flex-shrink: 0;
}
.icons-box.style-1 .tf-icon svg:not(.icons-box.style-1 .tf-icon svg.stroke) path {
  fill: var(--Primary);
}
.icons-box.style-1 .tf-icon .stroke path {
  stroke: var(--Primary);
}
.icons-box.style-1 .title {
  margin-bottom: 0;
}
.icons-box.style-1 .title a:hover {
  color: var(--Color-1);
}
.icons-box.style-1 p {
  margin-bottom: 24px;
}
.icons-box.style-1:hover {
  box-shadow: 0px 30px 60px rgba(6, 167, 136, 0.12);
}
.icons-box.style-1:hover .tf-icon {
  background-color: var(--Primary);
}
.icons-box.style-1:hover .tf-icon svg:not(.icons-box.style-1:hover .tf-icon svg.stroke) path {
  fill: var(--White);
}
.icons-box.style-1:hover .tf-icon .stroke path {
  stroke: var(--White);
}
.icons-box.style-2 {
  background-color: rgb(254, 247, 247);
}
.icons-box.style-2 .tf-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  width: 68px;
  height: 68px;
  background-color: var(--White);
  box-shadow: 0px 8px 18px var(--Sub-primary-2);
  margin-bottom: 24px;
}
.icons-box.style-2 .tf-icon svg path:not(:last-child) {
  fill: var(--Primary);
}
.icons-box.style-2 .tf-icon .change path:nth-last-child(1), .icons-box.style-2 .tf-icon .change path:nth-last-child(2) {
  fill: #2c2e33;
}
.icons-box.style-2 .title {
  margin-bottom: 23px;
}
.icons-box.style-2 .title a:hover {
  color: var(--White);
}
.icons-box.style-2 p {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.icons-box.style-2:hover {
  background-color: var(--Primary);
}
.icons-box.style-2:hover .title a {
  color: var(--White);
}
.icons-box.style-2:hover p {
  color: var(--White);
}
.icons-box.style-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}
.icons-box.style-3 .tf-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  width: 76px;
  font-size: 40px;
  margin-bottom: 0;
  color: var(--Primary);
  background-color: var(--Sub-primary-2);
  border-radius: 16px;
  flex-shrink: 0;
}
.icons-box.style-3 .title,
.icons-box.style-3 p {
  margin-bottom: 16px;
}
.icons-box.style-3:hover {
  box-shadow: 0px 30px 60px var(--Sub-primary-1);
}
.icons-box.style-3:hover .tf-icon {
  background-color: var(--Primary);
  color: var(--White);
}
.icons-box.style-4, .icons-box.style-5, .icons-box.style-8 {
  flex-grow: 0;
}
.icons-box.style-4 .tf-icon, .icons-box.style-5 .tf-icon, .icons-box.style-8 .tf-icon {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin: 0 auto 24px;
  background-color: var(--Sub-primary-1);
/* === PROPERTY FILTERS === */
  color: var(--Color-8);
  letter-spacing: -1px;
}
.agent-details .info a {
  color: var(--Text);
}
.agent-details .info a:hover {
  color: var(--Primary);
}
.agent-details .info svg {
  margin-right: 3px;
}
.agent-details .content .title {
  margin-bottom: 10px;
}
.agent-details .content p {
  margin-bottom: 12px;
}
.agent-details .content .tf-btn-link svg {
  transform: rotate(90deg);
}
.agent-details .content .tf-btn-link:hover svg {
  transform: rotate(0deg);
}
.agent-details:hover .image-wrap .tf-social {
  bottom: 16px;
  opacity: 1;
}

.wrap-neighborhoods {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 11px 12px;
  grid-template-areas: "aa bb cc dd" "ee ff ff gg";
}
.wrap-neighborhoods .item-1 {
  grid-area: aa;
}
.wrap-neighborhoods .item-2 {
  grid-area: bb;
}
.wrap-neighborhoods .item-3 {
  grid-area: cc;
}
.wrap-neighborhoods .item-4 {
  grid-area: dd;
}
.wrap-neighborhoods .item-5 {
  grid-area: ee;
}
.wrap-neighborhoods .item-6 {
  grid-area: ff;
}
.wrap-neighborhoods .item-7 {
  grid-area: gg;
}

.box-location {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-location.h-450 .image-wrap img {
  height: 450px;
}
.box-location .image-wrap {
  overflow: hidden;
  min-height: 245px;
}
.box-location .image-wrap img {
  width: 100%;
  min-height: 245px;
  object-fit: cover;
}
.box-location .image-wrap a {
  position: relative;
}
.box-location .image-wrap a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 68.29%, #000000 100%);
  left: 0;
  top: 0;
}
.box-location .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 5;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 15px;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.box-location .tf-btn {
  gap: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 17px 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-weight: 700;
  color: var(--White);
}
.box-location .tf-btn:hover {
  background-color: var(--Primary);
}
.box-location.style-2 {
  border-radius: 8px;
  position: relative;
}
.box-location.style-2::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.85%, #000000 100%);
  inset: 0;
  z-index: 1;
}
.box-location.style-2 .image-wrap {
  min-height: unset;
}
.box-location.style-2 .image-wrap img {
  min-height: unset;
}
.box-location.style-2 .content {
  flex-direction: column;
  align-items: flex-start;
}
.box-location.style-2 .content p {
  color: var(--Text-white);
}

.box-contact {
  padding: 66.5px 0;
}
.box-contact .list-info li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 41px;
}
.box-contact .list-info li .icon {
  position: relative;
}
.box-contact .list-info li .icon::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--Line);
  right: -20px;
}
.box-contact .list-info li .sub {
  font-size: 14px;
  line-height: 21px;
  color: var(--Note);
  font-weight: 500;
  margin-bottom: 2px;
}
.box-contact .list-info li p {
  font-size: 16px;
  line-height: 24px;
  color: var(--Heading);
}
.box-contact .list-info li .phone {
  font-size: 30px;
  line-height: 37.5px;
  color: var(--Primary);
  font-weight: 700;
}
.box-contact .list-info li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--Primary);
}
.box-contact .list-info li a:hover {
  color: var(--Heading);
}
.box-contact .list-info li:not(:last-child) {
  margin-bottom: 30px;
}
.box-contact .image-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.box-contact.style-1 .list-info li {
  gap: 34px;
}
.box-contact.style-1 .list-info li:not(:last-child) {
  margin-bottom: 34px;
}
.box-contact.style-1 .list-info li .phone {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--Heading);
}
.box-contact.style-1 .list-info li .icon::after {
  right: -17px;
}

.wrap-counter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}

.counter-item span {
  font-family: "Lexend", sans-serif;
}
.counter-item .counter-number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: max-content;
  max-height: max-content;
}
.counter-item .odometer-formatting-mark {
  display: none;
}
.counter-item .odometer .odometer-value {
  width: 100%;
  text-align: right !important;
}
.counter-item .odometer .odometer-digit {
  vertical-align: unset !important;
}
.counter-item .sub {
  position: relative;
  top: -2px;
  left: -2px;
}
.counter-item .sub.plus {
  top: -14px;
  font-size: 40px;
}
.counter-item.style-1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.counter-item.style-1 span {
  font-size: 80px;
  line-height: 100px;
  font-weight: 600;
  color: var(--Text-white);
}
.counter-item.style-2 {
  width: 135px;
}
.counter-item.style-2 .icons {
  font-size: 50px;
  color: var(--Primary);
  margin-bottom: 15px;
}
.counter-item.style-2 span {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--Heading);
}
.counter-item.style-2 .sub.plus {
  top: -9px;
  left: 2px;
