/*********** Base Styling **********/


.container {
	height: calc(100vh - 240px); /**** subtract header + footer heights****/
	min-height:27vw; /**** matches .category-wrapper height ****/
	margin-bottom:0;
	margin-right:auto;
	margin-left:auto;
	background-color:;
	display:flex;
	align-items:center;
}
.container-scroll {
	height: auto;
	min-height:calc(100vh - 240px); 
	margin-bottom:0;
	margin-right:auto;
	margin-left:auto;
	padding-top:;
	background-color:;
	display:flex;
	align-items:center;
	overflow:hidden;
}
#category-wrapper{
	width:31vw;
	height:25vw;
	margin:0 auto;
	background-color:;
}
#category-wrapper-scroll{
	width:41vw;
	height:auto;
	margin:0 auto;
	background-color:;
}
.category {
	width:100%;
}

.category:hover h2{
	color:#000;
}

ul{
	list-style-type: none;
}


/***** SUBMENU *****/

#sub {
    display:;
    width: 100%;
	height:auto;
    padding: 0px 10px 10px 0px 10px;
    color:;
}
#sub-inner{
	width:50%;
	padding-left:;
	background-color:#fff;
	float:right;
	font-family: 'Readex Pro', sans-serif;
	font-weight:500;
	font-size: 3vw;
	text-transform:uppercase;
}

.subclass:hover{
	color:#000;
}


/***** STRIKETHROUGH *****/

.category, .category2, .subclass {
	width: 100%;
	text-decoration: none;
	background-color:;
	font-family: 'Readex Pro', sans-serif;
	font-weight:500;
	font-size: ;
	color:#303030;
	background-color:;
	margin-bottom: .1rem;
	text-transform:uppercase;
	position:relative;
}


.category:before, .category:after, .category2:before, .category2:after{
	content: '';
	position: absolute;
	width: 0%;
	height: 14%;
	top: 45%;
	background: #000;
	pointer-events: none;
}
.subclass:before, .subclass:after {
	content: '';
	position: absolute;
	width: 0%;
	height: 14%;
	top: 45%;
	background: #000;
	pointer-events: none;
}
.category:before, .subclass:before, .category2:before{
	left: 0px;
}
.category:after, .subclass:after, .category2:after {
	right: 0px;
	background: #000;
	transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.category:hover:before, .subclass:hover:before {
	background: #000;
	width: 100%;
	transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.category:hover:after, .subclass:hover:after {
	background: transparent;
	width: 100%;
	transition: 0s;
}

@media (hover: hover){
	.category2:hover:before{
		background: #000;
		width: 100%;
		transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
	}
	.category2:hover:after{
		background: transparent;
		width: 100%;
		transition: 0s;
	}
}

#clicked{
	position:absolute;
	width:100%;
	height:100%;
	background:;
	margin-top:;
	opacity:;
}
.clicked-line{
	position:relative;
	top: 45%;
	background:#000;
}



/****************************** Media Screen (<767px) *******************************/


@media screen and (max-width: 767px){
#category-wrapper{
	background-color:;
	width:67vw;
	height:60vw;
	margin:0 auto;
}
#category-wrapper-scroll{
	background-color:;
	width:90vw;
	margin:0 auto;
}
.container {
	min-height:60vw; /**** matches .category-wrapper height ****/
}

h2{
	font-size:11vw;
}
#sub-inner{
	font-size: 5vw;
}
}

/***************************** Media Screen (767px<x>1023) **************************/

@media screen and (min-width: 768px) and (max-width: 1200px){
}

/****************************** Media Screen (>1201px) ******************************/

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


