#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 50px;
  height: var(--headerHeight);
  z-index: 4;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .header-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  align-items: center;
  max-width: var(--sectionMaxWidth);
}
#header.scrolled, #header.keep-background {
  background-color: var(--secondaryBgClr);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1333333333);
  height: var(--headerSmallHeight);
}
#header.scrolled .header-content::before, #header.keep-background .header-content::before {
  background-color: transparent;
}
#header .nav ul {
  display: flex;
  align-items: center;
  gap: 85px;
}
#header .nav ul li {
  position: relative;
}
#header .nav ul li.show-in-mobile {
  display: none;
}
#header .nav ul li a {
  font-size: var(--textSizeSm2);
  color: #fff;
  position: relative;
  border-radius: 30px;
  transition: 0.3s ease;
}
#header .nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--mainGradient);
  transition: 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
#header .nav ul li a:hover {
  color: #fff;
}
#header .nav ul li a:hover::after {
  width: 80%;
}
#header .nav ul li a.active {
  font-weight: 600;
  color: var(--textClr);
}
#header .nav ul li a i {
  font-size: 10px;
  transition: 0.3s ease;
}
#header .nav ul li a.dropdown-toggle.active i {
  rotate: 180deg;
}
#header .nav ul li .dropdown {
  position: absolute;
  top: calc(100% + 35px);
  left: 0;
  padding: 0;
  width: fit-content;
  min-width: 200px;
  overflow: hidden;
  background-color: transparent;
  opacity: 0;
  display: none;
  transition: 0.2s;
}
#header .nav ul li .dropdown.show {
  display: block;
  opacity: 1;
}
#header .nav ul li .dropdown ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
#header .nav ul li .dropdown ul li {
  width: 100%;
}
#header .nav ul li .dropdown ul li a {
  width: fit-content;
  padding: 5px 10px;
  white-space: nowrap;
  text-align: start;
  width: 100%;
}
#header .nav ul li .dropdown ul li a:hover, #header .nav ul li .dropdown ul li a.active {
  color: #fff;
}
#header .nav ul li .dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(221, 221, 221, 0.1843137255);
}
#header .end {
  display: flex;
  align-items: center;
  gap: 32px;
}
#header .end .header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
#header .end .header-icons .header-icon {
  color: #fff;
}
#header .end .header-icons .header-icon.language-switcher {
  width: fit-content;
  padding: 0 10px;
  border-radius: 30px;
}
#header .end .header-icons .header-icon.language-switcher:hover {
  color: var(--textClr);
}
#header .end .menu-btn {
  display: none;
  color: #fff;
  border-color: transparent;
  font-size: var(--textSizeSm);
}
#header .end .menu-btn .bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  transition: 0.3s ease;
}
#header .end .menu-btn .bars .bar {
  transition: 0.3s ease;
  width: 25px;
  height: 3px;
  border-radius: 30px;
  background-color: #fff;
}

#rtl #header {
  direction: ltr;
}
#rtl #header * {
  direction: ltr;
}

@media (max-width: 1100px) {
  #header .contact-btn {
    display: none;
  }
  #header .nav {
    position: absolute;
    overflow: hidden;
    width: calc(100% - 20px);
    left: 50%;
    translate: -50%;
    top: calc(100% + 10px);
    border-radius: 30px;
    max-width: 500px;
    display: none;
    padding: 16px;
    background: var(--mainGradient);
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1254901961) inset;
    border: 2px solid rgba(255, 255, 255, 0.1254901961);
    animation: showupNav 0.3s forwards;
  }
  @keyframes showupNav {
    0% {
      opacity: 0;
      translate: -50% 10px;
    }
    100% {
      opacity: 1;
      translate: -50% 0;
    }
  }
  #header .nav.active {
    display: block;
  }
  #header .nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  #header .nav ul li {
    width: 100%;
  }
  #header .nav ul li.show-in-mobile {
    display: block;
  }
  #header .nav ul li a {
    padding: 12px 16px;
  }
  #header .nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1333333333);
  }
  #header .nav ul li a.active {
    padding: 12px 16px;
    color: #fff;
  }
  #header .nav ul li.dropdown-group > a {
    justify-content: space-between;
  }
  #header .nav ul li.dropdown-group .dropdown {
    width: 100%;
    position: static;
    border-radius: 0;
    animation: none;
  }
  #header .end .header-icons {
    display: none;
  }
  #header .end .menu-btn {
    display: flex;
    background: var(--mainGradient);
    padding: 8px 20px;
    border-radius: 30px;
  }
  #header .end .menu-btn .bars {
    transition: 0.4s;
  }
  #header .end .menu-btn.active .bars {
    transform: rotate(180deg);
  }
  #header .end .menu-btn.active .bars .bar {
    width: 0;
  }
  #header .end .menu-btn.active .bars .bar:first-child {
    width: 25px;
    rotate: 45deg;
    translate: 0 8px;
  }
  #header .end .menu-btn.active .bars .bar:last-child {
    width: 25px;
    rotate: -45deg;
    translate: 0 -8px;
  }
}
@media (max-width: 480px) {
  #header {
    height: var(--headerSmallHeight);
    padding: 0 16px;
  }
  #header .header-content {
    padding: 0;
  }
  #header .header-content .logo-desktop {
    display: none;
  }
  #header .header-content .logo-mobile {
    display: flex;
  }
}
#footer {
  background-color: var(--secondaryBgClr);
  padding: 80px;
  padding-bottom: 0;
  z-index: 2;
  position: relative;
  overflow: hidden;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer .footer-content {
  max-width: var(--sectionMaxWidth);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
#footer .top,
#footer .middle,
#footer .bottom {
  display: flex;
  justify-content: space-between;
}
#footer .top .left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .top .left .address {
  font-size: 14px;
  line-height: 150%;
}
#footer .top .right .leasing-by-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
#footer .top .right .leasing-by-box .logo {
  width: 67px;
  height: 67px;
}
#footer .top .right .leasing-by-box .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#footer .middle .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#footer .middle .left .title {
  font-size: 52px;
  max-width: 550px;
  line-height: 125%;
}
#footer .middle .right .nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .middle .right .nav ul li {
  direction: rtl;
}
#footer .middle .right .nav ul li a {
  font-size: var(--textSize);
}
#footer .middle .right .nav ul li a:hover {
  color: var(--textClr);
}
#footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1254901961);
  padding: 25px 0;
}
#footer .bottom .copyright {
  font-size: var(--textSizeSm2);
}
#footer .bottom .links-side {
  display: flex;
  align-items: center;
  gap: 16px;
}
#footer .bottom .links-side a {
  opacity: 0.7;
  transition: 0.3s ease;
}
#footer .bottom .links-side a:hover {
  color: var(--textClr);
}

#rtl #footer .footer-content .middle .right .nav ul li {
  direction: ltr;
}

@media (max-width: 800px) {
  #footer {
    padding: 48px 16px;
    padding-bottom: 0;
  }
  #footer .footer-content {
    gap: 48px;
  }
  #footer .top,
  #footer .middle,
  #footer .bottom {
    flex-direction: column;
  }
  #footer .top {
    align-items: center;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
    padding-bottom: 48px;
  }
  #footer .top .left {
    gap: 24px;
  }
  #footer .top .left .logo-box {
    justify-content: center;
  }
  #footer .top .left .logo-box .logo-text-ar {
    display: none;
  }
  #footer .top .left .address {
    text-align: center;
    font-size: 12px;
  }
  #footer .top .right .leasing-by-box {
    gap: 48px;
  }
  #footer .middle {
    gap: 24px;
  }
  #footer .middle .left .title {
    font-size: 34px !important;
  }
  #footer .middle .right .nav ul li {
    direction: ltr;
  }
  #footer .bottom {
    gap: 16px;
    margin-top: -24px;
  }
  #rtl #footer .middle {
    gap: 24px;
  }
  #rtl #footer .middle .right .nav ul li {
    direction: rtl !important;
  }
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  height: 500px;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots button {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s;
}

.dots button.active {
  background: var(--primaryBgClr);
}

.home-page {
  position: relative;
  background-color: var(--secondaryBgClr);
  overflow: hidden;
}
.home-page .page-content {
  position: relative;
  z-index: 2;
  overflow: visible !important;
}
.home-page #hero-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding: 50px;
}
.home-page #hero-section::after, .home-page #hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: 2;
}
.home-page #hero-section::before {
  opacity: 0.8;
  background: linear-gradient(0deg, transparent 0%, var(--secondaryBgClr) 100%);
  top: 0;
}
.home-page #hero-section::after {
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, var(--primaryBgClr) 100%);
}
.home-page #hero-section .section-content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: var(--sectionMaxWidth);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page #hero-section .section-content .side {
  display: flex;
  align-items: center;
}
.home-page #hero-section .slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: 0.2s;
  display: none;
  align-items: center;
}
.home-page #hero-section .slide .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s linear;
  align-items: center;
  animation: showBg 1s forwards;
}
@keyframes showBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home-page #hero-section .slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  scale: 1.1;
}
.home-page #hero-section .slide.contain .bg img {
  object-fit: contain;
}
.home-page #hero-section .slide .content {
  transition: 0.4s;
  z-index: 2;
  color: #fff;
}
.home-page #hero-section .slide .content .small-title {
  margin-bottom: 24px;
}
.home-page #hero-section .slide .content .title {
  max-width: 600px;
  font-size: 52px;
  margin-bottom: 32px;
}
.home-page #hero-section .slide .content .description {
  max-width: 600px;
  transition: 0.3s;
  line-height: 125%;
  opacity: 0;
}
.home-page #hero-section .slide .content .buttons {
  display: flex;
  gap: 16px;
  transition: 0.3s;
  opacity: 0;
  margin-top: 34px;
}
.home-page #hero-section .slide.active {
  display: flex;
}
.home-page #hero-section .slide.active .bg img {
  animation: animateSlideImage 5s alternate forwards;
}
@keyframes animateSlideImage {
  0% {
    scale: 1.08;
  }
  100% {
    scale: 1;
  }
}
.home-page #hero-section .slide.active .content .small-title,
.home-page #hero-section .slide.active .content .title,
.home-page #hero-section .slide.active .content .description {
  -webkit-mask-image: var(--mask-img, linear-gradient(110deg, #000 50%, transparent 50%));
  mask-image: var(--mask-img, linear-gradient(110deg, #000 50%, transparent 50%));
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: var(--mask-start, 100% 0);
  mask-position: var(--mask-start, 100% 0);
}
.home-page #hero-section .slide.active .content .small-title {
  opacity: 0;
  transform: translateY(20px);
  animation: writeText 3s 0.1s ease forwards;
}
.home-page #hero-section .slide.active .content .title {
  opacity: 0;
  transform: translateY(20px);
  animation: writeText 3s 0.3s ease forwards;
}
.home-page #hero-section .slide.active .content .description {
  opacity: 0;
  transform: translateY(20px);
  animation: writeText 3s 0.6s ease forwards;
}
.home-page #hero-section .slide.active .content .buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.9s ease forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
    max-width: 500px;
  }
}
@keyframes writeText {
  0% {
    -webkit-mask-position: var(--mask-start, 100% 0);
    mask-position: var(--mask-start, 100% 0);
    transform: translateY(20px);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-mask-position: var(--mask-end, 0 0);
    mask-position: var(--mask-end, 0 0);
  }
}
.home-page #hero-section .slide.slide-end .bg {
  filter: brightness(0);
}
.home-page #hero-section .slide.slide-end .content {
  opacity: 0;
  scale: 0.9;
}
.home-page #hero-section .nav-list .nav-item {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4235294118);
}
.home-page #hero-section .nav-list .nav-item:not(.active) {
  color: #fff;
}
.home-page #hero-section .social-media {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.home-page #hero-section .social-media .social-media-icon {
  position: relative;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4235294118);
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page #hero-section .social-media .social-media-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 30px;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  border-radius: 4px;
  scale: 0;
  transition: 0.3s;
}
.home-page #hero-section .social-media .social-media-icon:hover::before {
  rotate: 360deg;
  scale: 1;
}
.home-page #hero-section .highlighted-info-list {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #eee;
  display: flex;
  gap: 1px;
  z-index: 2;
}
.home-page #hero-section .highlighted-info-list .highlighted-info-item {
  padding: 20px;
  background-color: #fff;
  min-width: 220px;
  cursor: pointer;
}
.home-page #hero-section .highlighted-info-list .highlighted-info-item .title {
  margin-bottom: 10px;
}
.home-page #hero-section .highlighted-info-list .highlighted-info-item .value {
  margin-bottom: 10px;
}
.home-page .stats {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -100%;
  background-color: var(--primaryBgClr);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  z-index: 3;
  padding: 26px 64px;
  width: 100%;
  max-width: 1100px;
}
.home-page .stats .stat {
  padding: 0 20px;
  flex: 1;
  text-align: center;
}
.home-page .stats .stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2509803922);
}
.home-page .stats .stat .number {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}
.home-page .stats .stat .text {
  font-size: var(--textSizeSm2);
  text-align: center;
  line-height: 150%;
}
.home-page .about-section {
  background: var(--mainGradient);
  color: #fff;
  position: relative;
}
.home-page .about-section .bg {
  position: absolute;
  top: 0;
  right: 0;
}
.home-page .about-section .bg-2 {
  top: 600px;
  right: -140px;
}
.home-page .about-section .section-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.home-page .about-section .section-content .about-box {
  grid-column: span 1;
}
.home-page .about-section .section-content .about-box:nth-child(1), .home-page .about-section .section-content .about-box:nth-child(2), .home-page .about-section .section-content .about-box:nth-child(3n) {
  grid-column: span 2;
}
.home-page .about-section .section-content .about-box.image-box {
  transition: 0.2s;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.home-page .about-section .section-content .about-box.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
.home-page .about-section .section-content .about-box.image-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  background: linear-gradient(0deg, var(--primaryBgClr), var(--primaryBgLClr));
  translate: -50% -50%;
  animation: rotateBorder 2s infinite;
}
@keyframes rotateBorder {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.home-page .about-section .section-content .about-box.image-box:hover {
  padding: 4px;
  border-radius: 16px;
  box-shadow: 0 6px 10px 2px rgba(0, 0, 0, 0.1882352941);
}
.home-page .about-section .section-content .about-box.image-box:hover img {
  border-radius: 12px;
  filter: brightness(1.15);
}
.home-page .office-spaces-sectiom {
  background-color: var(--secondaryBgClr);
  position: relative;
  color: #fff;
  padding-bottom: 0;
}
.home-page .office-spaces-sectiom .bg {
  position: absolute;
  top: 0;
  left: 0;
}
.home-page .office-spaces-sectiom .bg-2 {
  position: absolute;
  top: 515px;
  left: 0;
}
.home-page .office-spaces-sectiom .section-content .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 40px;
  margin-top: 64px;
}
.home-page .office-spaces-sectiom .section-content .cards .card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-page .office-spaces-sectiom .section-content .cards .card:hover .image-box img {
  filter: saturate(1.6) brightness(1.1);
}
.home-page .office-spaces-sectiom .section-content .cards .card .image-box {
  width: 100%;
  aspect-ratio: 2/1.4;
}
.home-page .office-spaces-sectiom .section-content .cards .card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .card-top .left .title {
  font-size: 20px;
  margin-bottom: 6px;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .card-top .left .description {
  font-size: var(--textSizeSm);
  opacity: 0.5;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .card-top .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--textClr), transparent 90%);
  color: var(--textClr);
  flex-shrink: 0;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 22px;
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .grid .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px;
  font-size: var(--textSizeSm2);
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .grid .grid-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .grid .grid-item:nth-child(1), .home-page .office-spaces-sectiom .section-content .cards .card .content .grid .grid-item:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.home-page .office-spaces-sectiom .section-content .cards .card .content .bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.home-page .office-spaces-sectiom .section-content .section-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}
.home-page .amenities-section {
  background-color: var(--secondaryBgClr);
  padding-top: 42px;
}
.home-page .amenities-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.home-page .amenities-section .section-content .cards {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-page .amenities-section .section-content .cards::before, .home-page .amenities-section .section-content .cards::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  z-index: 1;
  background: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}
.home-page .amenities-section .section-content .cards::after {
  left: unset;
  right: 0;
  background: linear-gradient(-90deg, #000, transparent);
}
.home-page .amenities-section .section-content .cards .cards-track {
  display: flex;
  gap: 24px;
  padding-inline-end: 24px;
  width: max-content;
  animation: slideLeft 40s linear infinite;
}
.home-page .amenities-section .section-content .cards .cards-track:hover {
  animation-play-state: paused;
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home-page .amenities-section .section-content .cards .cards-track .card {
  padding: 28px;
  width: 192px;
  height: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition: 0.2s;
}
.home-page .amenities-section .section-content .cards .cards-track .card .icon {
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-self: center;
}
.home-page .amenities-section .section-content .cards .cards-track .card .icon i {
  font-size: 54px;
  color: var(--textClr);
}
.home-page .amenities-section .section-content .cards .cards-track .card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-page .amenities-section .section-content .cards .cards-track .card .text {
  font-size: var(--textSizeSm2);
  text-align: center;
}
.home-page .amenities-section .section-content .cards .cards-track .card:hover {
  transform: scale(0.96) translateY(4px);
  filter: brightness(1.8);
}
.home-page .location-section {
  position: relative;
  background-color: #e7e7e7;
}
.home-page .location-section .map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-page .location-section .map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .location-section .section-content {
  display: flex;
  padding-bottom: 125px;
}
.home-page .location-section .section-content .section-header {
  max-width: 600px;
}
.home-page .location-section .section-content .section-header .address {
  margin-top: 24px;
  font-weight: 600;
}
.home-page .location-section .section-content .section-header .address span {
  font-weight: 600;
}
.home-page .location-section .section-content .map-link {
  flex: 1;
  display: flex;
}
.home-page .location-section .bottom-triangle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
  background-color: var(--primaryBgClr);
  clip-path: polygon(0 0, 100% 91%, 100% 100%, 0% 100%);
}
.home-page .contact-section {
  background: var(--mainGradient);
  color: #fff;
}
.home-page .contact-section .section-content .bottom-description {
  text-align: center;
  margin-top: 40px;
}
.home-page .contact-section .section-content .main {
  display: flex;
  gap: 40px;
}
.home-page .contact-section .section-content .main .left,
.home-page .contact-section .section-content .main .right {
  flex: 1;
}
.home-page .contact-section .section-content .main .left .contact-options {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.home-page .contact-section .section-content .main .right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-page .contact-section .section-content .main .right form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.home-page .contact-section .section-content .main .right .inputs-row {
  display: flex;
  gap: 22px;
  width: 100%;
}
.home-page .contact-section .section-content .main .right .inputs-row .input-wrapper {
  flex: 1;
}
.home-page .contact-section .section-content .main .right .inputs-row .input-wrapper input {
  width: 100%;
}
.home-page .contact-section .section-content .main .right .inputs-row .error-text {
  display: flex;
  font-weight: 600;
  color: #ff8995;
  padding: 0 8px;
  padding-top: 4px;
  font-size: 12px;
}
.home-page .contact-section .section-content .main .right input,
.home-page .contact-section .section-content .main .right textarea {
  background-color: transparent;
  color: #fff;
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4588235294);
  padding: 10px 23px;
  font-size: var(--textSizeSm2);
  outline: none;
  transition: background-color 0.2s;
}
.home-page .contact-section .section-content .main .right input::placeholder,
.home-page .contact-section .section-content .main .right textarea::placeholder {
  color: rgba(255, 255, 255, 0.4392156863);
}
.home-page .contact-section .section-content .main .right input:focus,
.home-page .contact-section .section-content .main .right textarea:focus {
  border-color: rgba(255, 255, 255, 0.5843137255);
  background-color: rgba(255, 255, 255, 0.062745098);
}
.home-page .contact-section .section-content .main .right input {
  height: 54px;
}
.home-page .contact-section .section-content .main .right textarea {
  width: 100%;
  max-height: 240px;
  min-height: 100px;
  flex-shrink: 0;
  resize: none;
}
.home-page .contact-section .section-content .main .right .cluster-box {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.home-page .contact-section .section-content .main .right .cluster-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4392156863);
}
.home-page .contact-section .section-content .main .right .cluster-box .options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 4px;
  border-radius: 50px;
  gap: 8px;
  min-width: 330px;
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  flex: 1;
  cursor: pointer;
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  border-radius: 40px;
  height: 100%;
  transition: 0.2s;
  cursor: pointer;
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option label .letter {
  font-size: var(--textSize);
  font-weight: 800;
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option label .name {
  font-size: 10px;
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option label:hover {
  background-color: rgba(255, 255, 255, 0.1254901961);
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option label.active {
  background-color: #fff;
  color: var(--textClr);
}
.home-page .contact-section .section-content .main .right .cluster-box .options .option input {
  display: none;
}
.home-page .contact-section .section-content .main .right .box {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#rtl {
  --mask-img: linear-gradient(-110deg, #000 50%, transparent 50%);
  --mask-start: 0 0;
  --mask-end: 100% 0;
}
#rtl .home-page .stats .stat:not(:last-child) {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2509803922);
}
#rtl .home-page .office-spaces-sectiom .section-content .cards .card .content .grid .grid-item:nth-child(odd) {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#rtl .home-page .about-section .section-content {
  direction: ltr;
}
#rtl .home-page .about-section .section-content .about-box {
  direction: rtl;
}
#rtl .home-page .location-section .section-content {
  direction: ltr;
}
#rtl .home-page .location-section .section-content .section-header {
  direction: rtl;
}
#rtl .home-page .contact-section .section-content .main {
  direction: ltr;
}
#rtl .home-page .contact-section .section-content .main .left,
#rtl .home-page .contact-section .section-content .main .right {
  direction: rtl;
}
#rtl .home-page .contact-section .section-content .main .left *,
#rtl .home-page .contact-section .section-content .main .right * {
  direction: rtl;
}
#rtl .home-page .amenities-section {
  direction: ltr !important;
}

@media (max-width: 1200px) {
  .home-page .contact-section .section-content .main {
    flex-direction: column;
  }
  .home-page .contact-section .section-content .main .right {
    width: 100%;
  }
  .home-page .contact-section .section-content .main .right .inputs-row {
    flex-direction: column;
  }
  .home-page .contact-section .section-content .main .right .inputs-row .input-wrapper {
    width: 100%;
  }
  .home-page .contact-section .section-content .main .right .inputs-row input {
    width: 100%;
    flex: unset;
  }
  .home-page .contact-section .section-content .main .right .cluster-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .home-page .contact-section .section-content .main .right .cluster-box .options {
    width: 100%;
    min-width: unset !important;
  }
  .home-page .contact-section .section-content .main .right .box {
    width: 100%;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1000px) {
  .home-page #hero-section .slide .content .title {
    font-size: 36px;
  }
  .home-page .about-section .bg {
    display: none;
  }
  .home-page .about-section .section-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-page .about-section .section-content .about-box {
    grid-column: span 1 !important;
  }
  .home-page .about-section .section-content .about-box:nth-child(1), .home-page .about-section .section-content .about-box:nth-child(2), .home-page .about-section .section-content .about-box:nth-child(3n) {
    grid-column: span 1 !important;
  }
  .home-page .about-section .section-content .about-box.image-box {
    aspect-ratio: 1/1;
  }
  .home-page .office-spaces-sectiom .bg {
    display: none;
  }
  .home-page .office-spaces-sectiom .section-content .cards {
    gap: 24px;
  }
  .home-page .office-spaces-sectiom .section-bottom {
    flex-direction: column;
  }
  .home-page .location-section .section-content {
    flex-direction: column;
  }
  .home-page .location-section .section-content .map-link {
    flex: none;
    width: 100%;
    height: 650px;
  }
  .home-page .location-section .map-placeholder {
    height: 750px;
    top: unset !important;
    bottom: 50px !important;
  }
  .home-page .location-section .map-placeholder img {
    object-position: 68%;
  }
}
@media (max-width: 800px) {
  .home-page #hero-section {
    padding: 20px 32px;
  }
  .home-page #hero-section .section-content .side {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
  }
  .home-page #hero-section .section-content .side .slide {
    padding: 0;
  }
  .home-page #hero-section .section-content .side .slide .content .title {
    font-size: 36px;
  }
  .home-page #hero-section .section-content .side .slide .content .description {
    font-size: var(--textSizeSm2);
  }
  .home-page #hero-section .section-content .side .slide .content .buttons {
    flex-direction: column;
  }
  .home-page #hero-section .section-content .side .slide .content .buttons .primary-btn {
    min-width: 200px;
    white-space: nowrap;
  }
  .home-page .stats {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 16px;
    position: static;
    translate: 0;
  }
  .home-page .stats .stat {
    border: none !important;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .home-page #hero-section .section-content .side .slide .content .small-title {
    margin-bottom: 16px;
  }
  .home-page #hero-section .section-content .side .slide .content .description {
    line-height: 140%;
  }
  .home-page .stats {
    gap: 24px;
  }
  .home-page .stats .stat .number {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .home-page .stats .stat .text {
    font-size: 12px;
  }
  .home-page .office-spaces-sectiom .section-content .cards {
    margin-top: 34px;
  }
  .home-page .office-spaces-sectiom .section-content .cards .card .content {
    padding: 16px;
  }
  .home-page .office-spaces-sectiom .section-content .cards .card .content .grid .grid-item {
    padding: 10px;
  }
  .home-page .office-spaces-sectiom .section-content .section-bottom {
    margin-top: 40px;
    gap: 40px;
  }
  .home-page .office-spaces-sectiom .section-content .section-bottom p {
    font-size: 16px;
  }
  .home-page .amenities-section .section-content .cards::before, .home-page .amenities-section .section-content .cards::after {
    display: none;
  }
  .home-page .amenities-section .section-content .cards .cards-track {
    animation: none;
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .amenities-section .section-content .cards .cards-track .card {
    width: unset;
    border-radius: 30px;
    flex: 1;
    min-width: unset;
    padding: 32px 16px;
  }
  .home-page .amenities-section .section-content .cards .cards-track .card.generated-card {
    display: none;
  }
  .home-page .location-section .section-content .section-header .address {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .home-page .location-section .section-content .section-header .address i {
    font-size: 32px;
  }
  .home-page .location-section .section-content .section-header .address span {
    max-width: 240px;
    line-height: 140%;
  }
  .home-page .location-section .bottom-triangle {
    clip-path: polygon(0 40%, 100% 70%, 100% 100%, 0% 100%);
  }
  .home-page .contact-section .section-content .main {
    gap: 32px;
  }
  .home-page .contact-section .section-content .main .left .contact-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 32px;
  }
  .home-page .contact-section .section-content .main .left .contact-options p {
    margin-bottom: 22px;
  }
  .home-page .contact-section .section-content .main .right .cluster-box {
    gap: 22px;
  }
  .home-page .contact-section .section-content .bottom-description {
    font-size: 14px;
    line-height: 140%;
    margin-top: 32px;
  }
}
@font-face {
  font-family: "29LT Bukra Variable";
  src: url("assets/fonts/29lt-bukra-regular.ttf");
}
:root {
  --primaryFont: "29LT Bukra Variable", Arial, sans-serif;
  --primaryBgClr: #88694a;
  --primaryBgLClr: #a68b6a;
  --secondaryBgClr: #000000;
  --textClr: #c3a67d;
  --mainGradient: linear-gradient(180deg, var(--primaryBgClr) 0%, var(--primaryBgLClr) 100%);
  --padding: 32px;
  --headerHeight: 144px;
  --headerSmallHeight: 80px;
  --sectionMaxWidth: 1400px;
  --titleSize: 26px;
  --titleSizeSm2: 20px;
  --textSize: 18px;
  --textSizeSm: 16px;
  --textSizeSm2: 14px;
  --transition: 0.3s;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  font-family: var(--primaryFont);
  font-weight: 100;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

p {
  font-size: var(--textSize);
}

button {
  background-color: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  outline: none;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.2s;
}

.primary-btn {
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  position: relative;
  font-size: var(--textSizeSm2);
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.primary-btn:hover {
  filter: brightness(1.2);
}
.primary-btn:hover::before {
  left: 100%;
}
.primary-btn:active {
  transform: translateY(-1px);
}

.premium-box,
.primary-btn {
  position: relative;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(136, 136, 136, 0.1254901961), rgba(255, 255, 255, 0.1254901961));
  box-shadow: 2px 2px 10px 4px rgba(0, 0, 0, 0.062745098) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateZ(0); /* Often required for Safari to apply the effect inside overflow: hidden */
  overflow: hidden;
  width: fit-content;
}
.premium-box::after,
.primary-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* Set the border thickness */
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 60px;
}
.logo-box .logo-icon {
  height: 100%;
  aspect-ratio: 1/1;
}
.logo-box .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-box .logo-text-ar,
.logo-box .logo-text-en {
  width: 86px;
  height: 30px;
}
.logo-box .logo-text-ar img,
.logo-box .logo-text-en img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modern-spinner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 5px;
}
.modern-spinner-box .modern-spinner {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: visible;
  animation: rotateModernSpinner 1.2s linear infinite;
}
@keyframes rotateModernSpinner {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.modern-spinner-box .modern-spinner circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 3;
  stroke: red;
  stroke-linecap: round;
  stroke-dasharray: 59px;
  stroke-dashoffset: 59px;
  animation: animateCircle 3s linear infinite;
}
@keyframes animateCircle {
  0%, 100% {
    stroke-dashoffset: 59px;
  }
  50% {
    stroke-dashoffset: 0;
  }
  50.1% {
    stroke-dashoffset: 118px;
  }
}

#main {
  flex: 1;
}
#main .page-top {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--headerHeight);
  background-color: var(--primaryBgClr);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
#main .page-top .nav {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
#main .page-top .nav a {
  color: #fff;
}
#main .page-top .nav i {
  font-size: 14px;
}
#main .page-top .bg {
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .page-top .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes showPageTopBg {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.06;
  }
}
#main .page-top .content {
  z-index: 2;
  text-align: center;
}
#main .page-top .content .nav {
  color: #fff;
}
#main .page-top .content .page-title {
  color: #fff;
  font-size: 40px;
  max-width: 700px;
  padding: 0 20px;
}
#main .page-content {
  background-color: #fff;
  overflow: hidden;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  transition: 0.2s;
  cursor: pointer;
}

.text-color {
  color: var(--textClr);
}

.two-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
  word-break: break-word;
}

.dropdown {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hide {
  display: none;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: var(--secondaryBgClr);
  border-radius: 50%;
  border: none;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5843137255);
  opacity: 0;
  scale: 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1294117647);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.scroll-to-top-btn i {
  font-size: 20px;
  transition: 0.3s ease;
}
.scroll-to-top-btn:hover {
  background-color: var(--primaryBgClr);
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.scroll-to-top-btn:hover i {
  transform: translateY(-2px);
}
.scroll-to-top-btn.scrolled {
  opacity: 1;
  scale: 1;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: var(--primaryBgClr);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.input-box {
  margin-bottom: 20px;
}
.input-box .input {
  display: flex;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}
.input-box .input .icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d7d7d7;
}
.input-box .input input,
.input-box .input textarea {
  border: none;
  outline: none;
  flex: 1;
  padding: 6px;
  border-radius: 4px;
}
.input-box .input input::placeholder,
.input-box .input textarea::placeholder {
  color: #d7d7d7;
}
.input-box .input input {
  height: 40px;
}
.input-box .input textarea {
  height: 150px;
  resize: vertical;
  max-height: 250px;
  min-height: 40px;
}

.input-message {
  color: rgb(255, 79, 79);
  font-size: 13px;
}

.hr {
  opacity: 0.4;
  margin: 20px 0;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.showup {
  opacity: 0;
  animation: showup 0.3s forwards;
}
@keyframes showup {
  0% {
    opacity: 0;
    translate: 0 10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

.pagination-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.pagination-box .pagination-btns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination-box .pagination-btns-list .pagination-btn {
  width: 35px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 16px;
  border: 1px solid transparent;
}
.pagination-box .pagination-btns-list .pagination-btn:not(.gap-btn):not(.active):hover {
  background-color: #ececec;
}
.pagination-box .pagination-btns-list .pagination-btn.active {
  border-color: var(--primaryBgClr);
}

.nav-list {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-list .nav-item {
  position: relative;
  color: #000;
  border: none;
  font-size: 18px;
  transition: 0.5s;
  height: 25px;
}
.nav-list .nav-item::before {
  position: absolute;
  content: "";
  left: 50%;
  top: calc(100% + 5px);
  height: 0;
  width: 2px;
  translate: -50% 0;
  transition: 0.5s;
  border-radius: 20px;
  background-color: #ddd;
}
.nav-list .nav-item.active {
  color: var(--primaryBgClr);
  margin-bottom: 80px;
}
.nav-list .nav-item.active::before {
  height: 80px;
}
.nav-list .nav-item:hover {
  color: var(--primaryBgClr);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--secondaryBgClr);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader .center {
  position: relative;
  width: 200px;
  aspect-ratio: 1/1;
}
#loader .center .logo-text {
  font-size: 72px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
#loader .center img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  aspect-ratio: 1/1;
  object-fit: contain;
  translate: -50% -50%;
}
#loader .center .spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primaryBgClr);
  border-radius: 50%;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: rotateLoader 0.7s linear infinite;
}
@keyframes rotateLoader {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}

.report-item,
.file-item {
  width: 100%;
}
.report-item .report-box,
.report-item .file-box,
.file-item .report-box,
.file-item .file-box {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 20px;
}
.report-item .report-box .start,
.report-item .file-box .start,
.file-item .report-box .start,
.file-item .file-box .start {
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-item .report-box .start a,
.report-item .file-box .start a,
.file-item .report-box .start a,
.file-item .file-box .start a {
  color: #000;
  text-decoration: underline;
}
.report-item .report-box .start a:hover,
.report-item .file-box .start a:hover,
.file-item .report-box .start a:hover,
.file-item .file-box .start a:hover {
  color: var(--primaryBgClr);
}
.report-item .report-box .start img,
.report-item .file-box .start img,
.file-item .report-box .start img,
.file-item .file-box .start img {
  width: 40px;
}
.report-item .report-box .end .download-btn,
.report-item .file-box .end .download-btn,
.file-item .report-box .end .download-btn,
.file-item .file-box .end .download-btn {
  background-color: var(--primaryBgClr);
  color: #fff;
  border-radius: 4px;
  padding: 3px 10px;
}
.report-item .report-box .end .download-btn i,
.report-item .file-box .end .download-btn i,
.file-item .report-box .end .download-btn i,
.file-item .file-box .end .download-btn i {
  transition: 0.2s;
}
.report-item .report-box .end .download-btn:hover,
.report-item .file-box .end .download-btn:hover,
.file-item .report-box .end .download-btn:hover,
.file-item .file-box .end .download-btn:hover {
  filter: brightness(1.2);
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  max-width: 100%;
}

.gradient-text {
  background: var(--mainGradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  padding: 112px 80px;
  scroll-margin-top: 80px;
}
.section .section-header {
  display: flex;
  flex-direction: column;
}
.section .section-header.center {
  align-items: center;
  text-align: center;
}
.section .section-small-title {
  font-size: var(--textSizeSm);
  margin-bottom: 16px;
}
.section .section-title {
  font-size: 52px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.section .section-description {
  font-size: var(--textSize);
  line-height: 150%;
  max-width: 1200px;
}
.section .section-content {
  position: relative;
  margin: 0 auto;
  max-width: var(--sectionMaxWidth);
  z-index: 2;
}
.section .top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section .top .dots-list {
  height: 65px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section .top .dots-list .dot {
  display: flex;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #eee;
  cursor: pointer;
  transition: 0.3s;
}
.section .top .dots-list .dot:hover {
  background-color: #ccc;
}
.section .top .dots-list .dot.active {
  background-color: var(--primaryBgClr);
}

.link-btn {
  padding: 5px 15px;
  background-color: var(--primaryBgClr);
  color: #fff;
  border-radius: 4px;
  width: fit-content;
}
.link-btn:hover {
  filter: brightness(1.1);
}

.section-title {
  font-size: 35px;
}

.show-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.show-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.in-development-box {
  text-align: center;
  padding: 20px;
  font-size: 30px;
}

#rtl {
  direction: rtl;
}
#rtl .logo-box {
  direction: ltr;
  justify-content: flex-end;
}
#rtl #main .page-top .content .nav i {
  rotate: 180deg;
}
#rtl .input-box input {
  direction: rtl;
}
#rtl .section-title::before {
  left: unset;
  right: 0;
}

@media (max-width: 800px) {
  .section::before, .section::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .primary-btn {
    height: 46px;
  }
  .section {
    padding: 48px 16px;
    scroll-margin-top: 60px;
  }
  .section .top {
    flex-direction: column;
    gap: 0;
  }
  .section .top .dots-list {
    height: fit-content;
    margin-bottom: 20px;
  }
  .section .section-small-title {
    font-size: 14px;
    font-weight: 500;
  }
  .section .section-title {
    font-size: 36px !important;
    font-weight: 400;
    line-height: 125% !important;
  }
  .section .section-description {
    font-size: var(--textSizeSm) !important;
    line-height: 150%;
    font-weight: 400;
  }
  .pagination-box {
    margin-top: 20px;
  }
  .report-item .report-box {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }
  .report-item .report-box .start {
    gap: 8px;
  }
  .report-item .report-box .start img {
    width: 30px;
  }
  #main .page-top {
    padding-top: var(--headerSmallHeight);
    height: 300px;
  }
  #main .page-top .bg {
    height: 300px;
  }
}

/*# sourceMappingURL=main.css.map */
