#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 50px;
  height: var(--headerHeight);
  z-index: 3;
  transition: background-color 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(--primaryClr);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1333333333);
}
#header.scrolled .header-content::before, #header.keep-background .header-content::before {
  background-color: transparent;
}
#header .logo {
  display: flex;
  align-items: center;
  width: 220px;
  aspect-ratio: 2.5/1;
  transition: transform 0.3s ease;
}
#header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header .logo-mobile {
  width: 70px;
  display: none;
}
#header .nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
#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 {
  background: var(--mainGradient);
  color: var(--primaryClr);
  padding: 8px 16px;
}
#header .nav ul li a.active::after {
  display: none;
}
#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;
  background-color: var(--primaryD2Clr);
  width: 100%;
}
#header .nav ul li .dropdown ul li a:hover, #header .nav ul li .dropdown ul li a.active {
  background-color: var(--primaryLClr);
  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;
  border: none;
  background-color: transparent;
  font-size: var(--textSizeSm2);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#header .end .header-icons .header-icon:hover {
  background-color: rgba(255, 255, 255, 0.1333333333);
  color: #fff;
}
#header .end .header-icons .header-icon.language-switcher {
  font-family: var(--primaryFontArabic);
  width: fit-content;
  padding: 0 10px;
  border-radius: 30px;
}
#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;
}
#rtl #header .nav {
  direction: rtl;
}
#rtl #header .nav * {
  direction: rtl;
}

@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;
    background-color: var(--primaryClr);
    padding: 16px;
    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;
    background-color: var(--primaryD2Clr);
  }
  #header .nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1333333333);
  }
  #header .nav ul li a.active {
    padding: 12px 16px;
  }
  #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;
  }
  #header .end .menu-btn .bars {
    transition: 0.7s;
  }
  #header .end .menu-btn.active .bars {
    transform: rotate(360deg);
  }
  #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(--tertiaryClr);
  padding: 80px;
  padding-bottom: 40px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  color: var(--primaryClr);
}
#footer a {
  color: var(--primaryClr);
  transition: 0.3s ease;
}
#footer a:hover {
  color: var(--primaryLClr);
}
#footer .footer-side-title {
  font-size: var(--titleSizeSm2);
  margin-bottom: 22px;
}
#footer .footer-content {
  max-width: var(--sectionMaxWidth);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#footer .start-side {
  display: flex;
  flex-direction: column;
  flex: 4;
  gap: 24px;
}
#footer .start-side .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/1;
  max-width: 220px;
}
#footer .start-side .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#footer .start-side .title,
#footer .start-side .title-2 {
  font-size: var(--titleSize);
}
#footer .start-side .title {
  font-family: var(--secondaryFont);
}
#footer .top {
  display: flex;
  gap: 50px;
}
#footer .top .quick-links,
#footer .top .contact-side {
  min-width: 150px;
}
#footer .top .quick-links {
  flex: 1;
}
#footer .top .quick-links ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 22px;
}
#footer .top .quick-links ul li a {
  font-size: var(titleSizeSm);
  display: inline-block;
  transition: 0.3s ease;
}
#footer .top .quick-links ul li a:hover {
  transform: translateX(5px);
  color: var(--primaryLClr);
}
#footer .top .contact-side {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#footer .top .contact-side .contact-item {
  position: relative;
  margin-bottom: 22px;
  min-width: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
#footer .top .contact-side .contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .top .contact-side .contact-item .icon i {
  font-size: var(--textSize);
}
#footer .top .contact-side .contact-item .value {
  font-size: var(--textSizeSm);
  white-space: nowrap;
}
#footer .top .contact-side .social-media-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
#footer .top .contact-side .social-media-list .social-media-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.0666666667);
  border-radius: 50%;
  transition: 0.3s ease;
}
#footer .top .contact-side .social-media-list .social-media-icon i {
  font-size: 18px;
}
#footer .top .contact-side .social-media-list .social-media-icon:hover {
  background-color: var(--primaryLClr);
  color: #fff;
}
#footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(221, 221, 221, 0.3960784314);
  padding-top: 20px;
}
#footer .bottom .copyright {
  font-size: var(--textSizeSm2);
}
#footer .bottom .links-side {
  display: flex;
  align-items: center;
  gap: 16px;
}
#footer .bottom .links-side a {
  font-size: var(--textSizeSm2);
  opacity: 0.7;
  transition: 0.3s ease;
}
#footer .bottom .links-side a:hover {
  opacity: 1;
  color: var(--primaryLClr);
}

#rtl #footer .top .quick-links ul li a i {
  rotate: 180deg;
}

@media (max-width: 1000px) {
  #footer .top,
  #footer .bottom {
    flex-direction: column;
  }
  #footer .bottom {
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  #footer {
    padding: 80px 32px;
  }
  #footer .bottom .links-side {
    gap: 16px;
    flex-wrap: wrap;
  }
  #footer .bottom .links-side a {
    flex: 1;
    min-width: 120px;
  }
}
.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(--primaryLClr);
}

.home-page {
  position: relative;
}
.home-page .page-content {
  position: relative;
  z-index: 2;
}
.home-page #hero-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: var(--primaryClr);
  padding: 50px;
}
.home-page #hero-section::before, .home-page #hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
}
.home-page #hero-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--primaryClr), rgba(0, 0, 0, 0));
}
.home-page #hero-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--primaryClr), rgba(0, 0, 0, 0));
}
.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;
  padding: 0 100px;
}
.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: 0.6;
  }
}
.home-page #hero-section .slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  scale: 1.1;
  filter: brightness(0.7);
}
.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 .titles {
  transition: 0.3s;
  opacity: 0;
  margin-bottom: 32px;
}
.home-page #hero-section .slide .content .titles .title,
.home-page #hero-section .slide .content .titles .title-2 {
  max-width: 700px;
  font-size: 54px;
}
.home-page #hero-section .slide .content .titles .title {
  font-family: var(--secondaryFont);
  margin-bottom: 8px;
}
.home-page #hero-section .slide .content .titles .title-2 {
  color: #fff;
}
.home-page #hero-section .slide .content .description {
  max-width: 650px;
  transition: 0.3s;
  opacity: 0;
}
.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;
  }
  100% {
    scale: 1.1;
  }
}
.home-page #hero-section .slide.active .content .titles {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.3s ease forwards;
}
.home-page #hero-section .slide.active .content .description {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.6s ease forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(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;
  border: 2px solid var(--primaryLClr);
  transform: rotate(45deg);
  border-radius: 4px;
  scale: 0;
  transition: 0.3s;
}
.home-page #hero-section .social-media .social-media-icon:hover {
  color: var(--primaryLClr);
}
.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 #hero-section .highlighted-info-list .highlighted-info-item.active .title {
  color: var(--primaryLClr);
}
.home-page .features-section {
  background-color: var(--primaryClr);
  color: #fff;
  position: relative;
}
.home-page .features-section .logo-bg {
  position: absolute;
  top: 80%;
  left: 0;
  width: 60px;
  aspect-ratio: 1/2;
}
.home-page .features-section .logo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .features-section .logo-bg.left {
  top: 40%;
  right: 0;
}
.home-page .features-section .section-content .features-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.home-page .features-section .section-content .features-content .top {
  display: flex;
  align-items: center;
  gap: 80px;
}
.home-page .features-section .section-content .features-content .top aside.text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.home-page .features-section .section-content .features-content .top aside.text-side .section-titles .section-title,
.home-page .features-section .section-content .features-content .top aside.text-side .section-titles .section-title-2 {
  font-size: 46px;
  min-width: 250px;
  margin: 0;
  text-align: start;
}
.home-page .features-section .section-content .features-content .top aside.text-side .section-title {
  font-family: var(--secondaryFont);
}
.home-page .features-section .section-content .features-content .top aside.text-side .section-title-2 {
  color: #fff;
}
.home-page .features-section .section-content .features-content .top aside.text-side .section-description {
  max-width: unset;
  font-size: var(--textSize);
  color: #fff;
  margin: 0;
  text-align: start;
}
.home-page .features-section .section-content .features-content .top aside.image-side {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}
.home-page .features-section .section-content .features-content .top aside.image-side img {
  width: 105%;
  height: 105%;
  object-fit: cover;
}
.home-page .features-section .section-content .features-content .bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.home-page .features-section .section-content .features-content .bottom .feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  min-width: 180px;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home-page .features-section .section-content .features-content .bottom .feature-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-10px);
}
.home-page .features-section .section-content .features-content .bottom .feature-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px var(--primaryLClr));
}
.home-page .features-section .section-content .features-content .bottom .feature-item:hover .feature-title {
  color: #fff;
}
.home-page .features-section .section-content .features-content .bottom .feature-item .icon {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
}
.home-page .features-section .section-content .features-content .bottom .feature-item .icon i {
  font-size: 72px;
  color: #fff;
}
.home-page .features-section .section-content .features-content .bottom .feature-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .features-section .section-content .features-content .bottom .feature-item .titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 230px;
}
.home-page .features-section .section-content .features-content .bottom .feature-item .titles .feature-title {
  font-size: var(--textSize);
  font-family: var(--secondaryFont);
  direction: ltr;
  width: fit-content;
  transition: 0.3s ease;
}
.home-page .features-section .section-content .features-content .bottom .feature-item .titles .feature-description {
  font-size: var(--textSize);
  text-align: center;
  opacity: 0.8;
}
.home-page .services-section {
  background-color: var(--tertiaryClr);
}
.home-page .services-section .services-box {
  width: 100%;
  height: 360px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
}
.home-page .services-section .services-box .road {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  padding: 30px;
  border: 20px solid var(--primaryClr);
  border-left: 0;
  border-right: 0;
  z-index: -1;
}
.home-page .services-section .services-box .road::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--primaryClr);
}
.home-page .services-section .services-box .road::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: calc(100% + 40px);
  background: linear-gradient(90deg, var(--tertiaryClr), transparent, transparent, transparent, transparent, var(--tertiaryClr));
  z-index: 10;
}
.home-page .services-section .services-box .services-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
.home-page .services-section .services-box .services-list .service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.home-page .services-section .services-box .services-list .service-item:nth-child(odd) {
  margin-bottom: 240px;
}
.home-page .services-section .services-box .services-list .service-item:nth-child(even) {
  margin-top: 240px;
  rotate: 180deg;
}
.home-page .services-section .services-box .services-list .service-item:nth-child(even) .titles {
  rotate: 180deg;
}
.home-page .services-section .services-box .services-list .service-item:nth-child(even) .icon img,
.home-page .services-section .services-box .services-list .service-item:nth-child(even) .icon i {
  rotate: 180deg;
}
.home-page .services-section .services-box .services-list .service-item:hover:nth-child(odd) .icon {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.home-page .services-section .services-box .services-list .service-item:hover:nth-child(odd) .titles {
  transform: translateY(-10px);
}
.home-page .services-section .services-box .services-list .service-item:hover:nth-child(odd) .titles .service-title {
  transform: translateY(-5px);
  color: var(--secondaryClr);
}
.home-page .services-section .services-box .services-list .service-item:hover:nth-child(even) .icon {
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}
.home-page .services-section .services-box .services-list .service-item:hover:nth-child(even) .titles {
  transform: translateY(15px);
}
.home-page .services-section .services-box .services-list .service-item:hover:nth-child(even) .titles .service-title {
  transform: translateY(-5px);
  color: var(--secondaryClr);
}
.home-page .services-section .services-box .services-list .service-item:hover .icon {
  transform: scale(1.1) translateY(-5px);
}
.home-page .services-section .services-box .services-list .service-item .titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}
.home-page .services-section .services-box .services-list .service-item .titles .service-title,
.home-page .services-section .services-box .services-list .service-item .titles .service-description {
  font-size: var(--textSize);
  color: var(--primaryClr);
  text-align: center;
}
.home-page .services-section .services-box .services-list .service-item .titles .service-title {
  font-family: var(--secondaryFont);
  transition: var(--transition);
}
.home-page .services-section .services-box .services-list .service-item .icon {
  width: 81px;
  height: 81px;
  aspect-ratio: 1/1;
  background-color: var(--primaryLClr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 20px;
  position: relative;
  transition: var(--transition);
}
.home-page .services-section .services-box .services-list .service-item .icon::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: var(--primaryLClr);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  z-index: -1;
}
.home-page .services-section .services-box .services-list .service-item .icon i {
  color: #fff;
  font-size: 38px;
}
.home-page .services-section .services-box .services-list .service-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-page .gallery-section {
  background-color: var(--tertiaryClr);
}
.home-page .gallery-section .section-content {
  display: flex;
  gap: 80px;
}
.home-page .gallery-section .section-content .section-header .section-titles .section-title {
  max-width: 500px;
}
.home-page .gallery-section .section-content .side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.home-page .gallery-section .section-content .side .gallery-item {
  flex: 1;
  border-radius: 8px;
}
.home-page .gallery-section .section-content .side .gallery-item img {
  width: 100%;
  object-fit: contain;
  transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.home-page .gallery-section .section-content .side .gallery-item img:hover {
  transform: scale(1.02);
}
.home-page .gallery-section .section-content .side:last-child {
  flex: 1.5;
}
.home-page .gallery-section .section-content .side:last-child .gallery-item:nth-child(even) img {
  width: fit-content;
}
.home-page .map-section {
  padding: 0;
  background-color: var(--tertiaryClr);
}
.home-page .map-section .section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
}
.home-page .map-section .map-box {
  width: calc(100% - 80px);
  max-width: 1000px;
  overflow: hidden;
  border-radius: 10px;
  border: 4px solid #fff;
}
.home-page .map-section .map-box iframe {
  width: 100%;
  aspect-ratio: 4/2.4;
}
.home-page .message-section {
  background-color: var(--primaryClr);
}
.home-page .message-section .section-content {
  display: flex;
  flex-direction: row;
  gap: 50px;
  flex-wrap: wrap;
}
.home-page .message-section .section-content .section-header,
.home-page .message-section .section-content .form-side {
  flex: 1;
}
.home-page .message-section .section-content .section-header {
  min-width: 400px;
}
.home-page .message-section .section-content .section-header .section-description {
  color: #fff;
}
.home-page .message-section .section-content .form-side {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.home-page .message-section .section-content .form-side .primary-btn {
  flex-shrink: 0;
}
.home-page .message-section .section-content .form-side .register-interest-form {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 8px;
  flex: 1;
  min-width: 300px;
}
.home-page .message-section .section-content .form-side .register-interest-form input {
  flex: 1;
  height: 100%;
  padding: 0 10px;
  border-radius: 8px;
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: var(--textSizeSm);
}
.home-page .message-section .section-content .form-side .register-interest-form input::placeholder {
  color: #aaa;
}
.home-page .message-section .section-content .form-side .register-interest-form .primary-btn {
  padding: 8px 16px;
  border-radius: 7px;
}

#rtl .home-page .message-section .section-content .form-side {
  flex-direction: row-reverse;
}

@media (max-width: 1200px) {
  .home-page .services-section .section-content .services-box {
    height: fit-content;
  }
  .home-page .services-section .section-content .services-box .road {
    height: 100%;
    width: unset;
    padding: 20px;
    left: 50%;
    translate: -50%;
    border: 15px solid var(--primaryClr);
    border-top: 0;
    border-bottom: 0;
  }
  .home-page .services-section .section-content .services-box .road::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    border-left: 2px dashed var(--primaryClr);
  }
  .home-page .services-section .section-content .services-box .road::after {
    content: "";
    position: absolute;
    left: -21px;
    top: -1px;
    height: calc(100% + 2px);
    width: calc(100% + 42px);
    background: linear-gradient(0deg, var(--tertiaryClr), transparent, transparent, transparent, transparent, var(--tertiaryClr));
    z-index: 10;
  }
  .home-page .services-section .section-content .services-box .services-list {
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    gap: 100px;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item {
    margin: 0;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even), .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) {
    rotate: 0deg;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item .icon,
  .home-page .services-section .section-content .services-box .services-list .service-item .titles {
    rotate: 0deg;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item .icon img {
    rotate: 0deg;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item .titles {
    align-items: flex-start;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item .titles .service-title,
  .home-page .services-section .section-content .services-box .services-list .service-item .titles .service-description {
    text-align: start;
    max-width: 130px;
    font-size: var(--textSizeSm2) !important;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) .icon {
    rotate: 90deg;
    margin-left: 50px;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) .icon img {
    rotate: 270deg;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) .titles {
    translate: 60px;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) .icon {
    rotate: 270deg;
    margin-right: 50px;
  }
  .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) .icon img {
    rotate: 90deg;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) .titles {
    translate: 40px;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) .icon {
    rotate: 90deg;
    margin-left: 150px;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(even) .icon img {
    rotate: 270deg;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) {
    flex-direction: row;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) .titles {
    translate: -40px;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) .icon {
    rotate: 270deg;
    margin-right: 160px;
  }
  #rtl .home-page .services-section .section-content .services-box .services-list .service-item:nth-child(odd) .icon img {
    rotate: 90deg;
  }
}
@media (max-width: 1024px) {
  .home-page .features-section .section-content .features-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .home-page #hero-section .slide .content .title {
    font-size: 36px;
  }
  .home-page .section-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .home-page .section-header .section-title {
    text-align: start;
  }
  .home-page .services-section .services-container {
    border-radius: 4px !important;
  }
  .home-page .services-section .services-container .service-featured {
    aspect-ratio: 2/1.5;
  }
  .home-page .services-section .services-container .service-featured .overlay {
    padding: 20px !important;
    justify-content: flex-start !important;
  }
  .home-page .services-section .services-container .services-grid .service-card {
    padding: 15px;
  }
  .home-page .projects-section .projects-grid {
    flex-direction: column;
    gap: 20px;
  }
  .home-page .projects-section .projects-grid .project-card {
    min-width: unset !important;
  }
  .home-page .fields-section .fields-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .gallery-section .section-content {
    flex-direction: column;
    margin: 0 !important;
  }
  .features-section .features-content {
    gap: 40px !important;
  }
  .features-section .features-content .top {
    flex-direction: column-reverse;
    gap: 42px !important;
  }
  .features-section .features-content .top .text-side {
    gap: 13px !important;
  }
  .features-section .features-content .top .image-side {
    width: 100%;
  }
}
@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,
  .home-page #hero-section .section-content .side .slide .content .title-2 {
    font-size: 34px;
    margin-bottom: 0;
  }
  .home-page #hero-section .section-content .side .slide .content .description {
    font-size: var(--textSizeSm2);
  }
  .home-page .gallery-section .section-content {
    gap: 40px;
  }
  .home-page .gallery-section .section-content .side {
    gap: 40px;
  }
  .home-page .gallery-section .section-content .side:last-child .gallery-item:nth-child(even) img {
    width: 100% !important;
  }
}
@media (max-width: 700px) {
  .home-page .message-section .section-content .section-header {
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .home-page .map-section .section-content {
    padding-bottom: 20px;
  }
  .home-page .map-section .map-box {
    width: calc(100% - 40px);
  }
  .home-page .message-section .section-content .form-side > .primary-btn {
    width: 100%;
  }
}
.mission-vision-page .hero-section {
  position: relative;
  height: 100vh;
  background: var(--primaryClr);
}
.mission-vision-page .hero-section::before, .mission-vision-page .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}
.mission-vision-page .hero-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--primaryClr), rgba(0, 0, 0, 0));
}
.mission-vision-page .hero-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--primaryClr), rgba(0, 0, 0, 0));
}
.mission-vision-page .hero-section .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s linear;
  align-items: center;
}
.mission-vision-page .hero-section .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  scale: 1.1;
  filter: brightness(0.7);
}
.mission-vision-page .hero-section .section-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.mission-vision-page .hero-section .section-content .section-header .section-titles .section-title,
.mission-vision-page .hero-section .section-content .section-header .section-titles .section-title-2 {
  font-size: 54px;
}
.mission-vision-page .hero-section .section-content .section-header .section-titles .section-title-2 {
  color: #fff;
}
.mission-vision-page .mission-vision-section {
  position: relative;
  background-color: var(--primaryClr);
}
.mission-vision-page .mission-vision-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.mission-vision-page .mission-vision-section .section-content .top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.mission-vision-page .mission-vision-section .section-content .top .text-side {
  flex: 1.3;
  color: #fff;
}
.mission-vision-page .mission-vision-section .section-content .top .image-side {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}
.mission-vision-page .mission-vision-section .section-content .top .image-side:hover img {
  transform: scale(1.02);
}
.mission-vision-page .mission-vision-section .section-content .top .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.mission-vision-page .mission-vision-section .section-content .bottom {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}
.mission-vision-page .mission-vision-section .section-content .bottom .card {
  flex: 1;
  min-width: 500px;
  background-color: var(--primaryLClr);
  padding: 40px 80px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}
.mission-vision-page .mission-vision-section .section-content .bottom .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.mission-vision-page .mission-vision-section .section-content .bottom .card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}
.mission-vision-page .mission-vision-section .section-content .bottom .card .icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
  transition: 0.4s ease;
}
.mission-vision-page .mission-vision-section .section-content .bottom .card .icon i {
  color: #fff;
  font-size: 100px;
}
.mission-vision-page .mission-vision-section .section-content .bottom .card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mission-vision-page .mission-vision-section .section-content .bottom .card .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
  transition: 0.3s ease;
}
.mission-vision-page .mission-vision-section .section-content .bottom .card .content .card-title {
  font-size: 34px;
  font-family: var(--secondaryFont);
}

@media (max-width: 1200px) {
  .mission-vision-page .hero-section .section-content .section-header .section-titles .section-title,
  .mission-vision-page .hero-section .section-content .section-header .section-titles .section-title-2 {
    font-size: 50px;
  }
  .mission-vision-page .mission-vision-section .section-content .top {
    flex-direction: column-reverse;
  }
}
@media (max-width: 480px) {
  .mission-vision-page .hero-section .section-content .section-header .section-titles .section-title,
  .mission-vision-page .hero-section .section-content .section-header .section-titles .section-title-2 {
    font-size: 30px !important;
  }
  .mission-vision-page .mission-vision-section {
    padding: 120px 32px;
    padding-bottom: 80px;
  }
  .mission-vision-page .mission-vision-section .section-content .top .image-side {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1.2/1;
  }
  .mission-vision-page .mission-vision-section .section-content .top .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mission-vision-page .mission-vision-section .section-content .bottom .card {
    min-width: 100%;
    padding: 40px 30px;
  }
  .mission-vision-page .mission-vision-section .section-content .bottom .card .icon {
    height: fit-content;
  }
  .mission-vision-page .mission-vision-section .section-content .bottom .card .content .card-title {
    font-size: 28px;
  }
  .mission-vision-page .mission-vision-section .section-content .bottom .card .content .card-description {
    font-size: var(--textSizeSm2);
  }
}
.our-team-page .meet-team-section {
  background-color: var(--primaryClr);
  color: #fff;
  padding: 120px 80px;
  position: relative;
}
.our-team-page .meet-team-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.our-team-page .meet-team-section .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-team-page .meet-team-section .section-header {
  margin-bottom: 60px;
}
.our-team-page .meet-team-section .section-header .section-title {
  font-size: 54px;
}
.our-team-page .meet-team-section .section-header .section-title span {
  font-family: var(--secondaryFont);
  font-style: normal;
}
.our-team-page .meet-team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 30px;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .our-team-page .meet-team-section .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .our-team-page .meet-team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .our-team-page .meet-team-section .team-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
  }
}
.our-team-page .meet-team-section .team-grid .member-card {
  background-color: #fff;
  border-radius: 20px;
  color: var(--primaryClr);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}
.our-team-page .meet-team-section .team-grid .member-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.our-team-page .meet-team-section .team-grid .member-card:hover .image img {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.our-team-page .meet-team-section .team-grid .member-card .image {
  width: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
  aspect-ratio: 1.3/1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.our-team-page .meet-team-section .team-grid .member-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.our-team-page .meet-team-section .team-grid .member-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.our-team-page .meet-team-section .team-grid .member-card .content .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.our-team-page .meet-team-section .team-grid .member-card .content .info .name {
  font-size: 20px;
  font-family: var(--secondaryFontRegularBold);
  transition: 0.3s;
}
.our-team-page .meet-team-section .team-grid .member-card .content .info .name:hover {
  color: var(--primaryLClr);
}
.our-team-page .meet-team-section .team-grid .member-card .content .info .title {
  font-size: var(--textSize);
  color: var(--primaryLClr);
  transition: 0.3s;
}
.our-team-page .meet-team-section .team-grid .member-card .content .info .title:hover {
  color: var(--primaryLClr);
}
.our-team-page .meet-team-section .team-grid .member-card .content .contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.our-team-page .meet-team-section .team-grid .member-card .content .contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--textSizeSm);
  color: var(--primaryClr);
}
.our-team-page .meet-team-section .team-grid .member-card .content .contacts .contact-item i {
  color: var(--primaryLClr);
  width: 16px;
  text-align: center;
}
.our-team-page .meet-team-section .team-grid .member-card .content .contacts .contact-item:hover {
  color: var(--primaryLClr);
  transform: translateX(5px);
}
.our-team-page .meet-team-section .team-grid .member-card .content .social {
  margin-top: auto;
  padding-top: 24px;
}
.our-team-page .meet-team-section .team-grid .member-card .content .social .social-link {
  font-size: 22px;
  color: var(--primaryClr);
}
.our-team-page .meet-team-section .team-grid .member-card .content .social .social-link:hover {
  color: var(--primaryLClr);
}
.our-team-page .org-structure-section {
  background-color: var(--primaryClr);
  color: #fff;
  padding-top: 0;
}
.our-team-page .org-structure-section .section-header {
  margin-bottom: 80px;
}
.our-team-page .org-structure-section .section-header .section-title {
  font-size: 54px;
}
.our-team-page .org-structure-section .section-header .section-title span {
  font-family: var(--secondaryFont);
}
.our-team-page .org-structure-section .org-chart-container {
  display: flex;
  justify-content: center;
}
.our-team-page .org-structure-section .org-chart-container .tree {
  width: 100%;
  width: 100%;
}
.our-team-page .org-structure-section .org-chart-container .tree ul {
  padding-top: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.our-team-page .org-structure-section .org-chart-container .tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.our-team-page .org-structure-section .org-chart-container .tree li::before, .our-team-page .org-structure-section .org-chart-container .tree li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #fff;
  width: 50%;
  height: 50px;
}
.our-team-page .org-structure-section .org-chart-container .tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #fff;
}
.our-team-page .org-structure-section .org-chart-container .tree li:only-child::after, .our-team-page .org-structure-section .org-chart-container .tree li:only-child::before {
  display: none;
}
.our-team-page .org-structure-section .org-chart-container .tree li:only-child {
  padding-top: 0;
}
.our-team-page .org-structure-section .org-chart-container .tree li:first-child::before, .our-team-page .org-structure-section .org-chart-container .tree li:last-child::after {
  border: 0 none;
}
.our-team-page .org-structure-section .org-chart-container .tree li:last-child::before {
  border-right: 1px solid #fff;
}
.our-team-page .org-structure-section .org-chart-container .tree li ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #fff;
  width: 0;
  height: 50px;
}
.our-team-page .org-structure-section .org-chart-container .tree > ul {
  padding: 0;
}
.our-team-page .org-structure-section .org-chart-container .tree > ul > li {
  padding: 0 !important;
}
.our-team-page .org-structure-section .org-chart-container .tree .node {
  position: relative;
  z-index: 2;
  width: 8cqw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.our-team-page .org-structure-section .org-chart-container .tree .node .portrait {
  width: 8cqw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
  transition: 0.2s ease;
}
.our-team-page .org-structure-section .org-chart-container .tree .node .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.our-team-page .org-structure-section .org-chart-container .tree .node:hover .portrait img {
  transform: scale(1.05);
}
.our-team-page .org-structure-section .org-chart-container .tree .node:hover .portrait {
  box-shadow: 0 0 15px 2px var(--primaryLClr);
}
.our-team-page .org-structure-section .org-chart-container .tree .node .details {
  position: absolute;
  left: 9cqw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  text-align: left;
  width: max-content;
}
.our-team-page .org-structure-section .org-chart-container .tree .node .details .name {
  font-family: var(--secondaryFontRegular);
  font-size: 1.2cqw;
  margin-bottom: 4px;
}
.our-team-page .org-structure-section .org-chart-container .tree .node .details .title {
  font-size: 1.2cqw;
  opacity: 0.8;
  color: #fff;
  max-width: 13cqw;
}
.our-team-page .org-structure-section .org-chart-container .tree .node.has-children::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 1px;
  height: 50px;
  background-color: #fff;
  z-index: 1;
}
.our-team-page .org-structure-section .org-chart-container .secondary li {
  margin-left: 20cqw;
  position: relative;
  width: fit-content;
}
.our-team-page .org-structure-section .org-chart-container .secondary li::before {
  content: "";
  display: flex !important;
  position: absolute;
  top: 0;
  left: -6cqw;
  right: unset !important;
  width: 0;
  height: 100%;
  border-right: 1px solid #fff !important;
}
.our-team-page .org-structure-section .org-chart-container .secondary li::after {
  content: "";
  display: flex !important;
  position: absolute;
  top: 50%;
  left: -6cqw;
  right: unset !important;
  width: 6cqw;
  height: 0;
  border-bottom: 2px dotted #fff !important;
}

.member-popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 3;
  display: none;
  opacity: 0;
  transition: 0.3s ease;
}
.member-popup-bg.active {
  display: block;
  opacity: 1;
}

.member-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  translate: 0 10px;
  width: 90%;
  max-width: 800px;
  height: 750px;
  max-height: calc(100vh - 40px);
  background-color: var(--primaryClr);
  border-radius: 16px;
  z-index: 4;
  display: none;
  opacity: 0;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  color: #fff;
}
.member-popup.active {
  display: block;
  opacity: 1;
  translate: 0;
}
.member-popup .popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.member-popup .popup-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-popup .close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  z-index: 10;
}
.member-popup .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.member-popup .member-popup-content {
  padding: 40px;
  height: 100%;
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.member-popup .member-popup-content.active {
  display: flex;
}
.member-popup .member-popup-content .member-popup-name {
  font-size: 20px;
  font-family: var(--secondaryFontRegularBold);
  padding-bottom: 40px;
}
.member-popup .member-popup-content .member-popup-description {
  font-size: var(--textSize);
  white-space: pre-wrap;
  font-family: var(--primaryFont);
  opacity: 0.9;
  overflow-y: auto;
  flex-grow: 1;
}

#rtl .our-team-page .org-structure-section .org-chart-container .tree ul li::after {
  left: 0;
  border-left: 0;
  border-right: 1px solid #fff;
}
#rtl .our-team-page .org-structure-section .org-chart-container .tree ul li::before {
  right: 0;
  border-right: 0;
  border-left: 1px solid #fff;
}
#rtl .our-team-page .org-structure-section .org-chart-container .tree ul li .node .details {
  left: auto;
  right: 9cqw;
  text-align: right;
}
#rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li {
  margin-left: 0;
  margin-right: 20cqw;
}
#rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li::before {
  border-right: 0 !important;
  right: calc(-6cqw - 1px) !important;
  left: unset !important;
}
#rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li::after {
  right: -6cqw !important;
  left: unset !important;
}
#rtl .member-popup .close-btn {
  right: unset;
  left: 40px;
}

@media (max-width: 991px) {
  .our-team-page .meet-team-section,
  .our-team-page .org-structure-section {
    padding: 80px 40px;
  }
}
@media (max-width: 480px) {
  .member-popup {
    width: 100%;
    height: 100%;
    max-height: unset;
    border-radius: 0;
  }
  .member-popup .close-btn {
    top: 10px !important;
    left: 10px !important;
  }
  .member-popup .member-popup-content {
    padding: 20px;
  }
  .our-team-page .meet-team-section {
    padding: 30px 32px;
    padding-top: 90px;
  }
  .our-team-page .meet-team-section .section-header {
    margin-bottom: 40px;
  }
  .our-team-page .meet-team-section .section-header .section-title {
    font-size: 30px;
  }
  .our-team-page .meet-team-section .team-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
  }
  .our-team-page .meet-team-section .team-grid::-webkit-scrollbar {
    display: none;
  }
  .our-team-page .meet-team-section .team-grid .member-card {
    width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 12px;
    transform: none !important;
    opacity: 1;
  }
  .our-team-page .meet-team-section .team-grid .member-card .content {
    padding: 12px;
    gap: 8px;
  }
  .our-team-page .meet-team-section .team-grid .member-card .content .info .name {
    font-size: var(--textSizeSm2);
  }
  .our-team-page .meet-team-section .team-grid .member-card .content .info .title {
    font-size: 12px;
  }
  .our-team-page .meet-team-section .team-grid .member-card .content .contacts .contact-item {
    font-size: 12px;
  }
  .our-team-page .meet-team-section .team-grid .member-card .content .social {
    padding-top: 8px;
  }
  .our-team-page .org-structure-section {
    padding: 30px 32px;
    padding-top: 0;
  }
  .our-team-page .org-structure-section .section-header {
    margin-bottom: 30px;
  }
  .our-team-page .org-structure-section .section-header .section-title {
    font-size: 30px;
  }
  .our-team-page .org-structure-section .org-chart-container {
    overflow-x: auto;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li .node {
    width: 100%;
    align-items: flex-start;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li .node .portrait {
    width: 100px;
    height: 100px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li .node .details {
    left: 120px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li .node .details .name {
    font-size: var(--textSizeSm);
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li .node .details .title {
    font-size: var(--textSizeSm);
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li > .node {
    padding-left: 20px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li > .node .details {
    left: 130px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li > .node::after {
    top: 50% !important;
    left: 0px !important;
    height: 1px !important;
    width: 20px !important;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul {
    flex-direction: column;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul::before {
    top: -50px;
    left: 0;
    height: calc(100% - 130px);
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li::before, .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li::after {
    display: none !important;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li ul {
    padding-top: 30px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li ul li:first-child {
    padding-top: 0;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li ul li .node {
    padding-left: 90px !important;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li ul li .node .details {
    left: 200px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree ul li ul > li ul li::after {
    display: flex !important;
    content: "" !important;
    left: 70px !important;
    top: -50px !important;
    width: 20px;
    height: 100%;
    border-bottom: 1px solid #fff !important;
    border-left: 1px solid #fff !important;
    border-top: 0 !important;
  }
  .our-team-page .org-structure-section .org-chart-container .tree .secondary li {
    margin-left: 0 !important;
  }
  .our-team-page .org-structure-section .org-chart-container .tree .secondary li .node {
    padding-left: 90px !important;
  }
  .our-team-page .org-structure-section .org-chart-container .tree .secondary li .node .details {
    left: 200px;
  }
  .our-team-page .org-structure-section .org-chart-container .tree .secondary li::before {
    display: flex !important;
    left: 0;
    top: -80px;
    height: calc(100% + 30px);
  }
  .our-team-page .org-structure-section .org-chart-container .tree .secondary li::after {
    display: flex !important;
    left: 0;
    width: 90px;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul::before {
    left: unset;
    right: 0;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul li .node {
    padding-left: 0;
    padding-right: 20px;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul li .node::after {
    left: unset;
    right: 0;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul li .node .details {
    left: auto;
    right: 140px;
    text-align: right;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul li ul li ul .node {
    padding-left: 0;
    padding-right: 90px;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul li ul li ul .node .details {
    right: 210px;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree ul li ul li ul li::after {
    left: unset;
    right: 70px;
    border-left: none !important;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li {
    margin-right: 0 !important;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li .node {
    padding-left: 0 !important;
    padding-right: 90px !important;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li .node .details {
    right: 200px;
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li::before {
    display: flex !important;
    right: 0 !important;
    top: -80px;
    height: calc(100% + 30px);
  }
  #rtl .our-team-page .org-structure-section .org-chart-container .tree .secondary li::after {
    display: flex !important;
    right: 0 !important;
    width: 90px;
  }
}
.tdg-studio-page .hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--primaryClr);
}
.tdg-studio-page .hero-section::before, .tdg-studio-page .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}
.tdg-studio-page .hero-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--primaryClr), rgba(0, 0, 0, 0));
}
.tdg-studio-page .hero-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--primaryClr), rgba(0, 0, 0, 0));
}
.tdg-studio-page .hero-section .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s linear;
  align-items: center;
}
.tdg-studio-page .hero-section .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  scale: 1.1;
  filter: brightness(0.5);
}
.tdg-studio-page .hero-section .section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tdg-studio-page .hero-section .section-content .section-header {
  align-items: center;
}
.tdg-studio-page .hero-section .section-content .section-header .section-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.tdg-studio-page .hero-section .section-content .section-header .section-titles .section-title,
.tdg-studio-page .hero-section .section-content .section-header .section-titles .section-title-2 {
  font-size: 54px;
  text-align: center;
}
.tdg-studio-page .hero-section .section-content .section-header .section-titles .section-title-2 {
  color: #fff;
}
.tdg-studio-page .hero-section .section-content .section-header .section-description {
  color: #fff;
  text-align: center;
}
.tdg-studio-page .hero-section .section-content .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}
.tdg-studio-page .hero-section .section-content .cards .card {
  flex: 1;
  max-width: 318px;
  min-width: 250px;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tdg-studio-page .hero-section .section-content .cards .card:hover {
  transform: translateY(-4px);
}
.tdg-studio-page .hero-section .section-content .cards .card:hover .card-bg img {
  transform: scale(1.05);
}
.tdg-studio-page .hero-section .section-content .cards .card .card-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tdg-studio-page .hero-section .section-content .cards .card .card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tdg-studio-page .hero-section .section-content .cards .card .overlay {
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 15px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primaryClr));
  transition: 0.4s ease;
}
.tdg-studio-page .hero-section .section-content .cards .card .overlay .text {
  color: #fff;
  font-size: 20px;
  max-width: 180px;
}
.tdg-studio-page .hero-section .section-content .cards .card .overlay .fa-solid {
  color: #fff;
  rotate: 45deg;
  transition: 0.4s ease;
}
.tdg-studio-page .hero-section .section-content .bottom .description {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  font-size: var(--textSize);
  max-width: 800px;
}
.tdg-studio-page .slider-section {
  position: relative;
  background-color: var(--primaryClr);
}
.tdg-studio-page .slider-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.tdg-studio-page .slider-section .section-content .section-header {
  gap: 80px;
}
.tdg-studio-page .slider-section .section-content .section-header .section-titles .section-title,
.tdg-studio-page .slider-section .section-content .section-header .section-titles .section-title-2 {
  font-size: 54px;
  text-align: center;
}
.tdg-studio-page .slider-section .section-content .section-header .section-titles .section-title-2 {
  color: #fff;
}
.tdg-studio-page .slider-section .section-content .section-header .section-description {
  color: #fff;
  text-align: center;
  max-width: 740px;
}
.tdg-studio-page .slider-section .studio-slider-wrapper {
  overflow: hidden;
  width: 100%;
}
.tdg-studio-page .slider-section .studio-slider {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}
.tdg-studio-page .slider-section .studio-slider .slide {
  width: 330px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.tdg-studio-page .slider-section .studio-slider .slide:hover {
  transform: scale(0.98);
}
.tdg-studio-page .slider-section .studio-slider .slide:hover img {
  filter: brightness(1.1);
}
.tdg-studio-page .slider-section .studio-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.tdg-studio-page .main-section {
  position: relative;
  background-color: var(--tertiaryClr);
}
.tdg-studio-page .main-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 160px;
}
.tdg-studio-page .main-section .section-content .main-item {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.tdg-studio-page .main-section .section-content .main-item:nth-child(even) {
  flex-direction: row-reverse;
}
.tdg-studio-page .main-section .section-content .main-item .text-side {
  display: flex;
  flex-direction: column;
  gap: 80px;
  flex: 1;
}
.tdg-studio-page .main-section .section-content .main-item .text-side .section-header {
  gap: 80px;
}
.tdg-studio-page .main-section .section-content .main-item .text-side .section-header .section-titles .section-title {
  color: var(--primaryLClr);
  font-family: var(--secondaryFont);
}
.tdg-studio-page .main-section .section-content .main-item .text-side .section-header .section-titles .section-title,
.tdg-studio-page .main-section .section-content .main-item .text-side .section-header .section-titles .section-title-2 {
  font-size: 46px;
}
.tdg-studio-page .main-section .section-content .main-item .text-side .tags {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.tdg-studio-page .main-section .section-content .main-item .text-side .tags .tag {
  flex: 1;
  padding: 22px 37px;
  border-radius: 50px;
  border: 1px solid var(--primaryClr);
  text-align: center;
  font-size: 22px;
  font-family: var(--secondaryFont);
  min-width: 160px;
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tdg-studio-page .main-section .section-content .main-item .text-side .tags .tag:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.tdg-studio-page .main-section .section-content .main-item .image-side {
  overflow: hidden;
  flex: 0.8;
  aspect-ratio: 2/1.4;
  border-radius: 20px;
}
.tdg-studio-page .main-section .section-content .main-item .image-side:hover img {
  transform: scale(1.03);
}
.tdg-studio-page .main-section .section-content .main-item .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.tdg-studio-page .booking-section {
  position: relative;
  background-color: var(--primaryClr);
  height: 50dvw;
  max-height: 700px;
  min-height: 800px;
}
.tdg-studio-page .booking-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.tdg-studio-page .booking-section .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tdg-studio-page .booking-section .section-content {
  display: flex;
  gap: 80px;
}
.tdg-studio-page .booking-section .section-content .title-side {
  flex: 1.3;
  min-width: 400px;
}
.tdg-studio-page .booking-section .section-content .title-side .section-header .section-titles .section-title,
.tdg-studio-page .booking-section .section-content .title-side .section-header .section-titles .section-title-2 {
  font-size: 46px;
}
.tdg-studio-page .booking-section .section-content .title-side .section-header .section-titles .section-title-2 {
  color: #fff;
}
.tdg-studio-page .booking-section .section-content .booking-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 2;
}
.tdg-studio-page .booking-section .section-content .booking-side .description {
  color: #fff;
  font-size: var(--textSize);
}
.tdg-studio-page .booking-section .section-content .booking-side .primary-btn {
  width: fit-content;
}

@media (max-width: 1100px) {
  .tdg-studio-page .main-section .main-item {
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  .tdg-studio-page .booking-section {
    height: unset;
    min-height: unset;
    max-height: unset;
  }
  .tdg-studio-page .booking-section .section-content {
    flex-direction: column !important;
  }
  .tdg-studio-page .booking-section .section-content .title-side {
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .tdg-studio-page .hero-section {
    padding-top: 100px;
  }
  .tdg-studio-page .hero-section .section-content .cards {
    margin-bottom: 0px;
  }
  .tdg-studio-page .hero-section .section-content .bottom .description {
    font-size: var(--textSizeSm2);
  }
  .tdg-studio-page .slider-section .section-content {
    gap: 40px;
  }
  .tdg-studio-page .slider-section .section-content .section-header {
    gap: 40px;
  }
  .tdg-studio-page .slider-section .section-content .section-header .section-titles .section-title,
  .tdg-studio-page .slider-section .section-content .section-header .section-titles .section-title-2 {
    font-size: 30px !important;
  }
  .tdg-studio-page .slider-section .section-content .studio-slider-wrapper .studio-slider {
    gap: 24px;
  }
  .tdg-studio-page .slider-section .section-content .studio-slider-wrapper .studio-slider .slide {
    width: 138px;
    border-radius: 10px;
  }
  .tdg-studio-page .main-section .section-content .main-item {
    flex-direction: column-reverse !important;
    gap: 40px !important;
  }
  .tdg-studio-page .main-section .section-content .main-item .text-side {
    gap: 40px;
  }
  .tdg-studio-page .main-section .section-content .main-item .text-side .section-header {
    gap: 40px;
  }
  .tdg-studio-page .main-section .section-content .main-item .text-side .section-header .section-titles .section-title,
  .tdg-studio-page .main-section .section-content .main-item .text-side .section-header .section-titles .section-title-2 {
    font-size: 30px !important;
  }
  .tdg-studio-page .main-section .section-content .main-item .text-side .tags .tag {
    flex: unset;
    width: fit-content;
    font-size: var(--textSize);
  }
  .tdg-studio-page .booking-section .section-content {
    height: 1000px;
  }
  .tdg-studio-page .booking-section .section-content .title-side,
  .tdg-studio-page .booking-section .section-content .booking-side {
    flex: unset;
  }
  .tdg-studio-page .booking-section .section-content .title-side .section-header .section-titles .section-title,
  .tdg-studio-page .booking-section .section-content .title-side .section-header .section-titles .section-title-2 {
    font-size: 46px !important;
  }
  .tdg-studio-page .booking-section .section-content .booking-side {
    gap: 40px;
  }
  .tdg-studio-page .booking-section .section-content .booking-side .description {
    font-size: var(--textSizeSm2);
  }
}
@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/Century Gothic/centurygothic_light.otf");
  font-weight: 900;
}
@font-face {
  font-family: "Century Gothic Bold";
  src: url("assets/fonts/Century Gothic/centurygothic_bold.ttf");
}
@font-face {
  font-family: "Tiempos Headline";
  src: url("assets/fonts/Tiempos Headline/TiemposHeadline-LightItalic.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Tiempos Headline Regular";
  src: url("assets/fonts/Tiempos Headline/TiemposHeadline-Regular.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Tiempos Headline Regular Bold";
  src: url("assets/fonts/Tiempos Headline/TiemposHeadline-Regular.otf");
}
@font-face {
  font-family: "Tiempos Headline Bold";
  src: url("assets/fonts/Tiempos Headline/TiemposHeadline-LightItalic.otf");
  font-weight: 200;
}
@font-face {
  font-family: "Laureen Zaza Display";
  src: url("assets/fonts/Laureen Zaza Display/laureen-zaza-display-regular.otf");
}
@font-face {
  font-family: "GE SS Two";
  src: url("assets/fonts/GE SS Two/GE SS Two Light.otf");
}
:root {
  --primaryFont: "Century Gothic", Arial, sans-serif;
  --primaryFontBold: "Century Gothic Bold", Arial, sans-serif;
  --secondaryFont: "Tiempos Headline", Arial, sans-serif;
  --secondaryFontRegular: "Tiempos Headline Regular", Arial, sans-serif;
  --secondaryFontRegularBold: "Tiempos Headline Regular Bold", Arial, sans-serif;
  --secondaryFontBold: "Tiempos Headline Bold", Arial, sans-serif;
  --primaryFontArabic: "GE SS Two", Arial, sans-serif;
  --secondaryFontArabic: "Laureen Zaza Display", Arial, sans-serif;
  --primaryClr: #2c443e;
  --primaryDClr: #2c443e;
  --primaryD2Clr: #2c443e;
  --primaryLClr: #42826b;
  --primaryL2Clr: #2c443e;
  --secondaryClr: #f6af95;
  --secondaryDClr: #ce8970;
  --secondaryLClr: #eddad2;
  --tertiaryClr: #e8e3db;
  --mainGradient: linear-gradient(90deg, var(--secondaryClr) 0%, var(--secondaryLClr) 100%);
  --headerHeight: 80px;
  --headerSmallHeight: 60px;
  --sectionMaxWidth: 1800px;
  --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);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.secondary-font {
  font-family: var(--secondaryFont);
}

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

strong {
  font-family: var(--primaryFontBold);
}
strong.secondary-font {
  font-family: var(--secondaryFontBold);
}

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 {
  background: var(--mainGradient);
  padding: 12px 30px;
  border-radius: 10px;
  font-size: var(--textSizeSm);
  color: var(--primaryClr);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.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 {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}
.primary-btn:hover::before {
  left: 100%;
}
.primary-btn:active {
  transform: translateY(-1px);
}

.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: var(--primaryDClr);
  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(--primaryClr);
  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: var(--primaryLClr);
  transition: 0.2s;
  cursor: pointer;
}

.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(--primaryD2Clr);
  border-radius: 50%;
  border: none;
  color: #fff;
  border: 1px solid rgba(221, 221, 221, 0.5254901961);
  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(--primaryLClr);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.scroll-to-top-btn:hover i {
  transform: translateY(-3px);
}
.scroll-to-top-btn.scrolled {
  opacity: 1;
  scale: 1;
}

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

*::-webkit-scrollbar-track {
  background: rgba(136, 136, 136, 0.1921568627);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: var(--primaryLClr);
  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(--primaryLClr);
}

.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(--primaryLClr);
  margin-bottom: 80px;
}
.nav-list .nav-item.active::before {
  height: 80px;
}
.nav-list .nav-item:hover {
  color: var(--primaryLClr);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--primaryD2Clr);
  z-index: 3;
  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: 70%;
  height: 70%;
  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 #ddd;
  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(--primaryClr);
}
.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(--primaryClr);
  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: 120px 80px;
  scroll-margin-top: 80px;
}
.section .section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section .section-header .section-titles .section-title,
.section .section-header .section-titles .section-title-2 {
  font-size: 44px;
}
.section .section-header .section-titles .section-title {
  color: var(--primaryLClr);
  font-family: var(--secondaryFont);
}
.section .section-header .section-titles .section-title-2 {
  color: var(--primaryClr);
}
.section .section-header .section-description {
  max-width: 550px;
  color: var(--primaryClr);
}
.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(--primaryLClr);
}

.section-small-title {
  font-size: 14px;
  color: var(--primaryLClr);
}

.link-btn {
  padding: 5px 15px;
  background-color: var(--primaryLClr);
  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;
  --primaryFont: var(--primaryFontArabic);
  --primaryFontBold: var(--primaryFontArabic);
  --secondaryFont: var(--secondaryFontArabic);
  --secondaryFontRegular: var(--secondaryFontArabic);
  --secondaryFontRegularBold: var(--secondaryFontArabic);
  --secondaryFontBold: var(--secondaryFontArabic);
}
#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) {
  .section {
    padding: 40px 32px;
    scroll-margin-top: 60px;
  }
  .section .top {
    flex-direction: column;
    gap: 0;
  }
  .section .top .dots-list {
    height: fit-content;
    margin-bottom: 20px;
  }
  .section .section-titles .section-title,
  .section .section-titles .section-title-2 {
    font-size: 34px !important;
  }
  .section .section-description {
    font-size: var(--textSizeSm2) !important;
  }
  .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 */
