/* new sub-menu */
nav .menu-item {
  /* color: white; */
  /* font-weight: 600; */
  transform-style: preserve-3d;
  flex-grow: 1;
  display: flex;
  flex-basis: var(--item-width);
  box-sizing: border-box;
  /* padding: 1em 1.5em; */
  justify-content: flex-start;
  perspective: 200px;
  /* letter-spacing: 0.5px; */
  min-height: 7.5em;
  min-height: 100px;
}

nav .menu-text,
nav .menu-text a {
  /* font-size: 1em; */
  /* color: white; */
  text-decoration: none;
  /* text-shadow: 0 1px 5px rgba(0,0,0,0.1); */
  transition: color 0.1s ease-out;
  text-align: center;
}

nav .menu-text a:hover {
  color: rgba(255, 255, 255, 0.5);
}

#sub-menu-holder {
  pointer-events: none;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
  padding: 1em;
  position: absolute;
  transition: opacity 2 ease-out;
  transform: rotateX(-25deg) scale(1);
  transform-origin: 50% 7em 0em;
  opacity: 0;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1), 0 2px 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  top: 3rem;
  border-radius: 10px;
  background: white;
  display: block;
  height: 300px;
  width: calc(var(--menu-width) * 1.5);
}

#sub-menu-container {
  position: absolute;
  z-index: -1;
  min-width: 100%;
  top: 2.5em;
  width: 100%;
}

.site-header:not(.nav_down) nav .menu-item:hover~#sub-menu-container #sub-menu-holder {
  animation: clipPath 0.25s ease-out 1 forwards;
  transition: clip-path 0.25s ease-out, left 0.15s ease-out, height 0.15s ease-out;
  opacity: 1;
  right: auto;
}

nav .menu-item:nth-of-type(1):hover~#sub-menu-container #sub-menu-holder,
nav .menu-item:nth-of-type(4):hover~#sub-menu-container #sub-menu-holder {
  clip-path: inset(0 28.75em 0 0 round 10px);
  height: 14em;
}

nav .menu-item:nth-of-type(2):hover~#sub-menu-container #sub-menu-holder,
nav .menu-item:nth-of-type(3):hover~#sub-menu-container #sub-menu-holder {
  clip-path: inset(0 15em 0 0 round 10px);
}

nav .menu-item:nth-of-type(1):hover~#sub-menu-container #sub-menu-holder {
  left: calc(-9em + -1px);
}

nav .menu-item:nth-of-type(2):hover~#sub-menu-container #sub-menu-holder {
  left: calc(-6.5em + -1px);
  height: 18.75em;
}

nav .menu-item:nth-of-type(3):hover~#sub-menu-container #sub-menu-holder {
  left: calc(2.75em + 1px);
  height: 24.5em;
}

nav .menu-item:nth-of-type(4):hover~#sub-menu-container #sub-menu-holder {
  left: calc(19em + 1px);
}

.menu-item .sub-menu {
  background: #fff;
  position: absolute;
  top: 90px;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: .125rem solid var(--primary-color);
  min-width: 27.5em;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 999;
  margin-left: -5em;
  clip-path: inset(0 10em 10em 15em);
  opacity: 0;
  font-weight: initial;
  padding: 1.5em;
  transition: all 0.25s ease-out, opacity 0.25s ease-in, margin-left 0.25s ease-out, clip-path 0.15s ease-out;
}

.menu-item .sub-menu.double {
  min-width: 41.25em;
  height: 18.75em;
  display: grid;
  grid-template-columns: 54% 50%;
}

.menu-item .sub-menu.triple {
  min-width: 41.25em;
  height: 25em;
  display: grid;
  padding: 1.5em 2.5em;
  grid-template-columns: 55% 45%;
}

.site-header:not(.nav_down) .menu-item:hover .sub-menu {
  pointer-events: all;
  clip-path: inset(0 0 0 0);
}

.menu-text:after {
  transition: bottom 0.25s ease-out, opacity 0.01s ease-out 0.01s;
  opacity: 0;
  content: '';
  position: absolute;
  pointer-events: none;
  bottom: -5em;
  left: calc(50% - 10px);
  border-color: transparent transparent var(--primary-color) transparent;
  border-width: 10px;
  border-style: solid;
}

.site-header:not(.nav_down) .menu-item:hover .menu-text:after {
  bottom: .5em;
  opacity: 1;
  transition: bottom 0.25s ease-out, opacity 0.01s ease-out 0.15s;
}

.site-header:not(.nav_down) .menu-item:hover .sub-menu {
  opacity: 1 !important;
  margin-left: 0;
}

.site-header:not(.nav_down) .menu-item:hover~#sub-menu-container #sub-menu-holder {
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, clip-path 0.25s ease-out;
}

@keyframes clipPath {
  0% {
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg) scale(1);
    top: 4.5em;
    opacity: 1;
  }
}

/* Menu specific */
.menu-item .title {
  font-weight: 500;
  color: rgb(44 70 86);
  margin: 0 0 0.25em 0;
}

.menu-item .icon-box * {
  transition: all 0.1s ease-out;
  position: relative;
}

.menu-item .icon-box.space {
  margin-bottom: 1.25em;
}

.menu-item .icon-box.flat {
  height: 1.5em;
  margin-bottom: 0.5em;
}

.menu-item .icon,
.menu-item .text {
  float: left;
  color: #9ea9af;
}

.menu-item .icon {
  color: rgb(44 70 86);
  font-size: 1.25em;
  margin: 0 1em 0 0;
}

.menu-item .icon-box {
  cursor: pointer;
}

.menu-item .icon-box {
  /* float: left; */
  width: 100%;
  margin: 0;
  height: 4em;
  row-gap: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
}

.menu-item .icon-box .icon img {
  width: 100%;
  margin: 0;
  height: 3.75rem;
}

.menu-item .icon-box .text i {
  clip-path: inset(0 100% 0 0);
  font-size: 0.75em;
  position: relative;
  top: -1px;
}

/* Base Icon Style */
.icon-box.gb .icon i:before {
  background: linear-gradient(45deg, #0c86ef, #0cef9b);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  padding-left: 1px;
}

/* Define Icon Colors */
.icon-box.gb.a .icon i:before {
  background-image: linear-gradient(45deg, #2ca7ff 35%, #31d078 75%);
}

.icon-box.gb.b .icon i:before {
  background-image: linear-gradient(45deg, #f32b2b 35%, #efbe0c 75%);
}

.icon-box.gb.c .icon i:before {
  background-image: linear-gradient(45deg, #7176ff 35%, #b26cea 75%);
}

.icon-box.gb.d .icon i:before {
  background-image: linear-gradient(45deg, #79c76f 35%, #bed09b 75%);
}

.icon-box.gb.e .icon i:before {
  background-image: linear-gradient(45deg, #6082ff 35%, #ff5dbe 75%);
}

.icon-box.gb.f .icon i:before {
  background-image: linear-gradient(45deg, #808080 35%, #bbbbbb 75%);
}

.menu-item .icon-box:hover .text i {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.1s ease-out;
}

.menu-item .icon-box:hover .icon,
.menu-item .icon-box:hover .title,
.menu-item .icon-box:hover .sub-text {
  color: rgb(89 110 123);
}

#sub-menu-bottom {
  background: #d4e3ea70;
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: all 0.25s ease-out, height 0.1s ease-out;
  left: 0;
  width: 100%;
  height: 5em;
}

nav .menu-item:nth-of-type(3).highlight:hover~#sub-menu-container #sub-menu-holder #sub-menu-bottom {
  height: 7.5em;
}

.bottom-container {
  grid-area: 4 / -3 / 4 / 3;
  padding-top: 1.5em;
  color: #3a5260;
  font-weight: 500;
}

.top-container {
  grid-area: 1 / -3 / 1 / 3;
  margin: 0 0 2em 0;
}

.bottom-container a {
  float: right;
  background: linear-gradient(90deg, #8ea4b166, #a3b5bf6b);
  padding: 0.5em 1em;
  border-radius: 100px;
  position: absolute;
  color: #2c4655bf;
  font-weight: bold;
  text-decoration: none;
  right: 1.5em;
  bottom: 1.5em;
}

.bottom-container a:hover {
  background: linear-gradient(90deg, #8ea4b136, #a3b5bf33);
}

.sub-menu h3 {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgb(44 70 86 / 68%);
  margin: 0.75em 0;
}

.sub-menu .box a {
  width: 100%;
  float: left;
  font-size: 1em;
  line-height: 1.75em;
  color: #7a8a94;
  text-decoration: none;
}

.sub-menu .box a:hover {
  color: rgb(44 70 86);
}

.box {
  margin: 0 0 3em 0;
}

.icon.big i {
  font-size: 1.25em;
  top: 0.2em;
}

nav .menu-item.highlight:hover~#sub-menu-container #sub-menu-holder #sub-menu-bottom {
  opacity: 1;
}

#info-box {
  position: absolute;
  bottom: 2em;
  right: 2em;
}

#info-box ul {
  list-style: none;
}

#info-box a {
  color: white;
  text-decoration: none;
  text-align: right;
  padding: 0.5em 0;
  transition: all 0.1s ease-out;
  display: block;
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: 1px;
}

#info-box a:hover {
  color: rgba(255, 255, 255, 0.5);
}





/* old */



.layout_root {
  display: flex;
  flex-direction: column;
}

.header-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100px;
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100px;
  background: transparent;
  width: 100%;
  justify-content: center;
  margin: auto;
  /* max-width: 81.991vw; */
  position: fixed;
  z-index: 4;
  margin-top: var(--navbar-margin-top);
}

.site-header {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

/* الجزئيْن 2 & 4 */
.cap {
  flex: none;
  width: 167px;
  height: 100%;
}

.cap .fill-cap {
  fill: var(--primary-color);
}

.cap--left {
  color: var(--primary-color);
}

.cap--right {
  color: var(--primary-color);
}


/* الجزء الأوسط المرن (part 3 + الأجزاء المسطحة الواحدية 1&5 مخفية باللون الأبيض من الخلف) */
.fill {
  flex: auto;
  background: #fff;
  border-bottom: 2.6px solid var(--primary-color);

  /* نفس لون cap */
  height: 100%;
  margin-left: -1px;
  margin-right: -1px;
  transition: width 1.5s cubic-bezier(1, 0, 1, .6), flex 1.5s cubic-bezier(1, 0, 1, .6);
  transition: width 1s cubic-bezier(1, 0, 1, .6), flex 1s cubic-bezier(1, 0, 1, .6);
  transition: width 0.5s cubic-bezier(1, 0, 1, .6), flex 0.5s cubic-bezier(1, 0, 1, .6);
  transition: width 0.334s cubic-bezier(1, 0, 1, .6), flex 0.334s cubic-bezier(1, 0, 1, .6);
  transition: flex 0.5s ease, width 0.5s ease, background-image 0.5s ease;
  /* transition: flex 0.5s cubic-bezier(0.25, -18.54, 0.45, 0.94), width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-image 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  /* thos */
  /* will-change: width, flex, background-image; */
}

.fill.fill-unset {
  flex: unset;
}

/* المحتوى */
.header__br {
  position: absolute;
  top: 0;
  height: 8px;
  width: 100%;
  display: block;
  background: #fff;
}

.header__bg {
  position: absolute;
  max-width: 81.991vw;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: center;
  /* transition: width 1.5s cubic-bezier(1, 0, 1, .6), flex 1.5s cubic-bezier(1, 0, 1, .6); */
  /* transition: width 1s cubic-bezier(1, 0, 1, .6), flex 1s cubic-bezier(1, 0, 1, .6); */
  /* transition: width 0.5s cubic-bezier(1, 0, 1, .6), flex 0.5s cubic-bezier(1, 0, 1, .6); */
  /* transition: width 0.334s cubic-bezier(1, 0, 1, .6), flex 0.334s cubic-bezier(1, 0, 1, .6); */
  /* transition:
    flex 0.5s ease,
    width 0.5s ease; */
  /* will-change: width, flex; */
  justify-content: center;
  z-index: 2;
  width: 100%;
}

.header__content {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64.421vw;
  transform: translateX(-50%);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  padding: 0 1.5rem;
  display: grid;
  gap: 4rem;
  grid-template-areas: "left logo right";
  grid-template-columns: 1fr auto 1fr;
}

.header__scroll {
  z-index: 2;
  top: 0;
  align-items: center;
  background-color: #fff;
  display: flex;
  height: auto;
  justify-content: center;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  visibility: hidden;
  width: 2.8125rem;

  --logo-translate: 0px;
  --logo-scale: 1;

  /* display: inline-block; */
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
  /* thos */
  /* will-change: transform, opacity; */

  transform:
    translate3d(calc(-50% + var(--logo-translate)), 0, 0) scale(var(--logo-scale));
}

.header__scrolllogo {
  width: 100%;
  height: auto;
}

.header__content .nav:first-child {
  grid-area: left;
}

.header__content .nav:last-child {
  grid-area: right;
  margin-left: auto;
}

.nav .nav__list {
  list-style: none;
  display: flex;
  padding-left: 0;
  font-size: 1.125rem;
  font-size: 1rem;
  margin-bottom: 0;
  align-content: center;
  align-items: center;
}

.nav .nav__list li {
  margin-right: 2.5rem;
  color: var(--color-secondary);
  outline: 0;
  outline: none !important;
  text-decoration: none !important;
}

.nav .nav__list li:last-of-type {
  margin-right: 0;
}

.nav .nav__list li .header-nav-link {
  color: var(--color-secondary);
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: 'Montserrat', system-ui, "helvetica", "arial", sans-serif;
  gap: 0.625rem;
  justify-content: center;
  /* line-height: 130%; */
  position: relative;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* thos */
  /* will-change: opacity, transform; */
}

.nav_down .nav .nav__list li .header-nav-link {
  transition:
    opacity 0.3s cubic-bezier(1, 0, 1, .6),
    transform 0.3s cubic-bezier(1, 0, 1, .6);
  /* transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}

.nav .nav__list li a {
  color: var(--color-secondary);
  font-family: 'Montserrat', system-ui, "helvetica", "arial", sans-serif;
  outline: 0 !important;
  text-decoration: none !important;
}

.nav .nav__list li .header-nav-link a {
  color: inherit;
  outline: 0 !important;
  text-decoration: none !important;
}

.nav .nav__list li .header-nav-link .nav-link-svg {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-1.25rem, -50%);
  transition-duration: .334s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(.2, 0, 0, 1);
  width: .25rem;
}

.nav .nav__list li .header-nav-link:hover .nav-link-svg {
  opacity: 1;
  transform: translate(-0.9375rem, -50%);
}

.nav.nav--right .nav__list {
  list-style: none;
  display: flex;
  margin-left: 0;
}

.nav.nav--right .nav__list li {
  margin-right: 2.5rem;
}

.nav.nav--right .nav__list li:last-child {
  margin-right: 0;
}

.svg-header {
  /* width: 167px; */
  height: 100%;
}


.header__content .logo {
  width: auto;
  height: 57px;
  grid-area: logo;
  transition:
    transform 0.5s cubic-bezier(1, 0, 1, .6),
    opacity 0.3s cubic-bezier(1, 0, 1, .6);
  /* thos */
  /* will-change: transform, opacity; */
}

.header__content .logo svg {
  width: 100%;
  height: 100%;
}

.st0 {
  background: #000
}

.st1 {
  background: #fff
}

.main-content {
  flex: 1 1 auto;
  min-height: 100svh;
  position: relative;
  width: 100%;
  z-index: 2;
}

.footer {
  background-color: #0b0e0e;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 3;
}

.footer.footer-light {
  --background-color: #fff;
  --text-color: rgba(13, 18, 18, .7);
  --link-color: #0d1212;
  --top-border-color: rgba(91, 130, 121, .2);
}

.footer .footer-wrapper {
  align-items: center;
  background-color: transparent !important;
  display: flex;
  flex-direction: column;
  padding-bottom: 2.5rem;
  padding-top: 3.75rem;
  position: relative;
  transform-origin: top center;
  width: 100%;
  z-index: 2;
  color: var(--color-1);
}

@media (min-width: 1080px) {
  .footer .footer-wrapper {
    padding: 3.4375rem 0 0;
  }
}

.footer .footer-wrapper .footer-wrapper-bg {
  background-color: var(--background-color);
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  transform-origin: center top;
  width: 100%;
  z-index: -1;
  border-radius: 0px 0px 2.25rem 2.25rem;
}

.footer .footer-wrapper .footer-wrapper-bg::before {
  --top-border-color: rgba(23, 25, 63, 0.20);
  background-color: var(--top-border-color);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0px;
  transform: translate(-50%);
  width: calc(100% - 3rem);
}

@media (min-width: 1080px) {
  .footer .footer-wrapper .footer-wrapper-bg::before {
    width: calc(100% - 2rem);
  }
}

.footer .footer-wrapper .footer-content {
  --side-padding: 0.625rem;
  --max-width: 100%;
  /* display: grid; */
  grid-template-areas:
    "sitemap"
    "form";
  grid-template-rows: repeat(2, auto);
  margin-bottom: 4rem;
  max-width: var(--max-width);
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  width: 100%;
  gap: 4rem;
  margin-inline: auto;
  color: var(--color-1);
}

.footer .footer-wrapper .footer-content ul {
  list-style: none;
  margin-bottom: 0;
}

.footer .footer-wrapper .footer-content li {
  /* display: grid; */
  font-size: 1rem;
  margin-bottom: 30px;
  font-family: 'Montserrat Alternates';
}

.footer .footer-wrapper .footer-content li:last-of-type {
  margin-bottom: 0px;
}

.footer .footer-wrapper .footer-content .svg-logo1 {
  max-width: 263px;
  width: 100%;
  /* display: grid; */
  height: auto;
  fill: var(--footer-svg-fill);
}

@media (min-width: 768px) {
  .footer .footer-wrapper .footer-content {
    --side-padding: 0.9375rem;
    --max-width: 70rem;
  }
}

@media (min-width: 1080px) {
  .footer .footer-wrapper .footer-content {
    --side-padding: 1.25rem;
    --max-width: 107.8125rem;
  }
}

@media (min-width: 768px) {
  .footer .footer-wrapper .footer-content {
    margin-bottom: 3.75rem;
  }
}

@media (min-width: 1080px) {
  .footer .footer-wrapper .footer-content {
    grid-template-areas: "sitemap whereToRide form";
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    justify-content: flex-start;
    margin-bottom: 5.625rem;
    gap: 0px;
  }
}


.footer .footer-wrapper .footer-divider {
  display: block;
  width: 100%;
  margin: 0px auto;
  --divider-color: rgba(91, 130, 121, .2);
}

.footer .footer-wrapper .footer-divider {
  margin-bottom: 0px;
  margin-top: 0px;
  width: 98%;
}


.footer-divider .footer-wrpr-dvd {
  --divider-color: rgba(23, 25, 63, 0.20);
  background-color: var(--divider-color);
  height: 1px;
  width: 100%;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px auto;
}

@media (min-width: 768px) {
  .footer-divider .footer-wrpr-dvd {
    max-width: 108rem;
  }
}

.footer .footer-wrapper .footer-content-bottom {
  display: block;
  width: 100%;
}

@media (min-width: 1080px) {
  .footer .footer-wrapper .footer-content-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1440px) {
  .footer .footer-wrapper .footer-content-bottom {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.footer .footer-wrapper .footer-content-bottom.footer-cnt-btm-light {
  --text-color: #34484a;
  --bg-color: #fff;
}

.footer .footer-wrapper .footer-content-bottom.footer-cnt-btm-container {
  --side-padding: 0.625rem;
  --max-width: 100%;
  max-width: var(--max-width);
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .footer .footer-wrapper .footer-content-bottom.footer-cnt-btm-container {
    --side-padding: 0.9375rem;
    --max-width: 70rem;
  }
}

@media (min-width: 1080px) {
  .footer .footer-wrapper .footer-content-bottom.footer-cnt-btm-container {
    --max-width: 108rem;
    --side-padding: 2.5rem;
  }
}

.footer-content-bottom .footer-btm-container {
  padding: 0px calc(-0.25rem + (0.125 * (-2.375rem + (0.5 * 100svw))));
}

@media (min-width: 768px) {
  .footer-content-bottom .footer-btm-container {
    width: calc(4.5rem + (0.875 * (-5.25rem + min(68.125rem, -1.875rem + 100svw))));
    margin: 0px auto;
    padding: 0px;
  }
}

@media (min-width: 1080px) {
  .footer-content-bottom .footer-btm-container {
    margin-left: 2.5rem;
    width: auto;
    padding: 2rem 0px;
    margin: auto;
  }
}

@media (min-width: 1440px) {
  .footer-content-bottom .footer-btm-container {
    margin-left: 0px;
    margin: auto;
  }
}

.footer-content-bottom .footer-btm-container .ul-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

@media (min-width: 1080px) {
  .footer-content-bottom .footer-btm-container .ul-data {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin: 0px;
    gap: 3rem;
  }
}

.footer-content-bottom .footer-btm-container .ul-data li {
  margin: 0px;
  font-family: 'Montserrat Alternates';
  font-size: 1rem;
}


.footer .footer-copyRight {
  --copyright-color: #d3e4df;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1080px) {
  .footer .footer-copyRight {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 2.5rem;
  }
}

.footer .footer-copyRight {
  bottom: 3.75rem;
  position: absolute;
  z-index: 1;
}

@media (min-width: 1080px) {
  .footer .footer-copyRight {
    bottom: 2.125rem;
  }
}

.footer .footer-scrollContainer {
  flex-grow: 1;
  height: 100%;
  min-height: 23.75rem;
  position: relative;
  width: 100%;
  z-index: -1;
}

@media (min-width: 1080px) {
  .footer .footer-scrollContainer {
    min-height: 22.5rem;
  }
}


.footer .footer-scrollContainer .footer-scrollContainer-content {
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  opacity: 1;
  position: absolute;
  top: 0px;
  width: 100%;
  overflow: hidden;
}

.footer .footer-scrollContainer .footer-scrollContainer-content svg {
  /* height: 100%; */
  width: 100%;
  max-width: 200px;
  height: auto;
  overflow: hidden;
}


.footer li.spec-data-item {
  font-size: 1rem;
  justify-content: space-between;
  /* -webkit-text-decoration: none solid #202020; */
  /* text-decoration: none solid #202020; */
  width: 100%
}

.footer li.spec-data-item .title {
  display: flex;
  flex: 0 1 45%;
  letter-spacing: 1.2px;
  /* line-height: 21.76px; */
  /* text-align: left; */
  /* text-transform: uppercase */
}

.footer li.spec-data-item .social {
  flex: 1 1 0;
  font-weight: 300;
  letter-spacing: .2px;
  line-height: 21.28px;
  text-align: center
}

.footer li.spec-data-item .social .icon {
  margin-right: 1rem;
}

.footer li.spec-data-item .social .icon:last-child {
  /* margin-right: 0; */
}

.footer li.spec-data-item .social .icon .fillColor {
  fill: var(--color-1);
}

.slide-active {
  opacity: 1;
  transform: translateX(0);
}

.slide-inactive {
  opacity: 0;
  transform: translateX(100%);
}

.nav-underline {
  position: relative;
}

.nav-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1f2937;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.2s ease-out;
}

.nav-underline:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: all 0.4s ease-out;
}

.horizontal-text {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  transition: all 0.4s ease-out;
}


.slider-arrow {
  width: 5rem;
  height: 2.5rem;
  border-radius: 0.875rem;
  background: var(--primary-color);
  outline: 0;
  /* box-shadow: none; */
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 5%;
  z-index: 3;
}

.slider-arrow.right {
  right: 5%;
}

.slider-arrow.left {
  left: 5%;
}

.slider-arrow svg {
  width: 31.25%;
  height: 50%;
  fill: #fff;
  stroke: #fff;
  stroke-miterlimit: 10;
}


.container {
  --side-padding: 0.625rem;
  --max-width: 100%;
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 5rem; */
  /* justify-content: center; */
  /* margin-inline: auto; */
  max-width: var(--max-width);
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  padding-top: var(--c-pt);
  padding-bottom: var(--c-pb);
}

@media (min-width: 768px) {
  .container {
    --side-padding: 0.9375rem;
    --max-width: 70rem;
  }
}

@media (min-width: 1080px) {
  .container {
    --side-padding: 4.25rem;
    --max-width: 108rem;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}


.my-title {
  font-size: 1.75rem;
  font-family: 'Montserrat';
  font-weight: bold;
  color: var(--primary-color);
}

.my-subtitle {
  font-size: 1.9375rem;
  font-family: 'Montserrat Alternates';
  font-weight: 500;
  color: var(--color-2);
  margin-top: 2rem;
}

.blck {
  font-size: .875rem;
  font-family: 'Montserrat Alternates';
  font-weight: 400;
  color: var(--color-2);
  line-height: 2.5;
}

.sp-m-b {
  margin-bottom: 5rem;
}

.bg {
  opacity: var(--bg-c-opacity);
  background: var(--bg-c-value);
}

.inset-0 {
  inset: 0px;
}


#bg-vid {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}



.footer-scrollContainer-content svg path#pathLogo {
  fill: var(--b-footer-l-c);
  stroke: var(--b-footer-l-c);

}

.footer-scrollContainer-content.hidden svg path#pathLogo {
  stroke-width: 1px;
  stroke-dashoffset: -1788px;
  fill-opacity: 0;
  transition: stroke-dashoffset 0.6s linear 0.5s, fill-opacity 1s ease;

}

.footer-scrollContainer-content svg path#pathLogo {
  fill-opacity: 1;
  stroke-dasharray: 1788px;
  stroke-dashoffset: 0px;
  transition: stroke-dashoffset 2s linear, fill-opacity 3s ease 1.5s;

}

a {
  text-decoration: none !important;
}


.BaseMask_root__Xlmsj .BaseMask_mask__DfvkG {
  contain: strict;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0
}
