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


.container {
	width: 100% !important;
	margin: auto;
}

.navbar {
	width: 100%;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 125px;
}

.navbar .menu-items {
	display: flex;
}

.navbar .nav-container li {
	list-style: none;
}

.navbar .nav-container a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	font-size: 69px;
	padding: 0.7rem;
	font-family:"ivypresto-display" !important;
	font-display:auto;
	font-style:normal;
	font-weight:400;
	font-stretch:normal;
}
.d-inline-block {
  display: inline-block;
  transform-origin: left bottom;
  font-family: "ivypresto-display";
  font-style: italic;
  font-weight: 200;
  font-stretch: normal;
  letter-spacing: 7px;
}
/*
.navbar .menu-items a:hover {
    transform: rotate(4deg);
    display: inline-block;
    height: 103px;
}

.navbar .nav-container a {
    transition: height 0.3s, transform 0.3s;
    transition-timing-function: ease-in-out;
}
*/

.nav-container {
	display: block;
	position: relative;
	height: 60px;
}

.nav-container .checkbox {
	position: absolute;
	display: block;
	height: 32px;
	width: 32px;
	top: 20px;
	left: 20px;
	z-index: 15;
	opacity: 0;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;

	/* position the div in center */
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -50%);

}

.nav-container .hamburger-lines {
	display: block;
	height: 26px;
	width: 32px;
	position: absolute;
	top: 17px;
	left: 20px;
	z-index: 12;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	display: flex;
	justify-content: center;
	align-items: center;

	/* position the div in center */
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* .nav-container .hamburger-lines .line {
display: block;
height: 4px;
width: 100%;
border-radius: 10px;
background: #000;
} */

.nav-container .hamburger-lines .line {
	display: block;
	height: 4px;
	width: 100%;
	border-radius: 10px;
	background: #000;
}

.nav-container .hamburger-lines .line1 {
	transform-origin: 0% 0%;
	transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
	transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
	transform-origin: 0% 100%;
	transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
	padding-top: 35vh;
	height: 100vh;
	width: 100%;
	transform: translateY(150%);
	display: flex;
	flex-direction: column;
	margin-left: 0;
	padding-left: 0;
	text-align: center;
	background: #fcfaf8;
	position: relative;
	z-index: 3;
}

.navbar .menu-items li {
	margin-bottom: 1.2rem;
	font-size: 1.5rem;
	font-weight: 500;
}

.logo {
	position: absolute;
	top: 80px;
	left: 15px;
	z-index: 13;
}

/*
.nav-container input[type="checkbox"]:checked ~ .menu-items {
	transform: translateX(0);
}
*/
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
	transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
	transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
	transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
	display: none;
}


.nav-container .hamburger-lines .line1 {
	transform-origin: 0% 0%;
	transition: transform 0.4s ease-in-out;
	margin: 5px 0;
}
.nav-container .hamburger-lines .line3 {
	transform-origin: 0% 100%;
	transition: transform 0.4s ease-in-out;
	margin: 5px 0;
}
.nav-container .hamburger-lines .line1 {
	transform-origin: 30% -4px;
	transition: transform 0.4s ease-in-out;
	margin: 5px 0;
}
.nav-container .hamburger-lines:hover .line1 {
	display: none;
}

/* 09/22/2022 */
/* 
.checkbox:hover ~ .hamburger-lines span:nth-of-type(1){
	
	transform: rotate(-180deg);
	margin-bottom: -10px !important;
		
}

.checkbox:hover ~ .hamburger-lines span:nth-of-type(2){
	
	transform: rotate(-180deg);
	margin-left: 38px !important;
		
} */

.blackthis {
color: #000;
}