.main-nav {
	display: none !important;
}

.header {
	margin-bottom: 54px;
}

.header .left {
	display: flex;
	align-items: center;
	gap: 30px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: 0.4px;
	color: inherit;
	text-decoration: none;
}

.logo-dot {
	background: rgba(2, 219, 115, 1);
	height: 44px;
	width: 44px;
	border-radius: 50%;
}

.brand-text {
	font-size: 36px;
	font-family: "montserrat";
}

.subbrand {
	font-size: 16px;
	color: #000;
	font-weight: 600;
}

.subbrand a {
	color: #000;
	text-decoration: underline;
	font-weight: 600;
}

.nav-link {
	color: #000;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
}

.mobile-nav-panel {
	display: none;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	position: relative;
}

.mobile-menu-btn span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #000;
	margin: 5px 0;
	transition: all 0.3s;
}

.cta-new-assignment {
	width: 306px;
	height: 60px;
	box-shadow: 0 2px 10px 2px rgba(205, 213, 204, 1);
	border-radius: 8px;
	background-color: rgba(187, 255, 179, 1);
	color: var(--dark);
	border: none;
	font-size: var(--font-size-lg);
	font-weight: 900;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.cta-new-assignment:hover {
	background-color: var(--cta-2);
}

.cta-new-assignment:active {
	background-color: var(--cta-3);
}

.cta-dashboard {
	width: 306px;
	height: 60px;
	box-shadow: 0 2px 10px 2px rgba(205, 213, 204, 1);
	border-radius: 8px;
	background-color: rgba(187, 255, 179, 1);
	color: var(--dark);
	border: none;
	font-size: var(--font-size-lg);
	font-weight: 900;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
  padding: 5px;
}

.cta-dashboard:hover {
	background-color: var(--cta-2);
}

.cta-dashboard:active {
	background-color: var(--cta-3);
}

.nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 100vw !important;
	gap: 20px;
}

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

.desktop-nav {
	display: inline-flex;
	align-items: center;
	gap: 20px;
}

.header.faq, .header.privacy, .header.terms {
  padding: 20px;
}

.header.collections .container {
  padding: 0px;
}

@media (max-width: 1630px) {
  .subbrand {
    font-size: 14px;
  }

  .nav-link {
    font-size: 12px;
  }
}

@media (max-width: 1430px) {
  .cta-new-assignment {
    width: 200px;
    height: 40px;
    font-size: 14px;
  }

  .cta-dashboard {
    width: 200px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .header .left {
    gap: 15px;
  }

  .subbrand {
    font-size: 12px;
  }

  .nav-link {
    font-size: 11px;
  }

  .right {
    gap: 12px;
  }

  .desktop-nav {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .subbrand {
    display: none;
  }

  .cta-new-assignment,
  .cta-dashboard {
    width: 170px;
    height: 38px;
    font-size: 13px;
  }
}

@media (max-width: 740px) {
  .header {
    margin-bottom: 30px;
  }

  .header .left {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .subbrand {
    display: block;
    font-size: 11px;
  }

  .brand-text {
    font-size: 28px;
  }

  .logo-dot {
    height: 34px;
    width: 34px;
  }

  .nav-row {
    gap: 10px;
  }

  .right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: auto;
  }

  .header .desktop-nav {
    display: none;
  }

  .header .mobile-menu-btn {
    display: block;
  }

  .header .cta-new-assignment,
  .header .cta-dashboard {
    display: none;
  }

  .mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(5px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
    padding: 20px;
  }

  .mobile-nav-panel.open {
    display: flex;
  }

  .nav-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .ct.nav-open {
    overflow: hidden;
  }

  .mobile-nav-panel .nav-link {
    display: block;
    font-size: 18px;
    text-align: center;
    padding: 8px 0;
  }

  .mobile-nav-panel .cta-dashboard,
  .mobile-nav-panel .cta-new-assignment {
    display: flex;
    width: auto;
    min-width: 200px;
    text-align: center;
    border-radius: 8px;
    height: auto;
    padding: 15px 24px;
    font-size: 16px;
  }

  .mobile-nav-panel .sign-up-login {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 24px;
    background: var(--cta);
    border-radius: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header {
    margin-bottom: 20px;
  }

  .subbrand {
    font-size: 10px;
  }

  .brand-text {
    font-size: 24px;
  }

  .logo-dot {
    height: 28px;
    width: 28px;
  }

  .brand {
    gap: 8px;
  }
}
