@charset "utf-8";

/******* Fonts Import Start **********/
@import url('https://fonts.googleapis.com/css2?family=Gabarito&display=swap');
/******* Common Element CSS Start ******/
* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
  }
  body {
    font-size: 16px;
    color: var(--text-color);
    background-size: 100% ;
    -webkit-font-smoothing: antialiased;
  }

.container {  max-width: 1440px; margin: 0 auto; transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.5s; }

body {
  background-color: #ffffff;
  color: #1a1a1a;
}

:root {
  --body-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.88);
  --side-nav: #f4f4f4;
  --text-color: #1a1a1a;
  --search-bar: #f4f4f4;
}

body.dark {
  --body-color: #000000;
  --nav-color: #000000;
  --side-nav: #000000;
  --text-color: #ffffff;
  --search-bar: #000000;
  background-color: #000000;
  color: #ffffff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  z-index: 100;
  transition: cubic-bezier(0.19, 1, 0.22, 1) 1.5s all;
  background-color: var(--nav-color);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(10px);
}

nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ff1a1a;
  box-shadow: 0 0 3px #ff1a1a, 0 0 7px rgba(255, 26, 26, 0.65), 0 0 14px rgba(255, 26, 26, 0.45);
  animation: neon-slide-in 1s cubic-bezier(0.075, 0.82, 0.165, 1) both,
             red-neon-pulse 2.4s ease-in-out 1s infinite;
}

@keyframes neon-slide-in {
  from {
    transform: translateY(-950px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes red-neon-pulse {
  0%, 100% {
    opacity: 0.65;
  }
  50% {
    opacity: 0.85;
  }
}

nav .nav-bar {
  position: relative;
  height: 100%;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.5s;
  animation: navbar-anim cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

@keyframes navbar-anim {
  from {
    transform: translateY(-950px);
    opacity:0;
  } 
  to {
    transform: translateY(0px);
    opacity:1;
  }
}

nav .nav-bar .sidebarOpen {
  color: var(--text-color);
  font-size: 25px;
  padding: 15px;
  cursor: pointer;
  display: none;
}

nav .nav-bar .logo a {
  font-size: 20px;
  font-family: Gabarito;
  font-weight: 900;
  color: var(--text-color);
  text-decoration: none;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.5s;
}

nav .nav-bar .logo img {
  display: block;
  width: auto;
  height: 95px;
  object-fit: contain;
}

.menu .logo-toggle {
  display: none;
}

.nav-bar .nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-bar .nav-links .navhover {
  margin: 0 5px;
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links .navhover a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  padding: 5px 10px;
  line-height: 1;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.5s;
}

body.dark nav .nav-links .navhover a,
body.dark nav .logo a,
body.dark nav .sidebarOpen,
body.dark nav .siderbarClose,
body.dark nav .dark-light i,
body.dark nav .searchToggle i,
body.dark nav .dropdown-menu .dropdown-item {
  color: #ffffff;
}

body.dark nav .dropdown-menu {
  background-color: #000000;
}

nav .dropdown-menu {
  display: block;
  top: 100% !important;
  bottom: auto;
  min-width: 220px;
  margin-top: 20px !important;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background-color: var(--nav-color);
  box-shadow: 0 14px 35px rgba(9, 9, 12, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 30px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--nav-color);
}

nav .nav-links .dropdown-toggle::after {
  height: 2px;
  border: 0;
  margin: 0;
  background-color: currentColor;
}

nav .nav-links .dropdown-toggle::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

nav .nav-links .dropdown-toggle[aria-expanded="true"]::before {
  transform: translateY(-25%) rotate(225deg);
}

nav .dropdown-menu .dropdown-item {
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--text-color);
  transition: background-color 0.2s ease, color 0.2s ease;
}

nav .dropdown-menu .dropdown-item:hover {
  color: #ffffff;
  background-color: #ff1a1a;
}

body.dark nav .nav-links .navhover > a:hover,
body.dark nav .dropdown-menu .dropdown-item:hover,
body.dark nav .logo a:hover,
body.dark nav .dark-light:hover i,
body.dark nav .searchToggle:hover i {
  color: #ff1a1a;
}

body.dark nav .dropdown-menu .dropdown-item:hover {
  color: #ffffff;
}

.nav-links li a a:hover:after,
.nav-links li a:hover:after {
	transform: scalex(1);
}

.nav-links li a:after,
.nav-links li a:after {
	transition: 0.25s ease;
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentcolor;
	transform: scalex(0);
	position: absolute;
	bottom: -2px;
	left: 0;
}

nav .nav-links .navhover > a:hover,
nav .dropdown-menu .dropdown-item:hover,
nav .logo a:hover,
nav .dark-light:hover i,
nav .searchToggle:hover i {
  color: #ff1a1a;
}

.nav-bar .darkLight-searchBox {
  display: flex;
  align-items: center;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.dark-light i,
.searchToggle i {
  position: absolute;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-light i.sun {
  opacity: 0;
  pointer-events: none;
}

.dark-light.active i.sun {
  opacity: 1;
  pointer-events: auto;
}

.dark-light.active i.moon {
  opacity: 0;
  pointer-events: none;
}

.searchToggle i.cancel {
  opacity: 0;
  pointer-events: none;
}

.searchToggle.active i.cancel {
  opacity: 1;
  pointer-events: auto;
}

.searchToggle.active i.search {
  opacity: 0;
  pointer-events: none;
}

.searchBox {
  position: relative;
}

.searchBox .search-field {
  position: absolute;
  bottom: -85px;
  right: 5px;
  height: 45px;
  width: 230px;
  display: flex;
  align-items: center;
  background-color: var(--nav-color);
  padding: 3px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.searchToggle.active~.search-field {
  bottom: -74px;
  opacity: 1;
  pointer-events: auto;
}

.search-field::before {
  position: absolute;
  right: 14px;
  top: -4px;
  height: 12px;
  width: 12px;
  background-color: var(--nav-color);
  transform: rotate(-45deg);
  z-index: -1;
}

.search-field input {
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 100;
  background-color: var(--side-nav);
}

body.dark .search-field input {
  color: var(--text-color);
}

.search-field i {
  position: absolute;
  color: var(--text-color);
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

body.dark .search-field i {
  color: var(--text-color);
}

@media (max-width: 790px) {
  nav .nav-bar .sidebarOpen {
      display: block;
  }

  .menu {
      position: fixed;
      height: 9999%;
      left: -100%;
      top: 0;
      padding: 20px;
      background-color: var(--side-nav);
      z-index: 100;
      transition: all 0.4s ease;
      width: 220px;
      box-shadow: 4px 0 18px rgba(0, 0, 0, 0.12);
  }

  nav.active .menu {
      left: 0;
  }

  nav.active .nav-bar .navLogo a {
      opacity: 0;
      transition: all 0.3s ease;
  }

  .menu .logo-toggle {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
  }

  .logo-toggle .siderbarClose {
      color: var(--text-color);
      font-size: 24px;
      cursor: pointer;
  }

  .nav-bar .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding-top: 190px;
      height: auto;
      text-align: center;
  }

  .nav-bar .nav-links .navhover {
      width: 100%;
      display: block;
      margin: 0;
      height: auto;
      text-align: center;
  }

  .nav-links .navhover a {
      display: block;
      width: 100%;
      font-size: 18px;
      line-height: 1.4;
      padding: 12px 10px;
      opacity: 1;
      visibility: visible;
      color: var(--text-color);
      text-align: center;
  }

      .nav-links .dropdown-menu {
        min-width: 180px;
        width: 180px;
        padding: 4px;
        margin-top: 20px !important;
      }

      .nav-links .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 6px 8px;
      }
}

@media (max-width: 1440px) {
  nav .nav-bar {
    max-width: 840px;
  }
}

@media (max-width: 900px) {
  nav .nav-bar {
    max-width: 700px;
  }
  .nav-links .navhover a {
    font-size: 20px;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.5s;
  }
}

@media (max-width: 720px) {
  nav .nav-bar {
    max-width: 500px;
  }
}

@media (max-width: 520px) {
  nav .nav-bar {
    max-width: 320px;
  }
}

.content {
  display: flex;
  align-items: center;
  margin: 500px 0;
  justify-content: center;
  font-family: Gabarito;
}