.banner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 492px;
  margin-top: -64px;
  background: var(--banner-bg-url) center/cover no-repeat;
  position: relative;
}
html[lang="ar"] .banner {
  transform: scaleX(-1);
}
.banner--inner {
  box-sizing: border-box;
}
html[lang="ar"] .banner--inner {
  transform: scaleX(-1);
}
.banner .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-text-1);
  row-gap: 24px;
  flex: 1;
}

.banner .title-container .title-main {
  font-size: 52rem;
  line-height: 1;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.banner .title-container .title-sub {
  font-size: 16rem;
  color: var(--color-text-2);
}
.navbar {
  height: 64px;
  width: 100%;
  font-size: 16rem;
  backdrop-filter: blur(8px);
  background-color: var(--navbar-bg-color);
}
.navbar .flex--grid--layout {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-left {
  display: flex;
  column-gap: 32px;
  height: 100%;
}
.navbar .navbar-left li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  cursor: pointer;
  color: var(--font-color-4);
  transition: all 0.3s ease;
}
.navbar .navbar-left li.active {
  color: var(--color-text-1);
}
.navbar .navbar-left li.active::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--brandGreen);
}
.navbar-right {
  display: flex;
  align-items: center;
}
.navbar-right .iconfont-symbol {
  font-size: max(24rem, 20px);
  margin-right: 4rem;
}
.navbar-right a {
  display: flex;
  align-items: center;
  color: var(--color-text-1);
}
.navbar-right a:hover {
  color: var(--brandColor);
}
.social-link {
  position: relative;
}

.link-divide {
  width: 1px;
  height: 12px;
  margin: 0 16px;
  background-color: var(--divider-color-2);
}
