*{
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	padding: env(safe-area-inset);
}

body {
	color: #d6d6d6;
	margin: 0;
	padding: 0;
	/*font-family: "brandon-grotesque", sans-serif;*/
	font-family: Verdana, "Helvetica Neue", sans-serif;
}

a {
	color: inherit;
}
#header a, #footer a {
	text-decoration: none;
}

a:hover {
	color: antiquewhite;
}

h1 {
	text-align: center;
	color: #99a6d2;
	font-weight: 100;
}

h4 {
	margin: 40px 0 0 0;
}

h5 {
	margin: 20px 0 0 0;
}

h6 {
	margin: 0;
}

.clear{
	clear:both;
}

.p {
	margin: 10px;
	font-weight: 300;
}

.monly, .m1000only{
	display: none !important;
}

#menuToggle {
	display: block;
	top: 6px;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle #mbox{
	width: 80px;
	height: 35px;
	/*background: #579cd8;*/
	border-radius: 6px;
	/*padding: 5px;*/
	position: relative;
	z-index: 10;
}

#menuToggle #mtext{
	float: left;
	width: 50px;
	color: white;
	margin-left: 16px;
	display: none;
}

#menuToggle input {
	display: block;
	width: 80px;
	height: 40px;
	position: relative;
	top: -37px;
	left: -5px;
	cursor: pointer;
	opacity: 0; /* hide this */
	z-index: 20; /* and place it over the hamburger */
	-webkit-touch-callout: none;
}

#menuToggle span {
	display: block;
	width: 25px;
	height: 1px;
	margin-bottom: 8px;
	position: relative;
	background: white;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	opacity 0.55s ease;
	float: right;
	clear: right;
	top: 7px;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ #mbox span {
	opacity: 1;
	transform: translate(1px, -13px) rotate(45deg);
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ #mbox span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ #mbox span:nth-last-child(2) {
	transform: translate(3px, 10px) rotate(-45deg);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
	z-index: 10;
	position: absolute;
	right: 0px;
	width: 100%;
	margin: -100px 0 0 0;
	padding-top: 82px;
	padding-left: 0;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(0, -100%);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
	padding: 15px 0;
	font-size: 22px;
	background-color: #374e9e;
	text-align: center;
	border-bottom: 1px solid #4e5d90;
}

#menuToggle input:checked ~ ul {
	transform: translate(0, 0);
}



.menu {
	float: right;
	margin-top: 12px;
}

.menu_item {
	display: inline-block;
	margin-left: 10px;
	padding-right: 10px;
	font-weight: 100;
}

.menu_item:first-of-type {
	margin-left: 0;
}

.menu_item:last-of-type {
	border-right: none;
}


#drop_menu {
	position: relative;
	padding-bottom: 10px;
}
.drop_menu {
	display: none;
	position: fixed;
	z-index:100;
	background-color: #374e9e;
	width: 100vw;
	left: 0;
	top: 50px;
	border: 4px solid #bacbe6;
}
#drop_menu:hover .drop_menu, .drop_menu:hover {display: block;}
.drop_menu > div {
	margin: auto;
	width: 100%;
	max-width: 1200px;
}
.drop_menu .cat {
	 width: 24%;
	 display: inline-block;
	 vertical-align: top;
	 padding: 66px;
 }


#header {
	background: #374e9e;
	border-bottom: 5px solid #bacbe6;
}

.content {
	max-width: 1900px;
	margin: 0 auto;
	padding: 0 50px;
	position: relative;
}

.content.text {
	max-width: 1000px;
}

#header .content {
	height: 70px;
}

.logo {
	padding-top: 15px;
	float: left;
	position: relative;
	z-index: 10;
}

#full_logo {
	width: 200px;
	float: left;
}

#small_logo {
	display: none;
	width: 35px;
	float: left;
}

.menu{
	float:right;
}


.expander{
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
}

.expander::after{
	content: "\02b";
	position: absolute;
	right: 10px;
	font-size: 20px;
	margin-top: -10px;
}
.expander.expanded{

}

.expander.expanded::after{
	content: "\02212";
}


#content{
	color: #444444;
}

#content .content{
	min-height: 500px;
	padding: 0px 50px 80px;
	clear: both;
}

#content .content.no_padding{
	padding: 0px 0px 80px;
}

#content a:hover {
	color: #999999;
}

.crumbs {
	text-transform: uppercase;
	padding-top: 20px;
	padding-bottom: 30px;
	font-size: 0.8em;
	padding-left: 220px;
}

#home_cont{
	overflow: hidden;
	max-width: 1050px;
	margin: auto;
	position: relative;
}

#home_cont img{
	height: 700px;
	position: relative;
}


#home_box{
	position: absolute;
	top: 50px;
	left: 600px;
	color: #99a6d2;
	font-weight: 100;
}

.home_message{
	font-size: 3.1em;
	text-align: center;
}

#home_box .home_message{
	margin-top:100px;
}

#home_box .home_message.small{
	font-size: 2.2em;
	margin-top: 260px;
	margin-left: 20px;
}

.home_link{
	display: block;
	border: 1px solid #e3e5e8;
	margin: 20px 0;
	color: #99a6d2;
	padding: 6px;
	text-align: center;
	font-size: 1.5em;
	text-decoration: none;

}

#home_edu{
	height: 60vw;
	max-height: 850px;
	position: relative;
	overflow: hidden;
}

#home_edu img{
	left: 0;
	right: 0;
	position: absolute;
	margin: auto;
	width: 100%;
	top: calc(-15vw + 90px);
}

#home_edu .home_links{
	position: absolute;
	top: 20px;
	z-index: 1;
	right: calc(45% - 340px);
	width: 400px;
}

/*#home_edu .home_links a{
	border-radius: 20px;
	color: white;
	text-shadow: 1px 1px 2px black;
	box-shadow: 1px 1px 4px black;
}*/







.new_products{
	width: 1000px;
	margin: auto;
}

.index_product {
	width: 290px;
	margin: 0 20px;
	height: auto;
	display: inline-block;
	text-align: center;
	vertical-align: top;
}

.index_product div {
	position: relative;
	width: 100%;
}

#main_videos{
	width:100%;
	max-width: 1200px;
	margin: 80px auto;
}

#main_videos img{
	width: 324px;
	cursor:pointer;
}

#main_videos .vid_frame{
	display:none;
	height:144px;
}

#main_videos .vid_descr{
	height: 45px; overflow: hidden; position: relative;
}

#main_videos .vid_descr .fas{
	position: absolute; right:0; bottom:0; background: white; display: block; width: 25px;
}

.video_item{
	width: 380px;
	max-width: 90%;
	display: inline-block;
	padding: 0 30px 30px;
	text-align: center;
	vertical-align: top;
}

/*
#main_videos .vid_descr:hover{
	overflow: inherit;
}

#main_videos .vid_descr:hover .fas{
	display: none;
}
*/

/*.index_product {
	max-width: 500px;
	position: relative;
	height: 400px;
	margin: -50px auto 0 auto;
}

.index_product div {
	display: inline-block;
	position: absolute;
	width: 300px;
	top: 50%;
	transform:  translateY(-50%);
}

.index_product img {
	display: inline-block;
}

.index_product:nth-child(2n+1) div{
	float: left;
	text-align: right;
}

.index_product:nth-child(2n+1) img{
	float: right;
}*/











.cocoen{
	height: 240px;
	width: 360px;
	margin: 10px;
	display: inline-block;
}

.cocoen img{
	width: 100%;
}

.cocoen .title{
	position: absolute;
	bottom: 20px;
	left: 60px;
	font-size: 20px;
	font-weight: bold;
	color: white;
	text-shadow: 0px 0px 4px black;
}

.cocoen .before_title{
}

.cocoen .after_title{
	right: 60px;
}


.swapper{
	height: 320px;
	width: 480px;
	margin: 10px;
	display: inline-block;
}

.swapper > div:first-of-type{
	animation-name: swapper;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	z-index: 1;
}

.swapper > div{
	position: absolute;
}

.swapper img{
	height: 320px;
}

.swapper > div > div{
	position: absolute;
	top: 280px;
	left: 300px;
	font-size: 20px;
	font-weight: bold;
	color: white;
	text-shadow: 0px 0px 4px black;
}

@keyframes swapper {
	from {opacity: 1;}
	80% {opacity: 0;}
	to {opacity: 0;}
}


.product_category{
	margin: 5px 15px;
	display: inline-block;
	font-weight:300;
	color: #333;
	text-decoration: none;
	font-size: 17px;
	/*border-bottom: 2px solid #DDD;*/
}

.product_category.active{
	border-bottom: 2px solid #374e9e;
}

.product{
	width: 300px;
	height:400px;
	display: inline-block;
	padding: 30px;
	text-align: center;
}



.center_form {
	width: 100%;
	max-width: 300px;
	margin: auto;
	text-align: center;
	padding-bottom: 40px;
}

input[type="submit"], input[type="button"] {
	width: 100%;
	background-color: #374e9e;
	color: #ececec;
	font-weight: 600;
	font-size: 1.2em;
	border-radius: 4px;
	border: none;
	padding: 2px;
	font-weight: 100;
	background: white;
	color: #374e9e;
	border: 1px solid #374e9e;
	font-weight: 300;
	cursor: pointer;
	margin: 5px 0;
}

input[type="submit"]:hover, input[type="button"]:hover {
	background: #f7f7f7;
}

.center_form input[type="text"], .center_form input[type="password"], .center_form select, .center_form textarea {
	width: 100%;
	margin: 5px 0;
	border-radius: 4px;
	font-size: 1.2em;
	padding: 6px;
	border: 1px solid #e2e2e2;
	font-weight: 100;
}

.button{
	display: inline-block;
	color: #374e9e;
	border: 1px solid #374e9e;
	border-radius: 4px;
	text-align: center;
	padding: 5px;
}

::placeholder{
	color:#aaa;
}

.center_form textarea {
	height: 100px;
}


.store_product{
	width: 1100px;
	max-width: 100%;
	text-align: left;
	display:inline-block;
	padding: 0px 40px;
}

.store_product > a, .store_product > .product_name{
	width: 300px;
	display: inline-block;
	margin: 5px;
}

.promo {
	display: inline-block;
}

.promo_hover{
	color: #00bb00;
	font-size: 16px;
	cursor: pointer;
	position: relative;
	left: 5px;
}

.store_size{
	display: inline-block;
	margin: 5px 0px 5px 20px;
	width: 280px;
}

.store_product:not(.item) .store_size:nth-of-type(2n+3){
	margin-left: 333px;
}

#cart .store_size{
	width: 210px;
	float: right;
	margin-right: 5px;
}

.store_size div:nth-of-type(1){
	width: 130px;
	display: inline-block;
}

.store_size div:nth-of-type(2){
	width: 70px;
	display: inline-block;
}

.store_size div:nth-of-type(3){
	width: 70px;
	display: inline-block;
}


#footer {
	background: #26366e;
	text-align: center;
}

#footer_logo {
	margin-top: 20px;
	max-width: 300px;
	width: 100%;
}

.footer_box {
	background: #212e5e;
	width: calc((100% - 8px) / 4);
	float: left;
	height: 150px;
	padding: 45px 0 45px 60px;
	text-align: left;
	border-left: 2px solid #26366e;
}

.footer_box:last-of-type {
	border-right: 2px solid #26366e;
}

.box_title {
	font-size: 1.3em;
	padding-bottom: 10px;
	font-weight: 500;
}

.box_item {
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	font-weight: 100;
}

.box_item:first-of-type {
	margin-left: 0;
}

.box_item:last-of-type {
	border-right: none;
}

#footer_info {
	clear: both;
	padding-bottom: 40px;
	padding-top: 30px;
}

.footer_info_br{
	display:none;
}

.footer_text {
	margin: 30px 10px;
	font-weight: 300;
	font-size: 18px;
}

.pop_image{
	height: 300px;
	left: 0;
	right: 0;
	margin: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	position: relative;
	transition-duration: 2s;
}

.pop_image:hover{
	height: 330px;
	margin-top: -15px;
	margin-bottom: -15px;
}

.edu_item{
	width: 200px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	font-size: 0.8em;
	margin: 11px;
	padding: 15px 5px;
	border: 1px solid #e4e4e4;
	border-radius: 7px;
	position: relative;
}

.edu_item img {
	width: 150px;
}



.image_link{
	display: inline-block;
	text-align: center;
	margin: 60px;
}

.location_button{
	width: 200px;
	border: solid grey 1px;
	padding: 10px;
	text-align: center;
	display: block;
	margin: 4px;
}






#messages {text-align: center;}
#messages ul {color:#444; padding: 0;}
#messages ul li {list-style: none;}
#m_success {color: #339900;}
#m_notification {color:#3366CC;}
#m_error {color:#FF0000;}

@media (max-width: 1600px) {
	#home_edu img {
		width: 100%;
		top: 0px;
		/*width: inherit;
		top: -100px;
		left: calc(50vw - 800px);*/
	}
	#home_edu .home_links {
		width: 300px;
	}
}

@media (max-width: 1200px) {
	.store_product{
		padding: 10px 20px;
	}

	/*.store_product:not(.item) .store_size:nth-of-type(2n+3){
		margin-left: inherit;
	}*/

	.store_product:not(.item) .store_size:nth-of-type(2n+3){
		margin-left: 20px;
	}

	.store_product > a{
		display: block;
	}

	.footer_box {
		width: calc((100% - 4px) /2);
		margin: 1px 0;
	}

	#footer_info .foot_pipe:nth-of-type(3){
		display: none;
	}

	#footer_info .box_item:nth-of-type(4) {
		margin-left: 0;
	}

	.footer_info_br {
		display:block;
	}
}

@media (max-width: 1000px) {
	.new_products{
		width: 330px;
		margin: 0 auto 30px auto;
	}

	.product_category{
		color:#d6d6d6;
		width: 100%;
		margin: 0;
		padding: 10px 0;
		font-size: 18px;
		background-color: #374e9e;
		text-align: center;
		border-bottom: 1px solid #4e5d90;
	}

	.product_category.active {
		border-bottom: 1px solid #4e5d90;
	}

	#categories {
		display: none;
	}

	.crumbs {
		padding-left: 0px;
	}

	#content .content{
		padding: 0px;
		min-height: 200px;
	}

	#content .content.text{
		min-height: 200px;
		padding: 20px 50px;
	}

	#home_cont img{
		left: calc(50vw - 320px);
	}

	#home_cont img.lady3{
		left: calc(50vw - 420px);
	}

	#home_box{
		position: relative;
		left: 0;
		right: 0;
		margin-bottom: 130px;
		padding: 0 20px;
	}

	#home_message{
		font-size: 2em;
	}

	#home_box .home_message{
		margin-top: 0 !important;
		margin-left: 0 !important;
	}

	.home_link{
		/*border-color: white;*/
		font-size: 1.6em;
	}

	.new_products{
		display:none;
	}

	#home_edu img{
		/*left: calc(50vw - 1000px);*/
	}

	#home_edu .home_links{
		right: 0;
		left: 0;
		margin: auto;
	}

	.mobile_1000_center {
		text-align: center;
	}

	#main_videos.home{
		display: none;
	}

	.slick_slider{
		display:none !important;
	}

	.slick_slider2{
		display:none !important;
	}

	.image_link{
		margin: 60px 0;
		width: 100%;
	}

	.m1000only {
		display: block !important;
	}

	.m1000hide {
		display: none !important;
	}
}

@media (max-width: 600px) {

	.monly {
		display: block;
	}

	.mhide {
		display: none;
	}

	#full_logo {
		display: none;
	}

	#small_logo {
		display: block;
	}

	#header .logo_name {
		display: none;
	}

	.mobile_center{
		text-align: center;
	}

	.store_product > a, .store_product > .product_name {
		width: auto;
	}

	.video_item{
		padding: 0 0 30px;
	}

	.footer_box {
		width: 100%;
		margin: 1px 0;
		text-align: center;
		padding-left: 0;
	}

	#footer_info .box_item {
		display: block;
	}

	.footer_info_br {
		display: none;
	}

	.foot_pipe{
		display: none;
	}
}

@media (max-width: 500px) {
	.home_message{
		font-size: 2em;
	}

	#main_videos img{
		max-width: 90%;
	}


	/*.index_product {
		margin: 20px;
		text-align: center;
		height: auto;
	}

	.index_product div {
		display: block;
		position: relative;
		width: 100%;
		top: 0;
		transform: initial;
	}

	.index_product img {
	}

	.index_product:nth-child(2n+1) div{
		float: none;
		text-align: initial;
	}

	.index_product:nth-child(2n+1) img{
		float: none;
	}*/
}