html,
body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

.display-hidden {
  display: none;
}

.spx {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  height: 0;
}

.spacer {
  background: var(
    --Maalem,
    linear-gradient(
      85deg,
      #01476b 0%,
      #1d6b93 30.65%,
      #4fc0cf 64.49%,
      #a2ff86 100%
    )
  );
  height: 5px;
  width: 100%;
}

.elementor-editor-active [data-aos] {
  visibility: visible;
  opacity: 1;
}

/* BG stripes */
.bg-stripes {
  position: absolute;
  top: -5%;
  /* left: -50%; */
  height: 100%;
  min-height: 100%;
  width: 100%;
  opacity: 1;
  transform: rotate(-35deg);
  transform-origin: center;
}

.bg-stripes .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 150%;
  background: transparent;
  opacity: 0;
  animation: linear infinite;
  animation-name: lines-moving;
  animation-duration: 10s;
}

@keyframes lines-moving {
  0% {
    top: -300%;
    opacity: 0.5;
  }

  50% {
    top: 0;
  }

  100% {
    top: 300%;
  }
}

/* Navbar */
.nav_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
}

.nav_logo {
  width: 30%;
}

.mob_logo .light-logo,
.nav_logo .light-logo {
  display: none;
}

:root[data-theme="dark"] .mob_logo .light-logo,
:root[data-theme="dark"] .nav_logo .light-logo {
  display: inline-block;
}

:root[data-theme="dark"] .mob_logo .dark-logo,
:root[data-theme="dark"] .nav_logo .dark-logo {
  display: none;
}

.nav_logo img {
  width: 160px;
}

.main_header .nav_links {
  width: 70%;
}

.nav_links > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_links > ul li {
  margin-left: 15px;
  border-radius: 30px;
  padding: 10px 20px;
  position: relative;
}

.nav_links > ul > li {
  color: #000;
}

:root[data-theme="dark"] .nav_links > ul > li {
  color: #fff;
}

.nav_links ul li button:hover::before,
.nav_links ul li a:hover::before,
.nav_links ul li.active > button::before,
.nav_links ul li.active > a::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    85deg,
    #01476b -113.97%,
    #1d6b93 -48.39%,
    #4fc0cf 24.01%,
    #a2ff86 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main_header {
  position: fixed;
  width: 100%;
  z-index: 99999;

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

:root[data-theme="dark"] .main_header {
  background: rgba(0, 0, 0, 0.1);
}

.navbar .nav-toggler,
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  width: 100%;
  color: #000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 1.3rem;
  color: #444;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #0e4a49;
}

.mob_header {
  display: none;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

:root[data-theme="dark"] .mob_header {
  background: rgba(0, 0, 0, 0.1);
}

.mob_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob_logo {
  width: 50%;
}

.mob_nav {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mob-nav-menu {
  /* display: none; */
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
}

.mob-nav-menu > label {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.navbar {
  width: 50%;
  /* position: static; */
}

@media (max-width: 1200px) {
  .desk_header {
    display: none;
  }

  .mob_header {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    padding: 20px;
  }

  .navbar {
    opacity: 1;
  }

  .navbar .nav-toggler,
  .navbar .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar .nav-toggler {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    /* z-index: 5; */
    opacity: 0;
    cursor: pointer;
  }

  .navbar .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
    /* z-index: 2; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar .mob-nav-menu label .hamburger-lines {
    position: relative;
    top: 20px;
    right: 20px;
  }

  .navbar .nav-toggler:checked ~ .navbar-container label {
    display: none;
  }

  .navbar .hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }

  .navbar-container .hamburger-lines .line {
    background: #000;
  }

  :root[data-theme="dark"] .navbar-container .hamburger-lines .line {
    background: #fff;
  }

  .navbar .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .mob-nav-menu .hamburger-lines .line1,
  .navbar .mob-nav-menu .hamburger-lines .line2,
  .navbar .mob-nav-menu .hamburger-lines .line3 {
    transition-delay: 0.3s;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 280px;
    min-width: 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    transition: transform 0.5s ease-in-out;
    overflow: auto;
    margin: 0;
    /* margin-left: -156px; */
    /* position: absolute; */
    /* display: none; */
    /* top: -20px; */
    /* transform: translateX(130%); */
    /* right: -20px; */
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .navbar .nav-toggler:checked ~ .mob-nav-menu {
    transform: translateX(0%);
    /* display: block; */
  }

  .navbar .nav-toggler:checked ~ .mob-nav-menu .hamburger-lines .line1,
  .navbar .nav-toggler:checked ~ .navbar-container .hamburger-lines .line1 {
    transform: rotate(45deg);
    background: #000;
  }

  .navbar .nav-toggler:checked ~ .mob-nav-menu .hamburger-lines .line2,
  .navbar .nav-toggler:checked ~ .navbar-container .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar .nav-toggler:checked ~ .mob-nav-menu .hamburger-lines .line3,
  .navbar .nav-toggler:checked ~ .navbar-container .hamburger-lines .line3 {
    transform: rotate(-45deg);
    background: #000;
  }

  .mob_logo img {
    width: 160px;
  }
}

@media (max-width: 500px) {
  .navbar-container .nav-toggler:checked ~ .logo {
    display: none;
  }
}

.nav_links button,
.menu-items button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
  font-size: 1.05rem;
  font-family: inherit;
}

.nav_links a,
.nav_links button {
  width: 100%;
  display: inline-block;
}

.nav_links > ul > li.nav-dropdown {
  padding: 0;
}

button.nav-menu-btn,
.nav-dropdown > a {
  padding: 10px 20px;
}

.nav_links > ul > li.nav-dropdown ul {
  min-width: 250px;
  margin-top: 8px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  transition: 200ms;
  transition-delay: 200ms;
  position: absolute;
  background: #d6d6d6;
  color: #000;
}

.nav_links > ul > li.nav-dropdown ul li.nav-dropdown ul {
  left: 50px;
  top: 45px;
}

:root[data-theme="dark"] .nav_links ul li.nav-dropdown ul {
  background: #fff;
  color: #000;
}

.nav_links > ul li ul li {
  position: relative;
  font-size: 14px;
  margin: 2px 0;
  width: 100%;
  display: inline-block;
  padding: 10px 20px;
  white-space: nowrap;
}

.nav_links ul > li.nav-dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}

.menu-items input[type="checkbox"] {
  display: none;
}

.menu-items label i {
  margin-left: 15px;
  transition: transform 400ms;
}

.menu-items li > input[type="checkbox"]:checked ~ label > i {
  transform: rotate(180deg);
}

.menu-items li.nav-dropdown > .dropdown-menu > ul > li:last-child {
  margin-bottom: 0;
}

.menu-items .dropdown-menu > ul {
  margin-top: 1.8rem;
}

.menu-items li > .dropdown-menu {
  height: 0;
  overflow: hidden;
  transition: height 400ms;
}

.menu-items li > input[type="checkbox"]:checked ~ .dropdown-menu {
  height: 100%;
}

.theme-btn {
  font-size: 20px;
}

:root .theme-btn i::before {
  content: "\f185";
}

:root[data-theme="light"] .theme-btn i::before {
  content: "\f186";
}

@media screen and (max-width: 1300px) {
  .nav_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
  }

  .nav_logo img {
    width: 160px;
  }
}

:root,
:root body,
:root body .elementor-kit-6 {
  --e-global-color-a537d78: #a2ff86;
  /* green */
  --e-global-color-b969b15: #ffffff;
  /* white */
  --e-global-color-9c2a1c9: #404242;
  /* gray 700 */
  --e-global-color-93f53b6: #9b9b9b;
  /* gray 600 */
  --e-global-color-1c31002: #afafaf;
  /* gray 500 */
  --e-global-color-3082137: #ececec;
  /* gray 50 */
  --e-global-color-e4b50b9: #001212;
  /* dark green */
  --e-global-color-2f5981f: #0e4a49;
  /* dark teal */
  --e-global-color-a42804d: #6ec1e4;
  /* blue */
}

:root[data-theme="light"],
:root[data-theme="light"] body,
:root[data-theme="light"] body .elementor-kit-6 {
  --e-global-color-a537d78: #08737f;
  --e-global-color-b969b15: #000000;
  /* white */
  --e-global-color-9c2a1c9: #ececec;
  /* gray 700 */
  --e-global-color-93f53b6: #afafaf;
  /* gray 600 */
  --e-global-color-1c31002: #9b9b9b;
  /* gray 500 */
  --e-global-color-3082137: #404242;
  /* gray 50 */
  --e-global-color-e4b50b9: #ededed;
  /* dark green */
  --e-global-color-2f5981f: #0e4a49;
  /* dark teal */
  --e-global-color-a42804d: #001212;
  /* blue */
}

/* Footer */
.sec8 {
  background-color: #000;
  background-size: cover;
  background-position: bottom;
  padding: 20px 20px 100px 20px;
}

.flexR {
  width: 100%;
  padding-top: 100px;
}

.flexR p {
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.footer_socials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.footer_socials .links {
  display: flex;
}

.copyright a,
.copyright a:hover {
  color: #a2ff86;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer_socials {
    flex-direction: row;
    align-items: end;
  }
}
