@charset "UTF-8";


.hor_nav_sections{
    flex-grow: 1; /* Tell the this element to take up as much space is available */
    margin-bottom:-20px;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 100%;
    white-space:nowrap;
	 align-items:flex-start;
}
.hor_section{
	display: inline-block;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	white-space:normal;
	vertical-align: top;
}


@media only screen and (max-width: 767px) {
	.hor_nav_sections{
		flex-direction:column;
	}
	.hor_section{
		display:block;
		width:100%;
	}
	
}