@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/************************************************************************************/

input.hamburger {
	display: none;
}
input.hamburger:checked ~ label > i {
	background-color: transparent;
	transform: rotate(90deg);
}
input.hamburger:checked ~ label > i:before {
	transform: translate(-50%, 0%) rotate(45deg);
}
input.hamburger:checked ~ label > i:after {
	transform: translate(-50%, 0%) rotate(-45deg);
}
input.hamburger:checked ~ label > div::after {
	width: 100%;
}
input.hamburger:checked ~ label > div::before {
	width: 0;
}

label.hamburger {
	z-index: 9999;
	position: relative;
	display: block;
	height: 50px;
	width: 50px;
}
label.hamburger:hover {
	cursor: pointer;
}
label.hamburger > div {
	font-size: 0.8em;
}
label.hamburger > div::after, label.hamburger > div::before {
	top: 100%;
	width: 100%;
	text-align: center;
	position: absolute;
	overflow: hidden;
	transition: width 0.25s 0.35s, color 0.45s 0.35s;
}
label.hamburger > div::after {
	content: "CLOSE";
	right: 0;
	width: 0;
}
label.hamburger > div::before {
	content: "MENU";
	left: 0;
}
label.hamburger > i {
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	top: 50%;
	background-color: #222;
	pointer-events: auto;
	transition-duration: 0.35s;
	transition-delay: 0.35s;
}
label.hamburger > i:before, label.hamburger > i:after {
	position: absolute;
	border-radius: 2px;
	display: block;
	width: 100%;
	height: 2px;
	left: 50%;
	background-color: #222;
	content: "";
	transition: transform 0.35s;
	transform-origin: 50% 50%;
}
label.hamburger > i:before {
	transform: translate(-50%, -14px);
}
label.hamburger > i:after {
	transform: translate(-50%, 14px);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primnav expand:hover, .primnav li:hover {
	background-color: #1d1d1d;
	background-color: #efefef;
}

.primnav {
	position: fixed;
	height: 58px;
	width: 100vw;
	font-size: 1em;
	text-transform: uppercase;
	background-color: #FFF;
	display: flex;
	flex-direction: column;
	transition: height 246ms 0.5s ease;
	padding-top: 58px;
	overflow-x: hidden;
	overflow-y: hidden;
	box-sizing: border-box;
	z-index: 1;
	
	border-right: .5px solid rgba(128,128,128,0.5);
	border-width: thin;
}

	@media (min-width: 650px) {
		.primnav {
			height: 100vh;
			width: 58px;
			transition: width 246ms 0.5s ease;
			}
		}
		
.primnav > ul {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
.primnav li {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 400;
	position: relative;
}
.primnav li .tag {
	background-color: #1d1d1d;
	background-color: rgba(0, 0, 0, 0.1);
	color: rgba(255, 255, 255, 0.8);
	color: #e6e6e6;
	color: rgba(255, 255, 255, 0.9);
	padding: 0 0.5em;
	border-radius: 2em;
	margin-left: auto;
	margin-right: 0.75em;
}
.primnav li a {
	font-family: "Barlow Condensed", sans-serif;
	position: relative;
	display: flex;
	align-items: center;
	white-space: nowrap;
	color: white;
	color: #1d1d1d;
	text-decoration: none;
}
	
.primnav .icon {
	height: 20px;
	flex-shrink: 0;
	width: 20px;
	padding: 13px 19px 19px 16px ;
	margin-right: 5px;
	padding-bottom: 15px;
	color: #e6e6e6;
	color:#1d1d1d;
}

.secnav {
	margin-left: 63px;
	border-left: 1px solid black;
	border-left-color: #1d1d1d;
	border-left-color: #1d1d1d;
	overflow: hidden;
}
.secnav li {
	color: #e6e6e6;
	color: #1d1d1d;
	max-height: 100px;
	transition: max-height 0.1s;
}

	@media (min-width: 650px) {
		.secnav li {
			max-height: 0px;
			transition: max-height 0.5s 0.5s;
		}
	}

.secnav li a {
	text-transform: initial;
	display: block;
	color: inherit;
	padding: 0.75em 10px;
}

	@media (min-width: 650px) {
		content {
			padding-left: 58px;
			padding-top: 0;
		}
	}

.icon {
	display: inline-block;
	width: 5vw;
	height: 4vw;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

/** hamburger */
input.hamburger {
	display: none;
}
input.hamburger:checked ~ nav.primnav {
	height: 100vh;
}

	@media (min-width: 650px) {
		input.hamburger:checked ~ nav.primnav {
			width: 275px;
		}
	}
	@media (min-width: 650px) {
		input.hamburger:checked ~ nav.primnav .secnav > li {
			max-height: 100px;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(1) {
			transition: max-height 0.5s 0.67s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(2) {
			transition: max-height 0.5s 0.69s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(3) {
			transition: max-height 0.5s 0.71s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(4) {
			transition: max-height 0.5s 0.73s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(5) {
			transition: max-height 0.5s 0.75s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(6) {
			transition: max-height 0.5s 0.77s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(7) {
			transition: max-height 0.5s 0.79s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(8) {
			transition: max-height 0.5s 0.81s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(9) {
			transition: max-height 0.5s 0.83s ease-in;
		}
		input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(10) {
			transition: max-height 0.5s 0.85s ease-in;
		}
	}

input.hamburger:checked ~ label > i {
	background-color: transparent;
	transform: rotate(90deg);
}

input.hamburger:checked ~ label > i:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked ~ label > i:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

input.hamburger:checked ~ label close {
	font-size: 1em;
	color: rgba(255, 255, 255, 0.8);
	width: 100%;
}

input.hamburger:checked ~ label open {
	width: 0;
}

label.hamburger {
	z-index: 9999;
	position: relative;
	display: block;
	height: 24px;
	width: 24px;
}

label.hamburger:hover {
	cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
	text-transform: uppercase;
	align-text: center;
	position: absolute;
	transform: translateY(24px);
	text-align: center;
	overflow: hidden;
	transition: width 0.25s 0.35s, color 0.45s 0.35s;
	font-size: 6px;
}

label.hamburger text close {
	color: rgba(255, 255, 255, 0.8);
	right: 0;
	width: 0;
}

label.hamburger text open {
	color: rgba(255, 255, 255, 0.8);
	width: 100%;
}

label.hamburger > i {
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	background-color: #1d1d1d;
	pointer-events: auto;
	transition-duration: 0.35s;
	transition-delay: 0.35s;
}

label.hamburger > i:before, label.hamburger > i:after {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	left: 50%;
	background-color: #1d1d1d;
	content: "";
	transition: transform 0.35s;
	transform-origin: 50% 50%;
}

label.hamburger > i:before {
	transform: translate(-50%, -7px);
}

label.hamburger > i:after {
	transform: translate(-50%, 7px);
}

label.hamburger {
	position: fixed;
	top: 14px;
	left: 17px;
}

.tabs {
	text-transform: uppercase;
	font-size: 1rem;
	position: fixed;
	top: 58px;
	left: 0;
	background-color: #1d1d1d;
	border-bottom: 1px solid #1d1d1d;
	width: 100vw;
	box-sizing: border-box;
}

	@media (min-width: 650px) {
		.tabs {
			padding-left: calc(58px + .5rem);
			top: calc(58px - 3em);
			background-color: #1d1d1d;
			border: 0;
			}
	}
	
.tabs > ul {
	display: flex;
	justify-content: space-around;
	overflow-x: auto;
	flex-wrap: wrap;
}
	@media (min-width: 650px) {
		.tabs > ul {
			justify-content: flex-start;
		}
	}
	
.tabs .tab {
	font-weight: 300;
	font-size: 0.7em;
	padding: 1em 0.75em;
	white-space: nowrap;
	flex-shrink: 0;
	display: block;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.tabs .tab:hover {
	background-color: #1d1d1d;
	cursor: pointer;
}
