/* Header CSS Start */
.header {
	width: 100%;
	padding: 15px 30px;
	border-bottom: 1px solid #eee;
	font-family: "Lato", sans-serif;
	position: relative;
	z-index: 2;
}
.header .header-conatiner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1700px;
	margin: auto;
}
.header .brand {
	max-width: 192px;
}
.header .nav-links .nav-items {
	margin: 0 12px;
	text-decoration: none;
	color: #58595b;
	font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 500;
	text-transform: uppercase;
	transition: 1s hover;
	display: inline-block;
}

.header .nav-links .nav-items:hover {
	font-weight: 600;
}
.header .btn {
	padding: 6px 14px;
	border-radius: 4px;
	font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
	cursor: pointer;
	border: 1px solid #58595b;
	background: 0 0;
	margin-left: 10px;
}
.header .login-btn {
	color: #58595b;
	border: 1px solid #58595b;
	transition: 1s hover;
}
.header .login-btn:hover {
	background-color: #000;
	color: #fff;
}
.header .register-btn {
	background: #000;
	color: #fff;
	transition: 1s hover;
}
.header .register-btn:hover {
	background: #fff;
	color: #000;
	border: 1px solid #58595b;
}
.header .user-dropdown {
	display: flex;
	gap: 5px;
	align-items: center;
}
.header .user-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #464646;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	cursor: pointer;
}

.user-btn.dropdown-toggle::after {
	display: none;
}

.header .user-btn:hover {
	background: #000;
	color: #fff;
}
.header .user-btn .user-icon {
	font-size: 20px;
}
.header .hamburger {
	font-size: 25px;
	background-color: transparent;
	border-radius: 10px;
	color: #000;
	border: none;	
	outline: none;	
	text-decoration: none;
	/* iOS fixes */
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}
.header .hamburger:focus,
.header .hamburger:active {
	color: #000;
	outline: none;
}
.header .hamburger .fa-bars{
    color: #000;
}
.header .hamburger,
.header .right-menu-mobile,
.header .close-menu,
.username-mob {
	display: none;
}
/* Header CSS End */

/* Footer CSS Start */
/* FOOTER BASE */
.footer {
	font-family: Arial, sans-serif;
	color: white;
}
.footer.absolute {
    font-family: Arial, sans-serif;
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0;
}
/* TOP SECTION */
.footer .footer-top {
	background: #007c89;
	text-align: center;
	padding: 40px 20px;
}

.footer .footer-logo-wrap .logo {
	max-width: 300px;
}

.footer .brand .big-bar {
	font-size: 65px !important;
	line-height: 1;
	display: inline-block;
	transform: translateY(5px);
	/* adjust vertical alignment */
}

.footer .footer-logo-wrap {
	display: flex;
	align-items: center;
	/* <-- keeps all items in SAME line */
	justify-content: center;
	gap: 20px;
}

/* VERTICAL LINE EXACT LIKE YOUR DESIGN */
.footer .v-line {
	width: 4px;
	/* thickness */
	height: 50px;
	/* SAME height as logo */
	background: white;
	border-radius: 10px;
}

/* Text styling */
.footer .brand {
	font-size: 32px;
	color: white;
	margin: 0;
	font-weight: 600;
}

.footer .footer-text {
	margin: 20px;
	font-size: 15px;
	font-family: "Lato", sans-serif;
}

/* SOCIAL ICONS */
.footer .social-icons {
	margin-top: 20px;
	font-size: 20px;
}

.footer .social-icons i {
	margin: 0 10px;
	cursor: pointer;
}

.footer .footer-bottom {
	background: #21cedb;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 12px 30px;
	font-size: 13px;
	color: #fff;
}

.footer .footer-links a {
	text-decoration: none;
	color: white;
	margin: 0 5px;
}

.footer .footer-links span {
	opacity: 0.7;
}
/* Footer CSS End */

@media (max-width: 768px) {
	/* Header CSS Start */
	.header {
		padding: 15px;
	}
	.header .brand {
		max-width: 150px;
	}
	.header .nav-links,
	.header .right-menu {
		display: none;
	}
	.header .hamburger,
	.header .close-menu,
	.username-mob {
		display: block;
	}
	.header .nav-links.mobile {
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		display: flex;

		background: rgba(0, 0, 0, 0.25);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}

	.header .nav-links.mobile .nav-links-inner {
		position: fixed;
		right: 0;
		top: 0;
		background-color: #fff;
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 350px;
		height: 100%;
		border: 1px solid rgba(70, 70, 70, 0.5);
	}
	.header .close-menu {
		background-color: transparent;
		border: 0;
		margin-top: 15px;
		margin-right: 15px;
		margin-bottom: 15px;
		font-size: 20px;
	}
	.header .nav-links .nav-items {
		border-bottom: 1px solid rgba(70, 70, 70, 0.3);
		padding: 10px 15px;
		margin: 0px;
	}
	.header .nav-links .username-mob {
		padding: 10px 15px;
		cursor: none;
		text-decoration: none;
		background-color: #f3f3f3;
		color: #58595b;
		font-weight: 600;
	}
	.header .nav-links .nav-items.mobile-logout {
		width: 100%;
		color: red;
		font-weight: 600;
		padding-top: 0;
	}
	.header .right-menu-mobile {
		display: flex;
		justify-content: start;
		align-items: center;
		padding: 10px 0;
	}
	/* Header CSS End */

	/* Footer CSS Start */
	.footer .brand {
		font-size: 24px;
	}

	.footer .footer-top {
		padding: 30px 15px;
	}

	.footer .footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 10px;
		padding: 20px 15px;
	}

	.footer .footer-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer .footer-logo-wrap {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		flex-direction: column;
	}

	.footer .footer-logo-wrap .logo {
		max-width: 150px;
	}

	.footer .v-line {
		display: none;
	}
	/* Footer CSS End */
}
