﻿/***** Start of primary nav ******/
#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}

nav.primary {
	align-self: center;
	font-family: Poppins, Verdana, Geneva, sans-serif;
}

nav.primary ul {
	gap: 20px;
}

nav.primary ul * {
	font-size: 18px;
	line-height: 210px;
}

/* nav.primary ul {} */
nav.primary ul li {
	font-style: normal;
	background-color: unset;
	position: relative;
	color: #000000;
	transition: .3s ease all;
}
nav.primary ul li:hover {
	color: #c62127;
}
nav.primary ul li:hover ul::before {
	content: '';
	position: absolute;
	top: -34px;
	left: 0;
	width: 23px;
	height: 34px;
	background-image: url("../siteart/menu-arrows.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* This controls the Primary nav dropdowns for sub-links. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
	position: absolute;
	left: -1px;
	top: 25px;
	box-shadow: 1px 1px 30px rgba(0,0,0,.06);
	overflow: hidden;
}

nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}

nav.primary ul li:hover>ul {
	position: absolute;
	left: 0;
	top: calc(100% + 34px);
	display: block;
	line-height: 16px;
	z-index: 100;
	width: max-content;
	background-color: #ffffff;
}

nav.primary ul ul li {
	float: none;
	position: relative;
	display: block;
	background-color: #ffffff;
	font-size: 14px;
	line-height: 1.8;
	padding: 12px 20px;
	border: none !important;
	width: 200px;
}

nav.primary ul ul li:hover {
	background-color: #f9f9fb;
}


@media screen and (max-width: 400px) {
	nav.primary ul * {
		line-height: 75px;
	}
}

/******** End of primary Nav ***************/