/* =========================
   NAVBAR
========================= */

.navbar-header {
  position: fixed;
  top: 22px;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.4s ease;
}

.navbar-header.navbar-scrolled {
  top: 0;
}

.navbar-header.navbar-hide {
  transform: translateY(-130%);
}

.navbar-container {
  width: calc(100% - 60px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.navbar-scrolled .navbar-container {
  border-radius: 0 0 12px 12px;
  padding: 8px 16px 8px 8px;
}

/* Logo */

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 70px;
  width: auto;
}

/* Menu */

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  padding: 16px 12px;
}

.navbar-menu a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 0;
  transform: translateX(-125%);
  transition: all 0.6s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.navbar-menu a:hover {
  /* color: #00a6a6; */
}

.navbar-menu a:hover::before,
.navbar-menu a.active::before {
  transform: translateX(0%);
}

.navbar-scrolled .navbar-menu a {
  color: #404040;
}

.navbar-scrolled .navbar-menu a::before {
  background-color: #404040;
}

/* Contact Button */

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-contact-btn {
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  height: 50px;
  width: 50px;
  display: flex;
}

.navbar-contact-btn:hover {
  transform: translateY(-2px);
}

.navbar-contact-btn svg {
  width: 18px;
  height: 18px;
  margin: auto;
  fill: #0e8a8a;
  stroke-width: 0;
}

/* Hamburger */

.navbar-toggle {
  width: 20px;
  height: 45px;

  background: transparent;
  border: none;

  cursor: pointer;

  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.navbar-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
}

.navbar-header.navbar-scrolled .navbar-container .navbar-toggle span {
  background-color: #404141;
}

/* Mobile Menu */

.navbar-mobile-menu {
  width: calc(100% - 60px);
  max-width: 1400px;

  margin: 10px auto 0;

  display: none;
  flex-direction: column;

  background: rgb(0 0 0 / 24%);

  backdrop-filter: blur(20px);

  border-radius: 20px;

  overflow: hidden;
}

.navbar-mobile-menu a {
  padding: 18px 25px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-mobile-menu a:last-child {
  border-bottom: none;
}

.navbar-mobile-menu.active {
  display: flex;
}

/* =========================
   SCROLLED VERSION
========================= */

.navbar-header.navbar-scrolled .navbar-container {
  background: rgb(255, 255, 255);

  backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .navbar-menu {
    display: none;
  }

  .navbar-contact-btn {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }
  /* 
  .navbar-logo img {
    height: 48px;
  } */

  .sec-1-hero {
    min-height: 750px;
  }
}

@media (max-width: 576px) {
  .navbar-container {
    padding-right: 16px;
  }

  .navbar-contact-btn span {
    display: none;
  }

  /* .navbar-logo img {
    height: 42px;
  } */
	
	.navbar-logo img {
		height: 60px;
	}
}
