/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 31 2022 | 09:36:10 */
#menu-holder {


    justify-content: space-between;
    z-index: 900;
  position: fixed;
  top: 0;
  right: 0;
	left:0;
  height: 100vh;
  width: 100vw;
  list-style-type: none;
		padding:120px 65px 120px 50px;
  margin: 0;
  display: flex;
	flex-direction: row;
visibility:hidden;

}

body .main-navigation ul {
    display: block;
}


	#site-navigation {
		text-align: right;

	}
#menu-left-col {
	opacity:0;
}
	#menu-left-col p {
		margin: 0;
		font-size: 1.563rem;
		line-height: 1.5;
	}
	#menu-left-col p a {
		color: white;
		text-decoration: none;
	}
	#menu-left-col p a:hover {
		color: var(--coral-color);
		text-decoration: underline;
	}
	#menu-left-col svg {
		fill: white;
	}
	#menu-left-col svg:hover {
		fill: var(--coral-color);
	}
	.menu-icons {
		margin-top: 10px;
		display: flex;
		gap: 5%;
	}
	li.menu-item {
		font-size: 9vh;
		line-height: 1em;
		text-transform: uppercase;
		font-weight: 700;
	}
	li.menu-item a{
		color: white;
	}
	li.menu-item a:hover{
		color: var(--coral-color);
	}

	#menu-holder.show {
		display: flex;
	}


@media (max-width:768px) {
	li.menu-item {
    font-size: 4.5vh;
		line-height: 1.1em;
	}
	#menu-holder {
		height: auto;
		flex-direction: column-reverse;
		padding:150px 20px 20px 20px;
	}
	#menu-left-col {
		text-align: right;
		margin-top:35px;
	}
	.menu-icons {
		justify-content: end;
	}
	#menu-left-col p {
		font-size: 1rem;
	}
}


