/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --aports-font: "DM Sans", sans-serif;
  --aports-reey-font: "reeyregular";
  --aports-gray: #585858;
  --aports-gray-rgb: 135, 137, 142;
  --aports-white: #ffffff;
  --aports-white-rgb: 255, 255, 255;
  --aports-base: #64b200;
  --aports-base-rgb: 206, 174, 146;
  --aports-black: #32343b;
  --aports-black-rgb: 50, 52, 59;
  --aports-primary: #edf4eb;
  --aports-primary-rgb: 244, 239, 235;
  --aports-bdr-color: #d9e2d3;
  --aports-bdr-color-rgb: 226, 218, 211;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--aports-font);
  color: var(--aports-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--aports-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--aports-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

strong {
  font-weight: 700 !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1270px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--aports-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--aports-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--aports-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--aports-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--aports-base);
  color: var(--aports-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 40px 10px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:before {
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: var(--aports-black);
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
}

.thm-btn:hover {
  color: var(--aports-white);
}

.thm-btn:hover:before {
  top: -30%;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -10px;
  margin-bottom: 48px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: var(--aports-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}

.section-title__tagline:before {
  content: "";
  position: absolute;
  top: 7px;
  inset-inline-end: -30px;
  height: 1px;
  width: 21px;
  background-color: var(--aports-base);
}

.section-title__title {
  margin: 0;
  color: var(--aports-black);
  font-size: 30px;
  line-height: 46px;
  font-weight: 700;
  margin-top: 2px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--aports-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--aports-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--aports-black);
  color: var(--aports-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 200px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--aports-base);
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: var(--aports-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.scroll-to-top:hover {
  background-color: var(--aports-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header__top {
  position: relative;
  display: none;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--aports-black);
  padding-inline-start: 80px;
  padding-inline-end: 60px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.main-header__top-left {
  position: relative;
  display: block;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li + li {
  margin-inline-start: 35px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li .icon i {
  font-size: 14px;
  color: var(--aports-base);
}

.main-header__contact-list li .text {
  margin-inline-start: 10px;
}

.main-header__contact-list li .text p {
  color: #a2a5ae;
  font-size: 13px;
}

.main-header__contact-list li .text p a {
  color: #a2a5ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--aports-base);
}

.main-header__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-time {
  position: relative;
  display: block;
}

.main-header__top-time p {
  font-size: 13px;
  color: #a2a5ae;
}

.main-header__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline-start: 40px;
  padding: 8px 0;
}

.main-header__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--aports-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__social a:hover {
  color: var(--aports-base);
}

.main-header__social a + a {
  margin-inline-start: 25px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  padding-inline-end: 20px;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  position: relative;
  display: block;
}

.main-menu__logo {
  position: relative;
  display: block;
  /* background-color: var(--aports-black); */
  padding: 4.5px 21px;
  margin-top: -40;
  border-radius: 0px 0px 0px 35px;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: block;
}

.main-menu__search-btn-box {
  display: flex;
  align-items: center;
  /* padding: 25px 0; */
}

.main-menu__search-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--aports-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--aports-base);
}

.main-menu__search:after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--aports-white-rgb), 0.1);
}

.main-menu__btn-box {
  position: relative;
  display: block;
  margin-inline-start: 10px;
}

.stricky-header .main-menu__btn:hover {
  color: var(--aports-base);
}

.stricky-header .main-menu__btn:before {
  background: var(--aports-white);
}

.stricky-header .main-menu__logo {
  /* padding: 20.5px 60px; */
  margin-top: 0;
}

.stricky-header .main-menu__logo img {
  width: 65%;
  margin-top: 0;
}

.stricky-header.main-menu {
  background-color: var(--aports-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.stricky-header .main-menu__list > li {
  /* padding-top: 45px;
  padding-bottom: 45px; */
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-inline-start: 75px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--aports-white);
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--aports-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--aports-gray);
  letter-spacing: 0;
  /* font-weight: 500; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* padding: 2px 10px 2px; */
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--aports-white);
  border-radius: var(--aports-bdr-radius);
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: var(--aports-primary);
  color: var(--aports-black);
  text-shadow: 0.3px 0 0 rgba(50, 52, 59, 0.8);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  left: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f104";
  font-size: 14px;
  color: var(--aports-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-inline-end: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline-start: auto;
  margin-inline-end: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--aports-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-inline-start: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--aports-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--aports-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--aports-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-inline-start: 0;
  padding-inline-end: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--aports-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-inline-start: 15px;
  padding-inline-end: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--aports-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-inline-start: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--aports-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--aports-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--aports-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--aports-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--aports-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--aports-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-inline-start: 30px;
}

.mobile-nav__social a:hover {
  color: var(--aports-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-inline-start: 0px;
}

.mobile-nav__contact li {
  color: var(--aports-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--aports-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--aports-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-inline-end: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  padding: 0 60px;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-two__left {
  position: relative;
  display: block;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 24.5px 0;
}

.main-menu-two__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: block;
}

.stricky-header.main-menu-two {
  background-color: var(--aports-white);
}

.main-menu-two__search-btn-box {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.main-menu-two__search-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--aports-base);
}

.main-menu-two__search:after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--aports-black-rgb), 0.1);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
  margin-inline-start: 30px;
}

.main-menu-two .main-menu__list > li + li,
.stricky-header.main-menu-two .main-menu__list > li + li {
  margin-inline-start: 75px;
}

.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--aports-gray);
}

.main-menu-two .main-menu__list > li.current > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
  color: var(--aports-black);
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  background-color: var(--aports-black);
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 24.5px 0;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-three__search-btn-box {
  display: flex;
  align-items: center;
  padding: 25px 0;
  margin-inline-start: 50px;
}

.main-menu-three__search-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--aports-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--aports-base);
}

.main-menu-three__search:after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--aports-white-rgb), 0.1);
}

.main-menu-three__btn-box {
  position: relative;
  display: block;
  margin-inline-start: 30px;
}

.main-menu-three__btn:hover {
  color: var(--aports-base);
}

.main-menu-three__btn:before {
  background: var(--aports-white);
}

.stricky-header.main-menu-three {
  background-color: var(--aports-black);
}

.main-menu-three .main-menu__list > li + li,
.stricky-header.main-menu-three .main-menu__list > li + li {
  margin-inline-start: 50px;
}

.main-menu-three .main-menu__list > li,
.stricky-header.main-menu-three .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three .main-menu__list > li > a {
  color: #a2a5ae;
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li.current > a,
.stricky-header.main-menu-three .main-menu__list > li:hover > a {
  color: var(--aports-white);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--aports-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-inline-start: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  background-color: var(--aports-base);
  border: 0;
  border-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--aports-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  padding-inline-start: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover:before {
  width: 150%;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  margin-top: -144px;
  padding: 0 0 110px;
  z-index: 2;
}

.counter-one__inner {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
  max-width: 870px;
  width: 100%;
  margin-inline-start: auto;
  padding: 40px 0px 0px;
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.counter-one__icon {
  position: relative;
  display: flex;
  height: 80px;
  width: 83px;
  background-color: var(--aports-white);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  color: var(--aports-base);
  font-size: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
  transform: scale(0.9);
}

.counter-one__content-box {
  position: relative;
  display: block;
  margin-top: 16px;
}

.counter-one__single h3 {
  font-size: 26px;
  font-family: var(--aports-font);
  line-height: 30px;
  font-weight: 700;
}

.counter-one__single .count-text {
  font-size: 26px;
  font-family: var(--aports-font);
  line-height: 30px;
  font-weight: 700;
}

.counter-one .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Floor Plan
--------------------------------------------------------------*/
.floor-plan {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.floor-plan .section-title {
  margin-bottom: 40px;
}

.floor-plan__text {
  padding-top: 29px;
}

.floor-plan__main-tab-box .tab-buttons {
  position: relative;
  display: block;
  text-align: center;
}

.floor-plan__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.floor-plan__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-inline-start: 5px;
}

.floor-plan__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 12px;
  color: var(--aports-white);
  background-color: var(--aports-base);
  padding: 10px 40px 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.floor-plan__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--aports-white);
}

.floor-plan__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--aports-black);
  transition: all 0.3s ease;
  z-index: -1;
}

.floor-plan__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.floor-plan__main-tab-box .tabs-content {
  position: relative;
  display: block;
  margin-top: 40px;
}

.floor-plan__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.floor-plan__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.floor-plan__tab-content-inner {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--aports-bdr-color);
  flex-wrap: wrap;
}

.floor-plan__tab-content-left {
  position: relative;
  display: block;
  max-width: 395px;
  width: 100%;
}

.floor-plan__tab-content-details {
  position: relative;
  display: block;
  padding-inline-start: 0px;
}

.floor-plan__tab-content-details li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 395px;
  width: 100%;
  background-color: var(--aports-primary);
  padding: 22px 40px 22px;
}

.floor-plan__tab-content-details li:nth-child(2) {
  background-color: transparent;
}

.floor-plan__tab-content-details li:nth-child(4) {
  background-color: transparent;
}

.floor-plan__tab-content-details li:nth-child(6) {
  background-color: transparent;
}

.floor-plan__tab-content-details li p {
  font-size: 18px;
  font-weight: 700;
  color: var(--aports-black);
}

.floor-plan__tab-content-details li span {
  font-size: 18px;
  font-weight: 700;
  color: var(--aports-base);
}

.floor-plan__tab-content-righ {
  position: relative;
  display: block;
  margin-inline-start: 55px;
}

.floor-plan__tab-content-righ img {
  width: auto;
}

/*--------------------------------------------------------------
# Neighborhoods
--------------------------------------------------------------*/
.neighborhoods {
  position: relative;
  display: block;
  background-color: var(--aports-black);
  overflow: hidden;
  padding: 200px 0 120px;
  /* margin-top: -110px; */
  z-index: 1;
}

.neighborhoods-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: luminosity;
  opacity: 0.1;
  z-index: -1;
}

.neighborhoods .section-title__title {
  color: var(--aports-white);
}

.neighborhoods__left {
  position: relative;
  display: block;
  margin-inline-end: -30px;
}

.neighborhoods__faq {
  position: relative;
  display: block;
  padding: 0px 35px 4px;
  background-color: var(--aports-white);
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--aports-white);
  border-bottom: 1px solid var(--aports-bdr-color);
}

.faq-one-accrodion .accrodion.last-child {
  border-bottom: 0;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 0px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--aports-black);
  font-family: var(--aports-font);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-inline-end: 25px;
}

.faq-one-accrodion .accrodion.active .accrodion-title h3 {
  color: var(--aports-base);
}

.faq-one-accrodion .accrodion-title h3::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 16px;
  color: var(--aports-black);
  position: absolute;
  top: 50%;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h3::before {
  content: "\f107";
  color: var(--aports-base);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 0px 0px 19px;
  margin-top: -11px;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
  line-height: 32px;
}

.neighborhoods__right {
  position: relative;
  display: block;
}

.neighborhoods__img-box {
  position: relative;
  display: block;
  width: 100%;
}

.neighborhoods__img {
  position: relative;
  display: block;
  z-index: 1;
}

.neighborhoods__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(35, 37, 43, 0.3);
  z-index: 1;
}

.neighborhoods__img img {
  width: 100%;
}

.neighborhoods__location-1 {
  position: absolute;
  width: 192px;
  height: 155px;
  top: 13%;
  left: 72%;
}

.neighborhoods__map-markar {
  position: absolute;
  top: 155px;
  left: 129px;
  border-radius: 50%;
  background-color: rgba(50, 52, 59, 0.2);
  z-index: 5;
  height: 26px;
  width: 26px;
  cursor: pointer;
}

.neighborhoods__map-markar:before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 8px;
  left: 8px;
  background-color: var(--aports-white);
  content: "";
  border-radius: 50%;
}

.neighborhoods__popup-box {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  opacity: 0;
  transform: perspective(400px) rotateX(90deg) translateY(10px);
  transform-origin: bottom;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.neighborhoods__location-1:hover .neighborhoods__popup-box {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) translateY(0);
  transition-delay: 0.3s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.neighborhoods__popup {
  position: relative;
  display: block;
  background-color: var(--aports-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  max-width: 192px;
  width: 100%;
  padding: 5px;
}

.neighborhoods__popup:before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 68px;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--aports-white);
}

.neighborhoods__popup-inner {
  position: relative;
  display: block;
  background-color: var(--aports-base);
  padding: 17px 17px 18px;
}

.neighborhoods__popup-inner:before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 58px;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--aports-base);
}

.neighborhoods__popup-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--aports-white);
  line-height: 18px;
}

.neighborhoods__popup-text {
  font-size: 12px;
  color: var(--aports-white);
  line-height: 20px;
  padding-top: 7px;
}

.neighborhoods__popup-km {
  font-size: 12px;
  font-weight: 700;
  color: var(--aports-white);
  text-transform: uppercase;
  line-height: 12px;
  display: block;
  text-align: right;
  margin-top: -3px;
}

.neighborhoods__location-0 {
  left: auto;
  right: 3%;
  top: 12.5%;
}

.neighborhoods__location-2 {
  left: auto;
  right: 37%;
  top: -4%;
}

.neighborhoods__map-markar-2 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-3 {
  left: 39%;
  top: auto;
  bottom: 82%;
}

.neighborhoods__map-markar-3 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-4 {
  left: auto;
  top: auto;
  bottom: 80%;
  right: 28%;
}

.neighborhoods__map-markar-4 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-5 {
  left: auto;
  top: auto;
  bottom: 62%;
  right: 19%;
}

.neighborhoods__map-markar-5 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-6 {
  left: auto;
  top: auto;
  bottom: 77%;
  right: 79%;
}

.neighborhoods__map-markar-6 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-7 {
  left: auto;
  top: auto;
  bottom: 72%;
  right: 47.3%;
}

.neighborhoods__location-8 {
  left: 62%;
  top: 11%;
}

.neighborhoods__map-markar-7 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-9 {
  left: 77%;
  top: 18%;
}

.neighborhoods__map-markar-9 {
  left: auto;
  right: 37px;
  top: 150px;
}

.neighborhoods__location-10 {
  left: 63%;
  top: 12%;
}

.neighborhoods__map-markar-10 {
  left: auto;
  right: 37px;
  top: 150px;
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.contact-one__left {
  position: relative;
  display: block;
}

.contact-one__person {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline-start: 7px;
}

.contact-one__person-img {
  position: relative;
  display: block;
  width: 70px;
}

.contact-one__person-img:before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  border: 2px solid var(--aports-base);
  border-radius: 50%;
}

.contact-one__person-img img {
  width: 100%;
  border-radius: 50%;
}

.contact-one__person-content {
  margin-inline-start: 25px;
  position: relative;
  top: 9px;
}

.contact-one__person-name {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--aports-reey-font);
}

.contact-one__person-sub-title {
  margin-inline-start: 54px;
}

.contact-one__text-1 {
  padding-top: 31px;
  padding-bottom: 23px;
}

.contact-one__list {
  position: relative;
  display: block;
}

.contact-one__list li {
  position: relative;
  display: flex;
}

.contact-one__list li + li {
  margin-top: 30px;
}

.contact-one__list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--aports-primary);
  font-size: 16px;
  color: var(--aports-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__list li .icon:hover {
  background-color: var(--aports-base);
  color: var(--aports-white);
}

.contact-one__list li .content {
  margin-inline-start: 20px;
  position: relative;
  top: -2px;
}

.contact-one__list li .content p {
  line-height: 16px;
}

.contact-one__list li .content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 12px;
}

.contact-one__list li .content h3 span {
  color: var(--aports-base);
}

.contact-one__list li .content h3 a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__list li .content h3 a:hover {
  color: var(--aports-base);
}

.contact-one__right {
  position: relative;
  display: block;
  z-index: 1;
}

.contact-one__right .row {
  --bs-gutter-x: 0px;
}

.contact-one__form-box {
  position: relative;
  display: block;
  padding: 100px 100px 100px;
  background-color: var(--aports-primary);
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__form .row {
  --bs-gutter-x: 20px;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--aports-white);
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  outline: none;
  font-size: 16px;
  color: var(--aports-gray);
  display: block;
  font-weight: 400;
}

.contact-one__input-box textarea {
  font-size: 16px;
  color: var(--aports-gray);
  height: 190px;
  width: 100%;
  background-color: var(--aports-white);
  padding: 20px 30px 20px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.contact-one__input-box.text-message-box {
  height: 190px;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.news-one__single {
  position: relative;
  display: block;
  height: 100%;
}

.news-one .wow {
  margin-bottom: 60px;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  height: 75%;
  z-index: 1;
}

.news-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--aports-black-rgb), 0.8);
  opacity: 0;
  z-index: 1;
  content: "";
}

.news-one__single:hover .news-one__img:before {
  opacity: 1;
  opacity: 0.8;
}

.news-one__img img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
  height: 100%;
  object-fit: cover;
}

.news-one__single:hover .news-one__img img {
  transform: scale(1);
}

.news-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  margin-inline-start: 40px;
  margin-top: -110px;
  z-index: 2;
}

.news-one__date {
  position: absolute;
  top: -34px;
  left: 0;
  background-color: var(--aports-base);
  padding: 12px 20px;
}

.news-one__date p {
  font-size: 10px;
  color: var(--aports-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 10px;
}

.news-one__content {
  position: relative;
  display: block;
  padding: 28px 40px 29px;
}

.news-one__author {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: var(--aports-base);
}

.news-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-top: 12px;
}

.news-one__title a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--aports-base);
}

.news-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px 10px;
  background-color: var(--aports-primary);
}

.news-one__more {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--aports-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__more:hover {
  color: var(--aports-base);
}

.news-one__more i {
  height: 15px;
  width: 15px;
  background-color: var(--aports-gray);
  color: var(--aports-primary);
  font-size: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__more:hover i {
  background-color: var(--aports-base);
  color: var(--aports-white);
}

.news-one__comments {
  color: var(--aports-base) !important;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--aports-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/* .news-one__comments i {
  font-size: 15px;
  color: var(--aports-base);
  padding-inline-end: 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__comments:hover {
  color: var(--aports-base);
} */

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  display: block;
}

.gallery-one__container {
  position: relative;
  display: block;
}

.gallery-one__carousel {
  position: relative;
  display: block;
}

.gallery-one__single {
  position: relative;
  display: block;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--aports-base);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
}

.gallery-one__single:hover .gallery-one__img:before {
  opacity: 0.9;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-one__img img {
  width: 100%;
}

.gallery-one__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-one__icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--aports-white);
  border: 2px solid var(--aports-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.gallery-one__single:hover .gallery-one__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-one__icon a:hover {
  border: 2px solid var(--aports-black);
  color: var(--aports-black);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--aports-black);
  z-index: 1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 113px 0 111px;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__top-inner {
  position: relative;
  display: block;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: -3px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  color: var(--aports-white);
  font-size: 20px;
  line-height: 34px;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--aports-white);
  font-size: 15px;
  background-color: #23252b;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--aports-base);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--aports-white);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a + a {
  margin-inline-start: 10px;
}

.footer-widget__Explore {
  position: relative;
  display: block;
}

.footer-widget__title-box {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.footer-widget__title-box:before {
  content: "";
  position: absolute;
  top: 16px;
  left: -30px;
  height: 1px;
  width: 21px;
  background-color: var(--aports-base);
}

.footer-widget__title {
  font-size: 20px;
  color: var(--aports-white);
  line-height: 28px;
  font-weight: 700;
}

.footer-widget__Explore-list {
  position: relative;
  display: block;
  padding-inline-start: 0px;
}

.footer-widget__Explore-list li + li {
  margin-top: 4px;
}

.footer-widget__Explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #a2a5ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-widget__Explore-list li a:hover {
  color: var(--aports-white);
}

.footer-widget__Explore-list li button {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #a2a5ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-widget__Explore-list li button:hover {
  color: var(--aports-white);
}

.footer-widget__find {
  position: relative;
  display: block;
}

.footer-widget__find-text {
  color: #a2a5ae;
  line-height: 34px;
  margin-top: -2px;
}

.footer-widget__Contact {
  position: relative;
  display: block;
}

.footer-widget__Contact-list {
  position: relative;
  display: block;
  padding-top: 2px;
  padding-inline-start: 0px;
}

.footer-widget__Contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__Contact-list li + li {
  margin-top: 5px;
}

.footer-widget__Contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__Contact-list li .icon span {
  color: var(--aports-base);
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.footer-widget__Contact-list li .text {
  margin-inline-start: 20px;
}

.footer-widget__Contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: #a2a5ae;
}

.footer-widget__Contact-list li .text p a {
  color: #a2a5ae;
  transition: all 500ms ease;
}

.footer-widget__Contact-list li .text p a:hover {
  color: var(--aports-white);
}

.site-footer__bottom {
  position: relative;
  display: block;
  background-color: var(--aports-black);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
  padding: 27px 0;
  z-index: 1;
}

body[dir="rtl"] .site-footer__bottom {
  direction: ltr;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.site-footer__bottom-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #a2a5ae;
}

.site-footer__bottom-text a {
  color: #a2a5ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--aports-white);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.about-two-shape-1 {
  position: absolute;
  top: -95px;
  right: 0;
}

.about-two-shape-1 img {
  width: auto;
}

.about-two__left {
  position: relative;
  display: block;
  margin-inline-end: 277px;
  margin-inline-start: -77px;
  z-index: 1;
}

.about-two__left:before {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: -10000000px;
  right: 190px;
  background-color: var(--aports-primary);
  z-index: -1;
}

.about-two__big-text {
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--aports-white);
  position: absolute;
  top: 260px;
  left: -457px;
  transform: rotate(-90deg);
  opacity: 0.3;
}

.about-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__img-one {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__img-one:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 30px;
  height: 520px;
  background-color: var(--aports-base);
}

.about-two__img-one img {
  width: 100%;
}

.about-two__img-two {
  position: absolute;
  top: 80px;
  right: -240px;
  z-index: 2;
}

.about-two__img-two img {
  width: auto;
}

.about-two__right {
  position: relative;
  display: block;
}

.about-two__right .section-title {
  margin-bottom: 31px;
}

.about-two__text-1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--aports-base);
}

.about-two__text-2 {
  padding-top: 33px;
  padding-bottom: 31px;
}

.about-two__person {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline-start: 7px;
  margin-top: 50px;
}

.about-two__person-img {
  position: relative;
  display: block;
  width: 70px;
}

.about-two__person-img:before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  border: 2px solid var(--aports-base);
  border-radius: 50%;
}

.about-two__person-img img {
  width: 100%;
  border-radius: 50%;
}

.about-two__person-content {
  margin-inline-start: 25px;
  position: relative;
  top: 9px;
}

.about-two__person-name {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--aports-reey-font);
}

.about-two__person-sub-title {
  margin-inline-start: 54px;
}

/*--------------------------------------------------------------
# Measurement
--------------------------------------------------------------*/
.measurement {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.measurement__main-tab-box {
}

.measurement__main-tab-box .tab-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-inline-end: -15px;
  margin-inline-start: -15px;
}

.measurement__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
  width: 100%;
  padding-inline-end: 15px;
  padding-inline-start: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.measurement__single {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
  text-align: center;
  padding: 27px 0 22px;
  margin-bottom: 30px;
  z-index: 1;
}

.measurement__single:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  border-top: 10px solid var(--aports-base);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
}

.measurement__main-tab-box
  .tab-buttons
  .tab-btn.active-btn
  .measurement__single:before {
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  transition-delay: 200ms;
}

.measurement__single:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--aports-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.measurement__main-tab-box
  .tab-buttons
  .tab-btn.active-btn
  .measurement__single:after {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.measurement__icon {
  position: relative;
  display: block;
}

.measurement__icon span {
  position: relative;
  display: inline-block;
  font-size: 63px;
  color: var(--aports-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.measurement__main-tab-box
  .tab-buttons
  .tab-btn.active-btn
  .measurement__icon
  span {
  transform: scale(0.9);
  color: var(--aports-white);
}

.measurement__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 14px;
  transition: all 0.4s linear;
}

.measurement__main-tab-box
  .tab-buttons
  .tab-btn.active-btn
  .measurement__title {
  color: var(--aports-white);
}

.measurement__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.measurement__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.measurement__bottom {
  position: relative;
  display: block;
  margin-top: 30px;
}

.measurement__bottom-left {
  position: relative;
  display: block;
  margin-inline-end: 140px;
  margin-top: -9px;
}

.measurement__bottom-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.measurement__bottom-text {
  padding-top: 21px;
  padding-bottom: 34px;
}

.measurement__bottom-points-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.measurement__bottom-points {
  position: relative;
  display: block;
  float: left;
}

.measurement__bottom-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.measurement__bottom-points li + li {
  margin-top: 10px;
}

.measurement__bottom-points li .icon {
  height: 18px;
  width: 18px;
  background-color: var(--aports-base);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--aports-white);
}

.measurement__bottom-points li .text {
  margin-inline-start: 20px;
}

.measurement__bottom-points li .text p {
  font-size: 18px;
  font-weight: 700;
  color: var(--aports-black);
}

.measurement__bottom-points-two {
  margin-inline-start: 75px;
}

.measurement__bottom-right {
  position: relative;
  display: block;
}

.measurement__bottom-img {
  position: relative;
  display: block;
}

.measurement__bottom-img:before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: -20px;
  background-color: var(--aports-base);
  width: 20px;
}

.measurement__bottom-img img {
  width: 100%;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: #23252b;
  padding: 93px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* mix-blend-mode: luminosity; */
  opacity: 0.4;
  z-index: -1;
}

.cta-one__shape-1 {
  position: absolute;
  top: -55px;
  right: 0;
}

.cta-one__shape-1 img {
  width: auto;
}

.cta-one__shape-2 {
  position: absolute;
  top: -32px;
  right: -103px;
}

.cta-one__shape-2 img {
  width: auto;
}

.cta-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.cta-one__title-box {
  position: relative;
  display: block;
  margin-bottom: 49px;
}

.cta-one__title-box p {
  font-size: 14px;
  color: var(--aports-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 24px;
}

.cta-one__title-box .h2 {
  font-size: 45px;
  font-weight: 700;
  color: var(--aports-white);
  line-height: 55px;
  margin-top: 3px;
}

.cta-one__btn-box {
  position: relative;
  display: inline-block;
}

.cta-one__btn:hover {
  color: var(--aports-base) !important;
}

.cta-one__btn:before {
  background: var(--aports-white);
}

/*--------------------------------------------------------------
# Value
--------------------------------------------------------------*/
.value {
  position: relative;
  display: block;
  padding: 120px 0 113px;
  z-index: 1;
}

.value-shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}

.value-shape-1 img {
  width: auto;
}

.value__left {
  position: relative;
  display: block;
  margin-inline-start: -90px;
  margin-inline-end: 70px;
  z-index: 1;
}

.value__left:before {
  content: "";
  position: absolute;
  top: -120px;
  right: 300px;
  left: -10000000px;
  bottom: 0;
  background-color: var(--aports-base);
  z-index: -1;
}

.value__img {
  position: relative;
  display: block;
}

.value__img img {
  width: 100%;
}

.value__right {
  position: relative;
  display: block;
}

.value__right .section-title {
  margin-bottom: 30px;
}

.value__points-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 33px;
}

.value__points {
  position: relative;
  display: block;
  float: left;
}

.value__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.value__points li + li {
  margin-top: 16px;
}

.value__points li .icon {
  height: 18px;
  width: 18px;
  background-color: var(--aports-base);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--aports-white);
}

.value__points li .text {
  margin-inline-start: 20px;
}

.value__points li .text p {
  font-size: 18px;
  font-weight: 700;
  color: var(--aports-black);
}

.value__points-two {
  margin-inline-start: 85px;
}

/*--------------------------------------------------------------
# Apartments Two
--------------------------------------------------------------*/
.apartments-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.apartments-two .container {
  max-width: 1600px;
}

.apartments-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.apartments-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.apartments-two__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--aports-black-rgb), 0.5);
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  z-index: 1;
}

.apartments-two__single:hover .apartments-two__img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.apartments-two__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 500ms ease;
}

.apartments-two__single:hover .apartments-two__img img {
  transform: scale(1.05);
}

.apartments-two__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 23px 30px 30px;
}

.apartments-two__content-left {
  position: relative;
  display: block;
}

.apartments-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}

.apartments-two__title a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.apartments-two__title a:hover {
  color: var(--aports-base);
}

.apartments-two__tagline {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.apartments-two__content-right {
  position: relative;
  display: block;
  top: 3px;
}

.apartments-two__btn {
  font-size: 10px;
  padding: 1px 20px 1px;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
  padding: 120px 0 90px;
  z-index: 1;
}

.news-two__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.news-two__left {
  position: relative;
  display: block;
}

.news-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.news-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(35, 37, 43);
  background: linear-gradient(
    180deg,
    rgba(35, 37, 43, 0.3029586834733894) 23%,
    rgba(35, 37, 43, 0.7539390756302521) 71%
  );
}

.news-two__img img {
  width: 100%;
}

.news-two__content {
  position: absolute;
  bottom: 54px;
  left: 60px;
  right: 60px;
  z-index: 3;
}

.news-two__date-comment {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.news-two__date {
  position: relative;
  display: block;
  background-color: var(--aports-base);
  padding: 12px 20px;
}

.news-two__date p {
  font-size: 10px;
  color: var(--aports-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 10px;
}

.news-two__comment {
  margin-inline-start: 20px;
}

.news-two__comment a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--aports-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__comment a:hover {
  color: var(--aports-base);
}

.news-two__comment a i {
  font-size: 15px;
  color: var(--aports-base);
  padding-inline-end: 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.news-two__title a {
  color: var(--aports-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__title a:hover {
  color: var(--aports-base);
}

.news-two__right {
  position: relative;
  display: block;
}

.news-two__list {
  position: relative;
  display: block;
}

.news-two__list > li {
  position: relative;
  display: flex;
  margin-bottom: 30px;
}

.news-two__list-img {
  position: relative;
  display: block;
  max-width: 170px;
  width: 100%;
  min-height: 159px;
  overflow: hidden;
  z-index: 1;
}

.news-two__list-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--aports-black-rgb), 0.8);
  opacity: 0;
  z-index: 1;
  content: "";
}

.news-two__list > li:hover .news-two__list-img:before {
  opacity: 1;
  opacity: 0.8;
}

.news-two__list-img > img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.news-two__list > li:hover .news-two__list-img > img {
  transform: scale(1);
}

.news-two__list-content {
  position: relative;
  display: block;
  background-color: var(--aports-white);
  padding: 32px 30px 30px;
  min-height: 159px;
}

.news-two__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-two__meta > li + li {
  margin-inline-start: 10px;
}

.news-two__meta > li > a {
  font-size: 14px;
  color: var(--aports-gray);
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__meta > li > a:hover {
  color: var(--aports-base);
}

.news-two__meta > li > a > i {
  color: var(--aports-base);
  padding-inline-end: 4px;
}

.news-two__list-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-top: 5px;
}

.news-two__list-title a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__list-title a:hover {
  color: var(--aports-base);
}

/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/
.gallery-two {
  position: relative;
  display: block;
  padding: 120px 0 110px;
}

.gallery-two .row {
  --bs-gutter-x: 10px;
}

.gallery-two__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  right: 0;
  background-color: var(--aports-base);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
}

.gallery-two__single:hover .gallery-two__img:before {
  opacity: 0.9;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-two__img img {
  width: 100%;
}

.gallery-two__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-two__icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--aports-white);
  border: 2px solid var(--aports-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.gallery-two__single:hover .gallery-two__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-two__icon a:hover {
  border: 2px solid var(--aports-black);
  color: var(--aports-black);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  background-color: var(--aports-base);
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.about-three__shape-1 {
  position: absolute;
  top: -100px;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}

.about-three__shape-1 img {
  width: auto;
}

.about-three__shape-2 {
  position: absolute;
  bottom: -170px;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}

.about-three__shape-2 img {
  width: auto;
}

.about-three__left {
  position: relative;
  display: block;
  margin-inline-end: 178px;
  z-index: 1;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img-one {
  position: relative;
  display: block;
}

.about-three__img-one:before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: -20px;
  width: 20px;
  background-color: var(--aports-black);
}

.about-three__img-one img {
  width: 100%;
}

.about-three__img-two {
  position: absolute;
  top: 60px;
  right: -178px;
}

.about-three__img-two img {
  width: auto;
}

.about-three__right {
  position: relative;
  display: block;
  margin-inline-start: 70px;
}

.about-three__right .section-title {
  margin-bottom: 38px;
}

.about-three__right .section-title__tagline {
  color: var(--aports-white);
}

.about-three__right .section-title__title {
  color: var(--aports-white);
}

.about-three__points {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__points li {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--aports-white);
  background-color: rgba(var(--aports-black-rgb), 0.2);
  max-width: 240px;
  width: 100%;
  padding: 14px 29px 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__points li:hover {
  border: 1px solid var(--aports-black);
  background-color: rgba(var(--aports-black-rgb), 1);
}

.about-three__points li + li {
  margin-inline-start: 20px;
}

.about-three__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: var(--aports-white);
  font-size: 9px;
  border-radius: 50%;
  color: var(--aports-base);
}

.about-three__points li .text {
  margin-inline-start: 15px;
}

.about-three__points li .text p {
  font-size: 18px;
  color: var(--aports-white);
  font-weight: 700;
}

.about-three__text-1 {
  font-size: 18px;
  color: var(--aports-white);
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 41px;
  padding-bottom: 32px;
}

.about-three__text-2 {
  color: var(--aports-white);
}

.about-three__btn {
  background-color: var(--aports-black);
  margin-top: 41px;
}

.about-three__btn:hover {
  color: var(--aports-base);
}

.about-three__btn:before {
  background: var(--aports-white);
}

/*--------------------------------------------------------------
# Floor Plan Two
--------------------------------------------------------------*/
.floor-plan-two {
  position: relative;
  display: block;
  padding: 120px 0 104px;
}

.floor-plan-two__main-tab-box {
  position: relative;
  display: block;
}

.floor-plan-two__main-tab-box .tab-buttons {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
  padding: 34px 30px 33px;
}

.floor-plan-two__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 7px 20px 7px;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.floor-plan-two__main-tab-box .tab-buttons .tab-btn:hover,
.floor-plan-two__main-tab-box .tab-buttons .tab-btn.active-btn {
  background-color: var(--aports-white);
}

.floor-plan-two__main-tab-box .tab-buttons .tab-btn i {
  font-size: 15px;
  color: var(--aports-base);
  position: relative;
  display: inline-block;
  transform: scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.floor-plan-two__main-tab-box .tab-buttons .tab-btn:hover i,
.floor-plan-two__main-tab-box .tab-buttons .tab-btn.active-btn i {
  transform: scale(1);
}

.floor-plan-two__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-top: 4px;
}

.floor-plan-two__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 16px;
  color: var(--aports-gray);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}

.floor-plan-two__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.floor-plan-two__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.floor-plan-two__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.floor-plan-two__right {
  position: relative;
  display: block;
}

.floor-plan-two__tab-content {
  position: relative;
  display: block;
  margin-top: -9px;
}

.floor-plan-two__tab-content-img {
  position: relative;
  display: block;
  margin-top: 40px;
}

.floor-plan-two__tab-content-img img {
  width: 100%;
}

.floor-plan-two__tab-content-right {
  position: relative;
  display: block;
}

.floor-plan-two__tab-content-text {
  padding-bottom: 24px;
}

.floor-plan-two__tab-content-details {
  position: relative;
  display: block;
}

.floor-plan-two__tab-content-details li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--aports-bdr-color);
  padding: 6px 0px 6px;
}

.floor-plan-two__tab-content-details li:last-child {
  border-bottom: 0;
}

.floor-plan-two__tab-content-details li p {
  font-size: 14px;
  font-weight: 700;
  color: var(--aports-black);
}

.floor-plan-two__tab-content-details li span {
  font-size: 14px;
  font-weight: 700;
  color: var(--aports-base);
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
  padding: 120px 0 90px;
  z-index: 1;
}

.services-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.services-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.services-one__top-left {
  position: relative;
  display: block;
}

.services-one__top-left .section-title {
  margin-bottom: 0;
}

.services-one__top-right {
  position: relative;
  display: block;
  margin-top: 19px;
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__bottom .row {
  --bs-gutter-x: 17px;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.services-one__img {
  position: relative;
  display: block;
  background-color: var(--aports-black);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05);
  opacity: 0.5;
}

.services-one__content {
  position: relative;
  display: block;
  padding: 22px 30px 33px;
}

.services-one__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 15px;
}

.services-one__title a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__title a:hover {
  color: var(--aports-base);
}

.services-one__points {
  position: relative;
  display: block;
}

.services-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-one__points li + li {
  margin-top: 8px;
}

.services-one__points li .icon {
  height: 16px;
  width: 16px;
  background-color: var(--aports-base);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--aports-white);
}

.services-one__points li .text {
  margin-inline-start: 15px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.team-one__main-tab-box {
  position: relative;
  display: block;
}

.team-one__main-tab-box .tab-buttons {
  position: relative;
  display: block;
}

.team-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--aports-primary);
  padding: 20px 20px 20px;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  background-color: var(--aports-base);
  transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn:hover:before,
.team-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  transform: scaleX(1);
}

.team-one__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-top: 20px;
}

.team-one__main-tab-box .tab-buttons .tab-btn .img-box {
  position: relative;
  display: block;
  width: 60px;
}

.team-one__main-tab-box .tab-buttons .tab-btn .img-box img {
  width: 100%;
}

.team-one__main-tab-box .tab-buttons .tab-btn .content-box {
  margin-inline-start: 20px;
}

.team-one__main-tab-box .tab-buttons .tab-btn .content-box h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
}

.team-one__main-tab-box .tab-buttons .tab-btn .content-box p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 12px;
}

.team-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.team-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.team-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.team-one__right {
  position: relative;
  display: block;
}

.team-one__tab-content-box {
  position: relative;
  display: block;
}

.team-one__tab-content-img {
  position: relative;
  display: block;
  margin-inline-end: 50px;
  overflow: hidden;
  background-color: var(--aports-black);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__tab-content-img img {
  width: 100%;
  transition: all 500ms ease;
}

.team-one__tab-content-img:hover img {
  transform: scale(1.05);
  opacity: 0.3;
}

.team-one__tab-content-details {
  position: relative;
  display: block;
  margin-inline-start: -50px;
  margin-top: -5px;
}

.team-one__name {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 4px;
}

.team-one__name a {
  color: var(--aports-black);
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--aports-base);
}

.team-one__sub-title {
  font-size: 14px;
  color: var(--aports-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-one__text {
  padding-top: 31px;
  padding-bottom: 31px;
}

.team-one__contact {
  position: relative;
  display: block;
}

.team-one__contact-list {
  position: relative;
  display: block;
}

.team-one__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.team-one__contact-list li + li {
  margin-top: 6px;
}

.team-one__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.team-one__contact-list li .icon i {
  font-size: 14px;
  color: var(--aports-base);
  position: relative;
  display: inline-block;
}

.team-one__contact-list li .text {
  margin-inline-start: 20px;
}

.team-one__contact-list li .text p {
  font-size: 16px;
  font-weight: 700;
  color: var(--aports-black);
}

.team-one__contact-list li .text p a {
  color: var(--aports-black);
  transition: all 500ms ease;
}

.team-one__contact-list li .text p a:hover {
  color: var(--aports-base);
}

.team-one__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 50px;
}

.team-one__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--aports-gray);
  transition: all 500ms ease;
}

.team-one__social a:hover {
  color: var(--aports-base);
}

.team-one__social a + a {
  margin-inline-start: 20px;
}

/*--------------------------------------------------------------
# Value Two 
--------------------------------------------------------------*/
.value-two {
  position: relative;
  display: block;
  height: 720px;
  z-index: 1;
}

.value-two__wrap {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
}

.value-two__left {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  min-height: 615px;
  z-index: 1;
  height: 100%;
}

.value-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-color: var(--aports-black);
}

.value-two__right {
  position: relative;
  display: block;
  width: 50%;
  float: right;
  background-color: var(--aports-black);
  z-index: 1;
  height: 100%;
}

.value-two__shape-1 {
  position: absolute;
  top: -30px;
  right: -20px;
  opacity: 0.05;
  z-index: -1;
}

.value-two__shape-1 img {
  width: auto;
}

.value-two__right-content {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  margin-inline-start: 115px;
  padding-top: 120px;
  padding-bottom: 111px;
}

.value-two__right .section-title {
  margin-bottom: 29px;
}

.value-two__right .section-title__title {
  color: var(--aports-white);
}

.value-two__text {
  color: #a2a5ae;
}
.orbit-3d {
  position: relative;
  width: 70%;
  height: 78%;
  margin: 70px auto;
  perspective: 900px;
}

@media (max-width: 991px) {
  .orbit-3d {
    width: 100%;
    height: 500px;
    margin: 0 auto;
  }
}

.center-value {
  position: absolute;
  width: 130px;
  height: 130px;
  background: var(--aports-base);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--aports-black);
  font-weight: bold;
}

.center-value i {
  font-size: 32px;
  margin-bottom: 6px;
}

.orbit-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateOrbit 18s linear infinite;
  transform-style: preserve-3d;
}

.orbit-item {
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--aports-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform-style: preserve-3d;
}

.orbit-item i {
  font-size: 26px;
  color: var(--aports-base);
  margin-bottom: 6px;
}

/* توزيع العناصر على مدار ثلاثي الأبعاد */
.orbit-item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0) rotateY(0deg);
}
.orbit-item:nth-child(2) {
  top: 15%;
  left: 88%;
  transform: translate(-50%, -50%) rotateY(45deg);
}
.orbit-item:nth-child(3) {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%) rotateY(90deg);
}
.orbit-item:nth-child(4) {
  bottom: 15%;
  left: 88%;
  transform: translate(-50%, 50%) rotateY(135deg);
}
.orbit-item:nth-child(5) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0) rotateY(180deg);
}
.orbit-item:nth-child(6) {
  bottom: 15%;
  left: 12%;
  transform: translate(-50%, 50%) rotateY(225deg);
}
.orbit-item:nth-child(7) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotateY(270deg);
}
.orbit-item:nth-child(8) {
  top: 15%;
  left: 12%;
  transform: translate(-50%, -50%) rotateY(315deg);
}

@keyframes rotateOrbit {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 475px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 170px 0 50px;
  overflow: hidden;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header-bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(35, 37, 43, 0.7);
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 45px;
  color: var(--aports-white);
  font-weight: 700;
  line-height: 55px;
}

.page-header__inner h1 {
  font-size: 45px;
  color: var(--aports-white);
  font-weight: 700;
  line-height: 55px;
}

.thm-breadcrumb {
  position: relative;
  display: block;
  padding-inline-start: 0px;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--aports-base);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li + li {
  margin-inline-start: 4px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--aports-base);
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--aports-white);
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url("../images/backgrounds/vertical_logo.webp");
  background-size: 6% 70%;
  background-position: 0% 20%;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.news-details__date {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--aports-base);
  padding: 12px 20px;
}

.news-details__date p {
  font-size: 10px;
  color: var(--aports-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 10px;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 28px;
}

.news-details__author {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: var(--aports-base);
}

.news-details__title {
  font-size: 29px;
  line-height: 40px;
  margin-top: 9px;
  margin-bottom: 11px;
  font-weight: 700;
}

.news-details__text-1 {
  font-size: 16px;
  font-weight: 400;
  padding-top: 31px;
}

.news-details__text-2 {
  font-size: 16px;
  padding-top: 31px;
  font-weight: 400;
  padding-bottom: 31px;
}

.news-details__text-3 {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 31px;
}

.news-details__text-4 {
  font-size: 16px;
  font-weight: 400;
}

.news-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid var(--aports-bdr-color);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--aports-black);
  font-size: 20px;
  margin-inline-end: 4px;
  font-weight: 700;
}

.news-details__tags a {
  position: relative;
  color: var(--aports-white);
  font-size: 12px;
  background-color: var(--aports-base);
  display: inline-block;
  padding: 6px 20px 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--aports-black);
  color: var(--aports-white);
}

.news-details__tags a + a {
  margin-inline-start: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  text-align: center;
  color: var(--aports-black);
  background-color: var(--aports-extra);
  font-size: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--aports-base);
}

.news-details__social-list a + a {
  margin-inline-start: 30px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--aports-black);
  font-size: 36px;
  margin-bottom: 51px;
  font-weight: 700;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--aports-bdr-color);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.comment-one__content {
  position: relative;
  margin-inline-start: 45px;
  width: -webkit-fill-available;
}

.comment-one__content .h3 {
  margin: 0;
  font-size: 20px;
  color: var(--aports-black);
  margin-bottom: 26px;
  font-weight: 700;
}

.comment-one__content p {
  font-size: 16px;
  font-weight: 400;
}

.comment-one__btn {
  margin-top: 20px;
  padding: 4px 20px;
  position: relative;
  top: 0;
  left: 0;
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 10%;
}

.comment-one__image img {
  border-radius: 10%;
}

.comment-form .comment-form__title {
  margin-top: -9px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--aports-primary);
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  outline: none;
  font-size: 16px;
  color: var(--aports-gray);
  display: block;
  font-weight: 400;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--aports-gray);
  height: 170px;
  width: 100%;
  background-color: var(--aports-primary);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.comment-form__btn {
  border: none;
}

.comment-form__input-box.text-message-box {
  height: 170px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  max-width: 350px;
  margin: auto;
}

.sidebar__post {
  padding: 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar__title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--aports-black);
  border-bottom: 2px solid var(--aports-base);
  display: inline-block;
  padding-bottom: 5px;
}

.sidebar__post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar__post-list li {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar__post-list li:hover {
  background-color: #f0f4ff;
  transform: translateX(-5px);
}

.sidebar__post-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.sidebar__post-image img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar__post-link:hover img {
  transform: scale(1.05);
}

.sidebar__post-content {
  margin-inline-start: 15px;
}

.sidebar__post-content h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 600;
  color: var(--aports-black);
}

.sidebar__post-meta {
  display: block;
  font-size: 13px;
  color: var(--aports-gray);
  margin-top: 3px;
}

@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
}

@media (max-width: 991px) {
  .contact-two {
    padding: 30px 0 0px;
  }
}

.contact-two__left {
  position: relative;
  display: block;
  margin-inline-start: 30px;
}

.contact-two__img {
  position: relative;
  display: block;
}

.contact-two__img:before {
  content: "";
  position: absolute;
  top: 30px;
  left: -30px;
  bottom: 30px;
  width: 30px;
  background-color: var(--aports-base);
}

.contact-two__img img {
  width: 100%;
}

.contact-two__right {
  position: relative;
  display: block;
  margin-inline-start: 100px;
}

.contact-two__right .section-title {
  margin-bottom: 29px;
}

.contact-two__text-1 {
  padding-bottom: 40px;
}

.contact-two__list {
  position: relative;
  display: block;
  padding-inline-start: 0px;
}

.contact-two__list li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-two__list li + li {
  margin-top: 20px;
}

.contact-two__list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: var(--aports-primary);
  font-size: 25px;
  color: var(--aports-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-two__list li .icon:hover {
  background-color: var(--aports-base);
  color: var(--aports-white);
}

.contact-two__list li .icon img {
  filter: hue-rotate(275deg) saturate(140%) brightness(100%);
}

.contact-two__list li .content {
  margin-inline-start: 30px;
  position: relative;
}

.contact-two__list li .content p {
  line-height: 16px;
}

.contact-two__list li .content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 10px;
}

.contact-two__list li .content h3 span {
  color: var(--aports-base);
}

.contact-two__list li .content a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-two__list li .content a:hover {
  color: var(--aports-base);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
  position: relative;
  display: block;
  background-color: var(--aports-primary);
}

.google-map__two {
  position: relative;
  display: block;
  border: none;
  height: 475px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Contact Three
--------------------------------------------------------------*/
.contact-three {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: -60px;
  padding: 0 0 120px;
  z-index: 1;
}

.contact-three__inner {
  position: relative;
  display: block;
  /* margin: 0 30px; */
  padding: 10px 10px 10px;
  z-index: 1;
}

.contact-three__form-box {
  position: relative;
  display: block;
}

.contact-three__form {
  position: relative;
  display: block;
}

.contact-three__form .row {
  --bs-gutter-x: 20px;
}

.contact-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-form__input-box input[type="text"],
.contact-form__input-box input[type="email"],
.contact-form__input-box select {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--aports-primary);
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  outline: none;
  font-size: 16px;
  color: var(--aports-gray);
  display: block;
  font-weight: 400;
}

.contact-form__input-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 16px;
  padding-inline-end: 50px;
  cursor: pointer;
}

.contact-form__input-box textarea {
  font-size: 16px;
  color: var(--aports-gray);
  height: 170px;
  width: 100%;
  background-color: var(--aports-primary);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.contact-form__btn {
  border: none;
}

.contact-form__input-box.text-message-box {
  height: 170px;
}

.contact-form__btn {
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Apartments Page
--------------------------------------------------------------*/
.apartments-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Apartment Details
--------------------------------------------------------------*/
.apartment-details {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.apartment-details__img-box {
  position: relative;
  display: block;
}

.apartment-details__img {
  position: relative;
  display: block;
}

.apartment-details__img img {
  width: 100%;
}

.apartment-details__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url("../images/backgrounds/vertical_logo.webp");
  background-size: 6% 70%;
  background-position: 0% 20%;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.apartment-details__list-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07),
    inset 0px -4px 0px 0px rgba(206, 174, 146, 0.004);
  padding: 44px 60px 26px;
  margin-inline-start: 30px;
  margin-inline-end: 30px;
  margin-top: -60px;
}

.apartment-details__list-box .h3 {
  font-weight: bold;
}

.apartment-details__list-box .h3 span {
  color: var(--aports-base);
}

.apartment-details__list-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--aports-base);
}

.apartment-details__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.apartment-details__list li {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.apartment-details__list-content {
  position: relative;
  display: block;
}

.apartment-details__list-content h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 8px;
}

.apartment-details__list-content p {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 16px;
}

.apartment-details__content-box {
  position: relative;
  display: block;
  margin-top: 50px;
}

.apartment-details__content-box h3 {
  padding-top: 6px;
  display: inline-block;
}

.apartment-details__content-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 20px;
}

.apartment-details__text-1 {
  padding-top: 28px;
  padding-bottom: 36px;
}

.apartment-details__text-2 {
  padding-top: 28px;
}

.apartment-details__text-3 {
  padding-bottom: 36px;
}

.apartment-details__points {
  position: relative;
  display: block;
  margin-top: 1.5rem;
}

.apartment-details__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.apartment-details__points li + li {
  margin-top: 10px;
}

.apartment-details__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--aports-base);
  font-size: 10px;
  color: var(--aports-white);
  padding: 10px;
}

.apartment-details__points li .text {
  margin-inline-start: 15px;
}

.apartment-details__points li .text p {
  font-size: 18px;
  color: var(--aports-black);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Apartment Plan
--------------------------------------------------------------*/
.apartment-plan {
  padding-top: 80px;
}

.apartment-plan__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 52px;
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Value Three
--------------------------------------------------------------*/
.value-three {
  position: relative;
  display: block;
  padding: 0 0 113px;
}

.value-three .value__left:before {
  top: 0;
  bottom: -120px;
}

/*--------------------------------------------------------------
# The Building
--------------------------------------------------------------*/
.the-building {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.the-building__top {
  position: relative;
  display: block;
  margin-bottom: 120px;
}

.the-building__top-left {
  position: relative;
  display: block;
  margin-inline-end: 70px;
}

.the-building__top-left .section-title {
  margin-bottom: 30px;
}

.the-building__top-text-2 {
  padding-top: 31px;
}

.the-building__top-right {
  position: relative;
  display: block;
}

.the-building__top-img {
  position: relative;
  display: block;
}

.the-building__top-img img {
  width: 100%;
}

.the-building__bottom {
  position: relative;
  display: block;
}

.the-building__bottom-left {
  position: relative;
  display: block;
}

.the-building__bottom-img {
  position: relative;
  display: block;
}

.the-building__bottom-img img {
  width: 100%;
}

.the-building__bottom-right {
  position: relative;
  display: block;
  margin-inline-start: 70px;
}

.the-building__bottom-right .section-title {
  margin-bottom: 30px;
}

.the-building__bottom-text-2 {
  padding-top: 31px;
}

/*--------------------------------------------------------------
# Gallery Three
--------------------------------------------------------------*/
.gallery-three {
  position: relative;
  display: block;
  padding: 0px 0px 110px;
}

.gallery-three .container {
  max-width: 1575px;
}

.gallery-three .row {
  --bs-gutter-x: 10px;
}

.gallery-three__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  right: 0;
  background-color: var(--aports-base);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
}

.gallery-three__single:hover .gallery-three__img:before {
  opacity: 0.9;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-three__img img {
  width: 100%;
}

.gallery-three__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-three__icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--aports-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.gallery-three__single:hover .gallery-three__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-three__icon a:hover {
  color: var(--aports-black);
}

/*--------------------------------------------------------------
# Vision & Mission Section - Glassmorphism
--------------------------------------------------------------*/
.vision-mission {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(100, 178, 0, 0.15),
    rgba(255, 255, 255, 0.4)
  );
  backdrop-filter: blur(6px);
}

.vm-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 35px;
  margin-bottom: 35px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .vm-box {
    display: grid;
  }
}

.vm-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.vm-icon {
  min-width: 70px;
  height: 70px;
  background: rgba(100, 178, 0, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--aports-base);
  backdrop-filter: blur(10px);
}

.vm-tag {
  display: inline-block;
  background: var(--aports-base);
  color: var(--aports-white);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.vm-heading {
  font-size: 28px;
  font-weight: 800;
  margin: 15px 0;
  color: var(--aports-black);
}

.vm-content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--aports-gray);
  margin: 0;
}

/*--------------------------------------------------------------
# Managers Section - Glassmorphism
--------------------------------------------------------------*/
/* Managers Section */
.managers-speech {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(50, 52, 59, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  backdrop-filter: blur(6px);
}

.ms-tag {
  background: var(--aports-base);
  color: var(--aports-white);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.ms-heading {
  font-size: 34px;
  font-weight: 800;
  margin-top: 15px;
  color: var(--aports-black);
}

/* Slide Layout */
.ms-slide {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ms-img-box {
  min-width: 220px;
  max-width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ms-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.ms-content {
  position: relative;
  flex: 1;
}

.ms-quote-icon {
  position: absolute;
  top: -55px;
  right: -20px;
  background: var(--aports-base);
  color: var(--aports-white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.ms-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--aports-gray);
  margin-bottom: 20px;
}

.ms-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--aports-black);
}

.ms-role {
  font-size: 16px;
  color: var(--aports-gray);
}

/* Responsive */
@media (max-width: 768px) {
  .ms-slide {
    flex-direction: column;
    text-align: center;
  }

  .ms-img-box {
    margin-bottom: 20px;
  }

  .ms-quote-icon {
    right: 50%;
    transform: translateX(50%);
  }
}

/*--------------------------------------------------------------
# Engineers Section
--------------------------------------------------------------*/
.engineers-holo {
  padding: 90px 0;
  background: #ffffff;
}

/* عنوان القسم الرئيسي */
.eng-tag {
  background: var(--aports-base);
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.eng-heading {
  font-size: 36px;
  font-weight: 800;
  margin-top: 15px;
  color: var(--aports-black);
}

/* عنوان التخصص */
.department-section {
  margin-bottom: 60px;
}

.department-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--aports-black);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--aports-base);
  display: inline-block;
  position: relative;
}

.department-title img {
 filter: hue-rotate(275deg) saturate(140%) brightness(100%);
}

/* الكارد - تحسين لارتفاع متساوي */
.holo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
}

.holo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

/* المحتوى - لملء المساحة المتبقية */
.holo-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* أيقونة الزاوية */
.corner-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: var(--aports-black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: left;
  padding: 12px;
  color: #fff;
  font-size: 22px;
  opacity: 0.95;
  z-index: 10;
}

.mech-badge {
  background: var(--aports-base);
}
.elec-badge {
  background: var(--aports-base);
}
.struct-badge {
  background: var(--aports-base);
}

/* صورة المهندس - زيادة الارتفاع */
.holo-img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.holo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.4s ease;
}

.holo-card:hover .holo-img img {
  transform: scale(1.08);
}

/* الخط الأخضر المتحرك */
.holo-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--aports-base),
    transparent
  );
  border-radius: 10px;
  margin: 15px 0;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.holo-card:hover .holo-line {
  transform: scale(0.6);
}

/* النص */
.holo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--aports-black);
  margin-bottom: 5px;
}

.holo-title {
  font-size: 16px;
  color: var(--aports-gray);
  margin-bottom: 15px;
  line-height: 1.4;
}

/* حاوية معلومات المهندس */
.engineer-info-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* قسم المعلومات */
.info-section {
  margin-bottom: 20px;
}

.info-header h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--aports-black);
  display: flex;
  align-items: center;
}

.info-header i {
  color: var(--aports-base);
}

/* محتوى المعلومات */
.info-content {
  overflow: hidden;
}

/* العناصر المخفية مبدئيًا */
.hidden-item {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* عند تفعيل العرض */
.hidden-item.show {
  display: block;
  opacity: 1;
  max-height: 1000px;
}

/* القوائم */
.holo-content ul {
  margin-bottom: 15px;
}

.caret-arrow li {
  position: relative;
  padding-right: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 14px;
}

.caret-arrow li:before {
  content: "▸";
  position: absolute;
  right: 0;
  color: var(--aports-base);
  font-weight: bold;
}

.check li {
  position: relative;
  padding-right: 25px;
  margin-bottom: 6px;
  font-size: 14px;
}

.check li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--aports-base);
  font-weight: bold;
}

/* زر عرض المزيد */
.show-more-btn {
  background: var(--aports-base);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  max-width: 200px;
  align-self: center;
  margin-top: 15px;
}

.show-more-btn:hover {
  background: var(--aports-black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.show-more-btn i {
  transition: transform 0.3s ease;
}

.show-more-btn.active i {
  transform: rotate(180deg);
}

/* ريسبونسف */
@media (max-width: 768px) {
  .holo-card {
    margin-bottom: 25px;
  }
  
  .holo-img {
    height: 280px;
  }
  
  .department-title {
    font-size: 24px;
  }
  
  .show-more-btn {
    max-width: 180px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .holo-img {
    height: 250px;
  }
  
  .department-title {
    font-size: 22px;
  }
  
  .holo-name {
    font-size: 20px;
  }
  
  .holo-title {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.faq-page__tab-box {
  position: relative;
  display: block;
}

.faq-page__tab-box .tab-buttons {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.faq-page__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__tab-box .tab-buttons .tab-btn:hover,
.faq-page__tab-box .tab-buttons .tab-btn.active-btn {
  background-color: var(--aports-white);
}

.faq-page__tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-inline-start: 5px;
}

.faq-page__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 16px;
  color: var(--aports-black);
  font-weight: 700;
  transition: all 0.3s ease;
  z-index: 1;
  background-color: var(--aports-primary);
  padding: 27px 50px 27px;
}

.faq-page__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--aports-white);
}

.faq-page__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--aports-black);
  transition: all 0.3s ease;
  z-index: -1;
}

.faq-page__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.faq-page__tab-box .tabs-content {
  position: relative;
  display: block;
}

.faq-page__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.faq-page__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.faq-page__tab-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--aports-bdr-color);
  padding: 29px 60px 29px;
}

.faq-page__tab-content-box .faq-one-accrodion .accrodion-title h3 {
  font-weight: 500;
  padding-inline-end: 25px;
}

.faq-page__tab-content-box .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 19px;
}

.faq-page__tab-content-box .faq-one-accrodion .accrodion-content {
  padding: 0px 0px 33px;
  margin-top: 0;
}

.faq-page__tab-content-box .faq-one-accrodion .accrodion-title h3::before {
  content: "\f067";
  font-size: 11px;
  border-radius: 50%;
  border: 1px solid var(--aports-black);
}

.faq-page__tab-content-box
  .faq-one-accrodion
  .accrodion.active
  .accrodion-title
  h3::before {
  content: "\f068";
  border: 1px solid var(--aports-base);
}

.apartment-details__content-box .faq-one-accrodion .accrodion-title h3 {
  display: block;
}

/*--------------------------------------------------------------
# Feature Four
--------------------------------------------------------------*/
.feature-four {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.feature-four__single {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.feature-four__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-four__img-box:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 30px;
  right: 30px;
  background-color: var(--aports-base);
  height: 6px;
}

.feature-four__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--aports-black);
  transition: all 500ms ease;
  z-index: 1;
}

.feature-four__img img {
  width: 100%;
  transition: all 500ms ease;
}

.feature-four__single:hover .feature-four__img img {
  transform: scale(1.05);
  opacity: 0.3;
}

.feature-four__content {
  position: relative;
  display: block;
  margin-top: 29px;
}

.feature-four__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 12px;
}

.feature-four__title a {
  color: var(--aports-black);
  transition: all 500ms ease;
}

.feature-four__title a:hover {
  color: var(--aports-base);
}

.feature-four__text {
  font-size: 18px;
  line-height: 34px;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-two .container {
  max-width: 1600px;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.team-two__img-box {
  position: relative;
  display: block;
}

.team-two__hover {
  position: absolute;
  bottom: -136px;
  left: 0;
  right: 0;
  text-align: center;
  background-color: var(--aports-white);
  padding: 28px 0 0;
  transform: translateY(-66%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
}

.team-two__single:hover .team-two__hover {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.team-two__hover-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
}

.team-two__hover-name a {
  color: var(--aports-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__hover-name a:hover {
  color: var(--aports-base);
}

.team-two__hover-sub-title {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 12px;
}

.team-two__hover-sub-title i {
  color: var(--aports-base);
}

.team-two__hover-sub-title a:hover {
  color: var(--aports-base);
}

.team-two__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.team-two__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--aports-black);
  font-size: 15px;
  background-color: var(--aports-primary);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-two__social a:hover {
  color: var(--aports-white);
}

.team-two__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--aports-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.team-two__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.team-two__social a + a {
  margin-inline-start: 10px;
}

.team-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.team-two__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--aports-black-rgb), 0.3);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-two__single:hover .team-two__img:before {
  transform: translateY(0);
  width: 100%;
}

.team-two__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.05);
}

.team-two__content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 27px;
}

.team-two__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
}

.team-two__name a {
  color: var(--aports-black);
}

.team-two__sub-title {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 17px;
}

.team-two__sub-title i {
  color: var(--aports-base);
}

.team-two__sub-title a:hover {
  color: var(--aports-base);
}

/*--------------------------------------------------------------
# Team Page 
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# New CSS BY Me
--------------------------------------------------------------*/

.social-branch {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  font-size: 22px;
}

.social-branch a {
  color: #70cb1f;
  text-decoration: none;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s ease;
}

.social-branch a:hover {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.branch-content a:hover {
  color: #70cb1f;
}

.neighborhoods__popup-inner a {
  color: var(--aports-black);
}

.neighborhoods__popup-inner a:hover {
  color: var(--aports-white);
}

@media (min-width: 1200px) {
  #header.floating {
    position: fixed;
    top: 120px;
    width: 370px;
  }

  .page-header {
    padding: 269px 0 123px;
  }
}

.darkImage {
  filter: brightness(0.65);
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  border: none !important;
  text-decoration: none;
}

.contact-one__input-box input.wobble-error,
.contact-one__input-box textarea.wobble-error,
.contact-form__input-box input.wobble-error,
.contact-form__input-box textarea.wobble-error {
  -webkit-animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
  animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
}

label.error {
  display: none !important;
}

.contact-one__input-box input.error,
.contact-one__input-box textarea.error,
.contact-form__input-box input.error,
.contact-form__input-box textarea.error {
  background: #f9e0e0;
}

.success-message {
  display: none;
}

.error-message {
  display: none;
}

.contact-form__input-box input:focus,
.contact-form__input-box textarea:focus {
  background: var(--aports-primary);
}

.contact-one__input-box input:focus,
.contact-one__input-box textarea:focus {
  background: var(--aports-white);
}

#waitingBtn {
  display: flex;
}

/*===================*/
/* WOOBLE HORIZONTAL
/*===================*/

@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* for whatsapp button */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #626262;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.float svg {
  transition: 1s;
}

.float svg:hover {
  color: #fff;
  transition: 1s;
  rotate: 360deg;
  text-decoration: unset;
}

/* English Settings */

@media only screen and (max-width: 720px) {
}

html[lang="en"] .faq-one-accrodion .accrodion-title h3::before {
  left: unset;
  right: 0;
}

html[lang="en"] h4 {
  font-size: 1.4rem;
}

html[lang="en"] .faq-one-accrodion .accrodion-title h3 {
  font-size: 16px;
}

.feature-one__title {
  line-height: 27px;
}

html[lang="en"] .news-one__title {
  font-size: 21px;
}

html[lang="en"] .news-one__bottom {
  display: block;
}

html[lang="en"] .contact-two__list li .content h3 {
  font-size: 17px;
}

html[lang="en"] .main-menu .main-menu__list > li > ul > li > a {
  font-size: 15px;
}

html[lang="en"] .main-menu .main-menu__list > li > ul > li > a::before {
  left: unset;
  right: 20px;
  transform: translateY(-50%) scale(-1);
}

html[lang="en"] .main-menu .main-menu__list > li > ul {
  min-width: 310px;
  right: unset;
}

html[lang="en"] .value-two__right-content {
  padding-top: 100px;
  padding-bottom: 55px;
}

html[lang="en"] .apartment-details__points li {
  align-items: unset;
}

html[lang="en"] .apartment-details__points li .icon {
  margin-top: 7px;
}

html[lang="en"] .comment-one__btn {
  left: unset;
  right: 0;
}

.flag-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.dropdown-item .flag-icon {
  margin-right: 15px;
  border-radius: 8px;
}

.flag-picker .dropdown-menu {
  top: 140%;
  direction: ltr;
  margin-inline-end: -50px;
}

html[lang="en"] .flag-picker .dropdown-menu {
  margin-inline-end: unset;
  margin-inline-start: -50px;
}

.flag-picker .dropdown-toggle::after {
  vertical-align: 0.155em;
  color: var(--aports-base);
}

.flag-picker .btn-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 182, 119, 0.25);
}

/* =========================================
   Iconic Sidebar — Responsive CSS (mobile-first)
   ========================================= */

/* Base layout - Mobile First */

.iconic_sidebar {
  position: fixed;
  z-index: 999;
  inset-inline-end: max(12px, env(safe-area-inset-right));
  top: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 25%;
}

body[dir="rtl"] .iconic_sidebar {
  inset-inline-end: max(12px, env(safe-area-inset-right));
  align-items: flex-start;
  width: 0px;
}
@media (max-width: 991px) {
  body[dir="rtl"] .iconic_sidebar {
    width: auto;
  }
}

/* Hamburger button */
.hamburger-menu__container {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0bb60c, #079e18);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: manipulation;
}

.hamburger-menu__container:hover {
  transform: translateX(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hamburger-menu {
  width: 48px;
  height: 48px;
  position: relative;
}

.hamburger-menu.hamburger-menu--open .hamburger-menu__line {
  height: 3px;
  width: 60%;
}

.hamburger-menu__line {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 5px;
  width: 5px;
  border-radius: 2px;
  background-color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hamburger-menu__line:nth-child(1) {
  top: 12px;
}

.hamburger-menu__line:nth-child(2) {
  top: calc(50% - 1.5px);
}

.hamburger-menu__line:nth-child(3) {
  bottom: 12px;
}

/* Morph to X when open */
.hamburger-menu--open .hamburger-menu__line:nth-child(1) {
  transform: rotate(45deg) translate(0px, 0px);
  top: calc(50% - 1.5px);
}

.hamburger-menu--open .hamburger-menu__line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu--open .hamburger-menu__line:nth-child(3) {
  transform: rotate(-45deg) translate(0px, 0px);
  bottom: auto;
  top: calc(50% - 1.5px);
}

/* Navigation stack */
.nav {
  position: relative;
  width: 48px;
  margin-top: 10px;
}

.nav__item {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #64b200, #006c35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  touch-action: manipulation;
}

.nav__item:hover {
  transform: translateX(-6px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.iconic_sidebar i {
  color: #ffffff;
  font-size: 24px;
}

/* Tooltip labels */
.nav__item-text {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.nav__item-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.78);
}

/* Show tooltips on hover and on focus */
.nav__item:hover .nav__item-text,
.nav__item:focus-visible .nav__item-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Expansion positions (mobile) — 56px size + 10px gap = 66px step */
.nav--open .nav__item:nth-child(1) {
  top: 0px;
}

.nav--open .nav__item:nth-child(2) {
  top: 66px;
}

.nav--open .nav__item:nth-child(3) {
  top: 132px;
}

.nav--open .nav__item:nth-child(4) {
  top: 198px;
}

.nav--open .nav__item:nth-child(5) {
  top: 264px;
}

.nav--open .nav__item:nth-child(6) {
  top: 330px;
}

.nav--open .nav__item:nth-child(7) {
  top: 396px;
}

.nav--open .nav__item:nth-child(8) {
  top: 462px;
}

/* Entrance animation */
@keyframes bounceIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }

  60% {
    transform: translateX(-10px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
  }
}

.nav--open .nav__item {
  animation: bounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.nav--open .nav__item:nth-child(1) {
  animation-delay: 0.02s;
}

.nav--open .nav__item:nth-child(2) {
  animation-delay: 0.05s;
}

.nav--open .nav__item:nth-child(3) {
  animation-delay: 0.08s;
}

.nav--open .nav__item:nth-child(4) {
  animation-delay: 0.11s;
}

.nav--open .nav__item:nth-child(5) {
  animation-delay: 0.14s;
}

.nav--open .nav__item:nth-child(6) {
  animation-delay: 0.17s;
}

.nav--open .nav__item:nth-child(7) {
  animation-delay: 0.2s;
}

.nav--open .nav__item:nth-child(8) {
  animation-delay: 0.23s;
}

/* Focus accessibility */
.hamburger-menu__container:focus-visible,
.nav__item:focus-visible {
  outline: 2px solid #66d322;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(34, 211, 155, 0.18);
}

/* Hover is unreliable on mobile; keep focus/active feedback */
.nav__item:active {
  transform: translateX(-4px) scale(1.02);
}

/* =========================================================
   Tablet and Desktop Enhancements
   ========================================================= */
@media (max-width: 768px) {
  .iconic_sidebar {
    bottom: auto;
    margin-top: 30%;
  }

  /* Smaller targets for desktop */
  .hamburger-menu__container,
  .nav__item {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .iconic_sidebar i {
    font-size: 20px;
  }

  .nav {
    width: 48px;
    margin-top: 8px;
  }

  /* Expansion positions (desktop) — 48px size + 8px gap = 56px step */
  .nav--open .nav__item:nth-child(1) {
    top: 0px;
  }

  .nav--open .nav__item:nth-child(2) {
    top: 56px;
  }

  .nav--open .nav__item:nth-child(3) {
    top: 112px;
  }

  .nav--open .nav__item:nth-child(4) {
    top: 168px;
  }

  .nav--open .nav__item:nth-child(5) {
    top: 224px;
  }

  .nav--open .nav__item:nth-child(6) {
    top: 280px;
  }

  .nav--open .nav__item:nth-child(7) {
    top: 336px;
  }

  .nav--open .nav__item:nth-child(8) {
    top: 392px;
  }

  /* Smaller tooltips for desktop */
  .nav__item-text {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* =========================================================
   Large Desktop Screens
   ========================================================= */
@media (min-width: 1200px) {
  .iconic_sidebar {
    right: 12px;
    margin-top: 12%;
  }
}

/* =========================================================
   Extra-small mobile devices refinement
   ========================================================= */
@media (max-width: 360px) {
  .hamburger-menu__container,
  .nav__item {
    width: 52px;
    height: 52px;
  }

  .nav {
    width: 52px;
  }

  .iconic_sidebar i {
    font-size: 22px;
  }

  /* Adjusted expansion for very small screens */
  .nav--open .nav__item:nth-child(1) {
    top: 62px;
  }

  .nav--open .nav__item:nth-child(2) {
    top: 124px;
  }

  .nav--open .nav__item:nth-child(3) {
    top: 186px;
  }

  .nav--open .nav__item:nth-child(4) {
    top: 248px;
  }

  .nav--open .nav__item:nth-child(5) {
    top: 310px;
  }

  .nav--open .nav__item:nth-child(6) {
    top: 372px;
  }

  .nav--open .nav__item:nth-child(7) {
    top: 434px;
  }

  .nav--open .nav__item:nth-child(8) {
    top: 496px;
  }
}

/* Structural cleanup for inner nav wrappers */
.iconic_sidebar .nav__item nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* End of Iconic Sidebar */

.wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: top;
  flex-wrap: wrap;
  max-height: 80vh;
}

.wrapper .card {
  /* width: 600px; */
  height: 500px !important;
  border: unset;
  padding: 5px;
}

@media only screen and (max-width: 1580px) {
  .wrapper .card {
    height: 400px !important;
  }
}

@media only screen and (max-width: 1380px) {
  .wrapper .card {
    height: 300px !important;
  }
}

@media only screen and (max-width: 920px) {
  .wrapper .card {
    height: 220px !important;
  }
}

.wrapper .card a {
  width: 100%;
  height: 100%;
  position: relative;
  outline: none;
  box-shadow: none;
}

.wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.wrapper .card img:hover {
  border: 8px solid var(--aports-base);
  transition: 250ms;
}

.region_text {
  position: absolute;
  bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.region_text h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.region_text h5:before {
  content: "Экскурсии";
  position: absolute;
  margin-top: -25px;
}

.region_buttons {
  color: #fff;
  width: fit-content;
  padding: 7px 20px;
  border-radius: 100px;
  background-color: var(--aports-base);
  border: 2px solid transparent;
  font-weight: 500;
}

.region_buttons:hover {
  background-color: var(--darker-green);
  transition: 200ms;
}

.sweetalert-text {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding-bottom: 20px;
  color: inherit;
  font-size: 1.175em;
  font-weight: 400;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.variable-phoneNumber_1:has(> p),
.variable-phoneNumber_2 & {
  direction: ltr !important;
}

.image-layer {
  height: 750px;
}

/* New Card */
.card__new {
  box-sizing: border-box;
  width: 270px;
  height: 400px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  /* display: flex;
  align-items: top;
  justify-content: center; */
  user-select: none;
  font-weight: bolder;
  color: black;
  padding: 0;
}

.card__new:hover {
  border: 1px solid black;
  transform: scale(1.05);
  color: var(--aports-base);
}

.card__new:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

.card__new img {
  width: 100%;
  height: 85%;
  object-fit: cover;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}

.card__new p {
  height: 15%;
  display: block;
  padding-top: 13px;
}

.report-forms {
  padding: 120px 0 90px;
}

.card__new__parent {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* html[lang="ar"] .nav__item:hover .nav__item-text {
  inset-inline-end: 0;
  inset-inline-start: 120%;
}
html[lang="ar"] .nav__item-text {
  inset-inline-end: 0;
  inset-inline-start: -210%;
} */

.news-page .wow {
  margin-bottom: 70px;
}

.feature-one__video-link a {
  display: inline-block;
}

.feature-one__video-link {
  display: flex;
  justify-content: space-around;
}

@media only screen and (max-width: 991px) {
  .mb-md-100 {
    margin-bottom: 100px;
  }

  .home-map {
    margin-top: 100px;
  }
}

.about-one .main-menu__btn-box {
  margin-top: 20px;
  margin-inline-start: 0;
}

@media only screen and (max-width: 991px) {
  .about-one .main-menu__btn-box a {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
Services Accordion Section 
--------------------------------------------------------------*/
.services-accordion {
  padding: 100px 0;
  position: relative;
  display: block;
  background: var(--aports-black);
  overflow: hidden;
  z-index: 1;
}

.services-accordion__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/backgrounds/فحص_المباني.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
  background-attachment: fixed;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-col .accordion-item {
  margin-bottom: 15px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  border: none;
}

.accordion-button {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aports-black);
  background: #fff;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 16px 20px;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button .service-thumb {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.accordion-button .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.accordion-button:hover .service-thumb img {
  transform: scale(1.05);
}

.accordion-button .service-title {
  flex: 1;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-title i {
  color: var(--aports-base);
}

.accordion-button:not(.collapsed) {
  background: var(--aports-base);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed) .service-title i {
  color: #fff;
}

.accordion-body {
  background: #fff;
  padding: 0;
  border-top: 1px solid #eee;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 25px;
}

@media (max-width: 768px) {
  .service-details {
    grid-template-columns: 1fr;
  }
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  color: var(--aports-black);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-content p {
  color: #555;
  margin-bottom: 20px;
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aports-base);
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: none;
}

.read-more:hover {
  color: #4a8600;
  text-decoration: underline;
}

.service-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aports-base);
}

.stat-label {
  font-size: 0.85rem;
  color: #777;
}

/*--------------------------------------------------------------
inspection Tools Accordion Section 
--------------------------------------------------------------*/

:root {
  --primary-color: #3d502c;
  --secondary-color: #64b200;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.inspection-tools {
  margin-top: 60px;
  margin-bottom: 60px;
}

.accordion-3d-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-3d-item.active {
  border-right: 4px solid var(--secondary-color);
}

.accordion-3d-header {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-3d-header:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.accordion-3d-icon img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 15px;
  filter: hue-rotate(275deg) saturate(140%) brightness(100%)
    drop-shadow(2px 4px 6px black);
}

.accordion-3d-title {
  flex: 1;
}

.accordion-3d-title h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.accordion-3d-count {
  background: var(--light-color);
  color: var(--dark-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.accordion-3d-indicator {
  transition: var(--transition);
}

.accordion-3d-item.active .accordion-3d-indicator {
  transform: rotate(180deg);
}

.accordion-3d-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-3d-item.active .accordion-3d-content {
  max-height: 2000px;
}

/* Tools Grid Styles */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 30px;
  background: rgba(236, 240, 241, 0.3);
}

.tool-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--secondary-color);
}

/* .tool-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--secondary-color);
  font-size: 28px;
} */

.tool-icon img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  object-fit: contain;
}

.tool-card h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.tool-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Software Section Styles */
.software-section {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  padding-bottom: 76px !important;
}

.software-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.software-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.software-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
}

.software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.software-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 8px;
  filter: hue-rotate(275deg) saturate(140%) brightness(100%)
    drop-shadow(2px 4px 6px black);
}

.software-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.software-card p {
  font-size: 15px;
  color: #666;
}

/* Availability Note Styles */
.availability-note {
  background: #fff9e6;
  border-right: 4px solid #ffcc00;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-top: 30px;
}

.availability-note p {
  color: #856404;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title__title {
    font-size: 28px;
  }

  .section-title__text {
    font-size: 16px;
  }

  .accordion-3d-header {
    padding: 15px;
  }

  .accordion-3d-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 10px;
  }

  .accordion-3d-title h3 {
    font-size: 18px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .software-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .accordion-3d-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .accordion-3d-icon {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .accordion-3d-title {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Company Overview Section
--------------------------------------------------------------*/
.company-overview {
  position: relative;
  display: block;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--aports-primary) 0%, #f8fdf7 100%);
  overflow: hidden;
  z-index: 1;
}

.company-overview__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2364b200' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: -1;
}

.company-overview__floating-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(100, 178, 0, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.company-overview__floating-shape--1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
}

.company-overview__floating-shape--2 {
  bottom: 15%;
  right: 10%;
  width: 180px;
  height: 180px;
  animation-delay: 2s;
}

.company-overview__floating-shape--3 {
  top: 50%;
  left: 15%;
  width: 120px;
  height: 120px;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.company-overview__container {
  position: relative;
  z-index: 2;
}

.company-overview__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.company-overview__badge {
  display: inline-block;
  background: var(--aports-base);
  color: var(--aports-white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.company-overview__title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--aports-black);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  perspective: 1000px;
}

.company-overview__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: var(--aports-gray);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.company-overview__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--aports-base);
  color: var(--aports-white);
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s forwards;
  overflow: hidden;
  z-index: 1;
}

.company-overview__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--aports-black);
  transition: all 0.4s ease;
  z-index: -1;
}

.company-overview__btn:hover {
  color: var(--aports-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(100, 178, 0, 0.3);
}

.company-overview__btn:hover:before {
  left: 0;
}

.company-overview__btn i {
  transition: transform 0.3s ease;
}

.company-overview__btn:hover i {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 3D Card Effect */
.company-overview__card {
  background: var(--aports-white);
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

.company-overview__card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--aports-base), #8bc34a);
}

.company-overview__card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Counter One in Company Overview
--------------------------------------------------------------*/
.counter-one-company {
  position: relative;
  display: block;
  margin: 40px 0;
}

.counter-one-company .counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-one-company .counter-one__single {
  position: relative;
  flex: 0 0 auto;
  text-align: center;
  margin-bottom: 0;
}

.counter-one-company .counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.counter-one-company .counter-one__icon img {
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  filter: hue-rotate(275deg) saturate(140%) brightness(100%);
}

.counter-one-company .counter-one__single:hover .counter-one__icon img {
  transform: scale(0.9);
}

.counter-one-company .counter-one__content-box {
  position: relative;
  display: block;
}

.counter-one-company .counter-one__single h3 {
  font-size: 32px;
  font-family: var(--aports-font);
  line-height: 1;
  font-weight: 700;
  color: var(--aports-black);
  margin-bottom: 5px;
}

.counter-one-company .counter-one__text {
  font-size: 14px;
  color: var(--aports-gray);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.counter-one-company .odometer-formatting-mark {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .counter-one-company .counter-one__list {
    gap: 20px;
  }

  .counter-one-company .counter-one__single {
    flex: 0 0 calc(50% - 20px);
  }

  .counter-one-company .counter-one__icon {
    height: 60px;
    width: 60px;
  }

  .counter-one-company .counter-one__icon span {
    font-size: 24px;
  }

  .counter-one-company .counter-one__single h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .counter-one-company .counter-one__single {
    flex: 0 0 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials Carousel Section
--------------------------------------------------------------*/
.testimonials-carousel {
  position: relative;
  display: block;
  padding: 120px 0;
  background: var(--aports-black);
  overflow: hidden;
  z-index: 1;
}

.testimonials-carousel__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url("../images/backgrounds/testimonials-bg.jpg"); */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.testimonials-carousel__floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.testimonials-carousel__floating-element {
  position: absolute;
  background: rgba(100, 178, 0, 0.1);
  border-radius: 50%;
  animation: floatElement 15s infinite linear;
}

.testimonials-carousel__floating-element--1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.testimonials-carousel__floating-element--2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 5%;
  animation-delay: 3s;
}

.testimonials-carousel__floating-element--3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 10%;
  animation-delay: 6s;
}

.testimonials-carousel__floating-element--4 {
  width: 100px;
  height: 100px;
  top: 70%;
  right: 8%;
  animation-delay: 9s;
}

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) rotate(120deg);
  }

  66% {
    transform: translateY(15px) rotate(240deg);
  }
}

.testimonials-carousel__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-carousel__badge {
  display: inline-block;
  background: var(--aports-base);
  color: var(--aports-white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.testimonials-carousel__title {
  font-size: 36px;
  color: var(--aports-white);
  margin-bottom: 15px;
}

.testimonials-carousel__subtitle {
  font-size: 18px;
  color: #a2a5ae;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-carousel__container {
  position: relative;
}

.testimonials-carousel__wrapper .owl-stage-outer {
  padding: 20px 0;
}

.testimonials-carousel__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  margin: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.testimonials-carousel__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonials-carousel__quote {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 20px;
  color: var(--aports-base);
  opacity: 0.3;
  line-height: 1;
}

.testimonials-carousel__content {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonials-carousel__text {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 0;
}

.testimonials-carousel__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonials-carousel__author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--aports-base);
  flex-shrink: 0;
}

.testimonials-carousel__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-carousel__author-info {
  flex: 1;
}

.testimonials-carousel__author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--aports-white);
  margin-bottom: 5px;
}

.testimonials-carousel__author-position {
  font-size: 14px;
  color: var(--aports-base);
  margin-bottom: 0;
}

.testimonials-carousel__rating {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

.testimonials-carousel__rating i {
  color: #ffc107;
  font-size: 14px;
}

/* Owl Carousel Navigation */
.testimonials-carousel__nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonials-carousel__nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--aports-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.testimonials-carousel__nav-btn:hover {
  background: var(--aports-base);
  transform: translateY(-3px);
}

/* Owl Carousel Dots */
.testimonials-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

/* 3D Effect for Active Slide */
.testimonials-carousel .owl-item.active.center .testimonials-carousel__item {
  transform: scale(1.05) translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background: linear-gradient(135deg, #f9fbf8 0%, #f0f7ec 100%);
}

.faq-3d-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 50px;
  perspective: 1000px;
}

.faq-categories {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  height: fit-content;
  position: sticky;
  top: 30px;
}

/* .faq-categories:hover {
            transform: translateY(-10px) rotateX(5deg);
        } */

.faq-search {
  margin-bottom: 30px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e8f0e3;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9fbf8;
}

.faq-search input:focus {
  border-color: var(--aports-base);
  box-shadow: 0 0 0 3px rgba(100, 178, 0, 0.2);
  outline: none;
}

.faq-search i {
  position: absolute;
  inset-inline-end: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aports-base);
  font-size: 18px;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--aports-black);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aports-primary);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 12px;
}

.category-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background: #f9fbf8;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--aports-gray);
  text-align: start;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-btn:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(100, 178, 0, 0.1),
    transparent
  );
  transition: start 0.5s ease;
}

.category-btn:hover:before {
  inset-inline-start: 100%;
}

.category-btn:hover {
  background: var(--aports-primary);
  color: var(--aports-black);
  transform: translateX(-5px);
}

.category-btn.active {
  background: var(--aports-base);
  color: white;
  box-shadow: 0 5px 15px rgba(100, 178, 0, 0.3);
}

.category-btn i {
  margin-inline-end: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.category-btn.active i {
  transform: rotate(90deg);
}

.category-count {
  margin-inline-start: auto;
  background: rgba(255, 255, 255, 0.3);
  color: var(--aports-black);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.category-btn.active .category-count {
  background: rgba(255, 255, 255, 0.5);
  color: white;
}

.faq-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

/* .faq-content:hover {
            transform: translateY(-5px) rotateY(2deg);
        } */

.faq-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--aports-black);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--aports-primary);
  position: relative;
}

.faq-section-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 80px;
  height: 2px;
  background: var(--aports-base);
}

.faq-accordion {
  position: relative;
}

.faq-accordion .accrodion {
  background: #f9fbf8;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
}

.faq-accordion .accrodion:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accrodion.active {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accrodion-title {
  padding: 25px 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-accordion .accrodion.active .accrodion-title {
  background: var(--aports-primary);
}

.faq-accordion .accrodion-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--aports-black);
  margin: 0;
  padding-left: 40px;
  transition: color 0.3s ease;
}

.faq-accordion .accrodion.active .accrodion-title h3 {
  color: var(--aports-base);
}

.faq-accordion .accrodion-title:before {
  content: "\f055";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aports-base);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq-accordion .accrodion.active .accrodion-title:before {
  content: "\f056";
  color: var(--aports-base);
}

.faq-accordion .accrodion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-accordion .accrodion.active .accrodion-content {
  max-height: 1000px;
}

.faq-accordion .accrodion-content .inner {
  padding: 0 30px 30px;
}

.faq-accordion .accrodion-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--aports-gray);
  margin: 0;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: var(--aports-gray);
  display: none;
}

.no-results i {
  font-size: 50px;
  color: var(--aports-primary);
  margin-bottom: 20px;
}

.no-results h4 {
  font-size: 20px;
  color: var(--aports-black);
  margin-bottom: 10px;
}

/* تأثيرات ثلاثية الأبعاد إضافية */
.floating-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(100, 178, 0, 0.05);
  border-radius: 50%;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.floating-shape-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-shape-2 {
  bottom: 15%;
  right: 8%;
  width: 100px;
  height: 100px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* تصميم متجاوب */
@media (max-width: 991px) {
  .faq-3d-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-categories {
    position: static;
  }
}

@media (max-width: 768px) {
  .faq-page {
    padding: 80px 0 50px;
  }

  .faq-content,
  .faq-categories {
    padding: 25px;
  }

  .faq-accordion .accrodion-title {
    padding: 20px;
  }

  .faq-accordion .accrodion-title h4 {
    padding-left: 30px;
    font-size: 16px;
  }

  .faq-accordion .accrodion-title:before {
    left: 20px;
  }

  .faq-accordion .accrodion-content .inner {
    padding: 0 20px 20px;
  }
}

/* Contact Pro Section */
.contact-pro {
  padding: 100px 0;
  /* background: linear-gradient(rgba(50,52,59,0.95), rgba(50,52,59,0.95)); */
  color: var(--aports-black);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

/* شبكة هندسية متحركة */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(var(--aports-base) 1px, transparent 1px),
    linear-gradient(90deg, var(--aports-base) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
  animation: moveGrid 20s linear infinite;
  z-index: 0;
}

@keyframes moveGrid {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-60px, -60px);
  }
}

.contact-info {
  flex: 1;
  display: grid;
  gap: 25px;
  color: var(--aports-white);
}

.info-card {
  background: var(--aports-black);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(0deg);
  transition: all 0.5s ease;
  text-align: center;
  animation: fadeInLeft 1s ease forwards;
}

.info-card:hover {
  transform: perspective(1000px) rotateY(-8deg) translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.info-card img {
  margin-bottom: 12px;
  border-radius: 50%;
  filter: hue-rotate(275deg) saturate(140%) brightness(100%)
    drop-shadow(2px 4px 6px black);
}

.info-card h3 {
  color: var(--aports-base);
  margin-bottom: 8px;
}

.info-card a {
  color: var(--aports-white);
}

.info-card a:hover {
  color: var(--aports-base);
}

.contact-form-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateX(0deg);
  transition: all 0.5s ease;
  animation: fadeInRight 1s ease forwards;
}

.contact-form-box:hover {
  transform: perspective(1000px) rotateX(4deg) translateY(-5px);
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--aports-bdr-color);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: var(--aports-base);
  box-shadow: 0 0 12px rgba(100, 178, 0, 0.4);
}

.contact-form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.instant-help {
  margin-top: 20px;
  text-align: center;
}

.instant-help p {
  color: var(--aports-black);
  margin-bottom: 10px;
  font-weight: 600;
}

.thm-btn {
  display: inline-block;
  background: var(--aports-base);
  color: var(--aports-white);
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 5px;
}

.thm-btn:hover {
  background: var(--aports-black);
  color: var(--aports-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.thm-btn--alt {
  background: var(--aports-white);
  color: var(--aports-base);
  border: 2px solid var(--aports-base);
}

.thm-btn--alt:hover {
  background: var(--aports-base);
  color: var(--aports-white);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) rotateX(-15deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotateX(0);
  }
}

/* الأساسيات */
ul {
  list-style: none; /* إزالة الترقيم الافتراضي */
  padding-inline-start: 1.5em;
}

ul.arrow li::before {
  content: "➜";
  color: #64b200;
  margin-inline-end: 0.5em;
  display: inline-block;
  width: 20px;
  height: 20px;
  bottom: -14px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}

ul.caret-arrow li::before {
  content: "➤";
  color: var(--aports-base);
  margin-inline-end: 0.5em;
  display: inline-block;
  width: 20px;
  height: 20px;
  bottom: -2px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}

html[lang="ar"] ul.arrow li::before {
  transform: rotate(180deg);
}
html[lang="ar"] ul.caret-arrow li::before {
  transform: rotate(180deg);
  bottom: -14px !important;
}

ul.check li::before {
  content: "✔";
  color: var(--aports-base);
  margin-inline-end: 0.5em;
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}

ul.star li::before {
  content: "★";
  color: var(--aports-base);
  margin-inline-end: 0.5em;
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}

ul.circle li::before {
  content: "●";
  color: var(--aports-base);
  margin-inline-end: 0.5em;
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}

.apartment-details ol {
  list-style-type: none;
  counter-reset: my-counter;
  padding-inline-start: 10px;
  padding-left: unset;
}

.apartment-details ol > li::before {
  content: counter(my-counter) ". ";
  counter-increment: my-counter;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--aports-base);
  margin-inline-end: 2px;
  display: inline-block;
}

.apartment-details ol > li {
  margin-bottom: 6px;
  position: relative;
  line-height: 1.8;
}
/* تنسيقات النموذج الجانبي */
.service-contact-form-container {
  position: relative;
}

.service-contact-form-wrapper {
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
  z-index: 10;
}

.service-contact-form {
  background: linear-gradient(135deg, #32343b 0%, #585858 100%);
  border-radius: 12px;
  padding: 20px 20px 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #64b200;
  position: relative;
  overflow: hidden;
}

.service-contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #64b200, #32343b);
}

.service-contact-form h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.service-contact-form h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: #64b200;
  border-radius: 2px;
}

.service-contact-form input,
.service-contact-form select,
.service-contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 2px solid rgba(100, 178, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #32343b;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.service-contact-form input:focus,
.service-contact-form select:focus,
.service-contact-form textarea:focus {
  outline: none;
  border-color: #64b200;
  box-shadow: 0 0 0 2px rgba(100, 178, 0, 0.2);
  background: #fff;
}

.service-contact-form input::placeholder,
.service-contact-form textarea::placeholder {
  color: #888;
  opacity: 1;
}

.service-contact-form textarea {
  min-height: 80px;
  resize: vertical;
}

.service-contact-form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #64b200 0%, #4a8a00 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-contact-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #4a8a00 0%, #64b200 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 178, 0, 0.4);
}

.service-contact-form button[type="submit"]:active {
  transform: translateY(0);
}

#waitingBtn {
  background: linear-gradient(135deg, #585858 0%, #32343b 100%);
}

/* التأكيد على الحقول المطلوبة */
.service-contact-form input:required,
.service-contact-form select:required,
.service-contact-form textarea:required {
  border-right: 3px solid #64b200;
}

/* تنسيق خاص للهواتف المحمولة */
@media (max-width: 991px) {
  .service-contact-form {
    padding: 18px;
  }

  .service-contact-form h3 {
    font-size: 18px;
  }

  .service-contact-form input,
  .service-contact-form select,
  .service-contact-form textarea {
    padding: 9px 10px;
    margin-bottom: 10px;
  }

  .service-contact-form button[type="submit"] {
    padding: 11px;
  }
}

/* تنسيق خاص للشاشات الصغيرة */
@media (max-width: 767px) {
  .service-contact-form {
    padding: 20px;
  }

  .service-contact-form h3 {
    font-size: 20px;
  }
}

/* تأثيرات عند التركيز */
.service-contact-form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.service-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

/* تنسيق الـ select */
.service-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364b200' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 14px;
  padding-left: 35px;
  padding-right: 15px;
}

/* تنسيق spinner */
.spinner-border {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

.service-contact-form .form-group:last-child {
  margin-bottom: 10px;
}
