:root {
	--green: #0e723a;
	--light-green: #21a366;
	--white: #ffffff;
	--strong-gray: #242038;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

.title {
	font-family: 'Jost', sans-serif;
}

.text {
	font-family: 'Quicksand', sans-serif;
}

.header {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	top: 0;
	height: 90px;
	width: 100%;
	background-color: var(--white);
	margin: auto;
	z-index: 1000;
	padding: 10px 10px 10px 30px;
	transition: box-shadow 0.5s ease-in-out;
	-webkit-transition: box-shadow 0.5s ease-in-out;
	-moz-transition: box-shadow 0.5s ease-in-out;
	-ms-transition: box-shadow 0.5s ease-in-out;
	-o-transition: box-shadow 0.5s ease-in-out;
}

.header + * {
	margin-top: 90px;
}

.header-logo-img {
	width: 12em;
	margin-right: 1em;
}

.header-nav-list {
	display: flex;
	align-items: center;
	min-width: max-content;
	height: 100%;
	gap: 1.1em;
	margin-right: 1.5em;
}

.header-nav-list-item {
	position: relative;
	display: flex;
	align-items: center;
	list-style: none;
	font-weight: 600;
	font-size: 17px;
	cursor: pointer;
	transition: 75ms color ease-in;
	-webkit-transition: 75ms color ease-in;
	-moz-transition: 75ms color ease-in;
	-ms-transition: 75ms color ease-in;
	-o-transition: 75ms color ease-in;
}

.header-nav-list-item-drop-title:hover + .header-nav-list-item-drop-list,
.header-nav-list-item-drop-list:hover {
	display: block;
}

.header-nav-list-item-drop-list {
	display: none;
	position: absolute;
	top: 25px;
	padding: 0.3rem;
	background-color: var(--white);
	border-radius: 0.3rem;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
	-webkit-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-ms-border-radius: 0.3rem;
	-o-border-radius: 0.3rem;
}

.header-nav-list-item-drop-list::-webkit-scrollbar {
	display: none;
}

.header-nav-list-item-drop-list::-webkit-scrollbar {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none;
}

.chevron-up {
	position: absolute;
	right: 0;
	font-size: 0;
	color: var(--light-green);
}

.header-nav-list-item-drop-item {
	list-style: none;
	width: max-content;
	padding: 0.3rem;
}

.header-na-list-item-drop-item-a {
	text-decoration: none;
	color: #000000;
}

.header-na-list-item-drop-item-a:hover,
.not-drop:hover {
	color: var(--light-green);
}

.header-nav-list-item-drop-item:not(.header-nav-list-item-drop-item:first-child) {
	margin-top: 0.5rem;
}

.header-va-list-item-img {
	width: 15px;
	margin-right: 0.5rem;
}

.header-nav-hamburger {
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	cursor: pointer;
	right: 1.5rem;
	color: var(--strong-gray);
	background-color: var(--white);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: scale(0.7);
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
}

.header-effect {
	box-shadow: 0px 0px 15px 0 rgb(0 0 0 / 29%);
}

.header-logo {
	width: 7.5em;
	object-fit: contain;
}

@media screen and (min-width: 1400px) {
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
	.header-logo-img {
		width: 2em;
	}
	.header-nav-list {
		position: fixed;
		top: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 30%;
		height: 100vh;
		min-width: 300px;
		margin-right: 0;
		background-color: var(--white);
		box-shadow: 0px 0px 15px 0 rgb(0 0 0 / 29%);
		transition: transform 150ms ease-in;
		-webkit-transition: transform 150ms ease-in;
		-moz-transition: transform 150ms ease-in;
		-ms-transition: transform 150ms ease-in;
		-o-transition: transform 150ms ease-in;
		transform: translateX(110%);
		-webkit-transform: translateX(110%);
		-moz-transform: translateX(110%);
		-ms-transform: translateX(110%);
		-o-transform: translateX(110%);
		overflow-y: auto;
	}
	.--show {
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
	}

	.header-nav-list {
		justify-content: flex-start;
		align-items: stretch;
		padding: 85px 35px;
	}

	.header-nav-list-item:not(.login) {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		/* background-color: #0E723A; */
	}

	.header-nav-list-item-drop-list {
		top: 1px;
		margin-left: 1rem;
		position: relative;
		display: block;
		box-shadow: none;
		background-color: transparent;
		overflow-x: hidden;
		height: 0;
		padding: 0;
		transition: height 150ms ease-out;
		-webkit-transition: height 150ms ease-out;
		-moz-transition: height 150ms ease-out;
		-ms-transition: height 150ms ease-out;
		-o-transition: height 150ms ease-out;
	}

	.header-nav-list-item-drop-title {
		width: 100%;
	}

	.header-na-list-item-drop-item-a:hover,
	.not-drop:hover {
		color: #000000;
	}
	.chevron-up {
		font-size: 1.2rem;
		color: var(--green);
		transition: transform 150ms ease-out;
		-webkit-transition: transform 150ms ease-out;
		-moz-transition: transform 150ms ease-out;
		-ms-transition: transform 150ms ease-out;
		-o-transition: transform 150ms ease-out;
	}
	.chevron-down {
		transform: rotateZ(180deg);
		-webkit-transform: rotateZ(180deg);
		-moz-transform: rotateZ(180deg);
		-ms-transform: rotateZ(180deg);
		-o-transform: rotateZ(180deg);
	}
	.header {
		height: 75px;
	}
	.header + * {
		margin-top: 75px;
	}
	.header-nav-hamburger {
		display: flex;
	}
	.hamburger-bars {
		pointer-events: none;
	}
}

@media screen and (max-width: 480px) {
	.header-logo-img {
		width: 1.5em;
	}
	.header {
		height: 60px;
	}
	.header + * {
		margin-top: 60px;
	}
	.header-nav-list {
		width: 100%;
		justify-content: flex-start;
		padding-top: 85px;
	}
}
