@import url("https://fonts.googleapis.com/css2?family=Island+Moments&family=Plus+Jakarta+Sans:wght@400;600;800&family=Poppins&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,500;1,700&display=swap");

* {
	font-family: "Plus Jakarta Sans";
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

#navbar {
	padding: 0 20px;
	position: fixed;
	z-index: 9999999;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	transition: 0.3 all ease-in;
	background-color: white;
}

body {
	position: relative;
}

#navbar .links {
	padding: 10px;
	padding-top: 50px;
}

#navbar .links a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	font-size: 1.1rem;
	color: black;
	margin-bottom: 20px;
	font-weight: 600;
}

#navbar .links a:hover {
	color: grey;
	transition: 0.3s;
}

#navbar nav {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

#navbar img {
	width: 200px;
	object-fit: cover;
}

#navbar #close {
	color: #5cabdc;
	background-color: transparent;
	border: none;
	font-size: 2rem;
	cursor: pointer;
}

#navbar #close:hover {
	color: #043c7c;
	transition: 0.3s;
}

header {
	background: white;
	position: sticky;
	z-index: 99;
	top: 0;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.header-container {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	margin: auto;
}

header img {
	width: 180px;
}

nav a {
	text-decoration: none;
	font-weight: 600;
	color: #000000;
	margin: 0 20px;
}

nav .btn-signup {
	padding: 10px 30px;
	background-color: #1e51a8;
	border: none;
	border-radius: 5px;
	color: white;
	cursor: pointer;
}

nav .btn-signup:hover {
	background-color: rgb(82, 82, 82);
	transition: 0.3s;
}

nav a:hover {
	color: rgb(82, 82, 82);
	transition: 0.3s;
}

.em-dropdown {
	display: flex;
	gap: 10px;
	width: max-content;
	align-items: center;
	position: relative;
}

.em-dropdown:hover .header-dropdown-full {
	display: flex;
}

.em-dropdown img {
	width: 12px;
	height: 12px;
}

nav {
	display: flex;
	align-items: center;
}

.header-dropdown-full {
	display: flex;
	flex-direction: column;
	width: max-content;
	background-color: rgb(248, 248, 248);
	position: absolute;
	/* z-index: 500; */
	top: 60px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	display: none;
}

.dropdown-option:hover {
	background-color: rgb(223, 223, 223);
	color: black;
}
.header-dropdown-full a {
	color: black;
	font-weight: 600;
	padding: 0.5rem 10px;
	margin: 0;
}

.nav-login a:hover {
	background-color: #043c7c;
	transition: 0.3s;
	color: green;
}

.hamburger {
	display: none;
	padding: 10px 15px;
	background-color: white;
	border: none;
	border-radius: 5px;
	color: rgb(0, 0, 0);
	font-weight: 800;
	font-size: 1.5rem;
	cursor: pointer;
}
.em-dropdown-mb {
	display: flex;
	flex-direction: row !important;
	gap: 20px;
	align-items: center;
}

.em-dropdown-mb img {
	width: 15px !important;
	height: 15px;
}
.header-dropdown-mb {
	background-color: rgb(231, 231, 231);
	padding: 20px;
	margin-bottom: 1rem;
	display: none;
}

@media (max-width: 1020px) {
	nav {
		display: none;
	}
	.hamburger {
		display: block;
	}
}
