/*Reset*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td 
{
    border: 0;
	font-family: Lato, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	overflow-y: auto;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	height:100%;
	width:100%;
	//font-size: 65%;
	scroll-behavior: smooth;
}

body {
	height:100%;
	width:100%;
}

*, *:before, *:after {
	box-sizing: border-box;
    -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

p {
	padding:5px;
}

img, a {
	border:0;
	outline:0;
}

a, .blue {
	color:#166db6;
}

.hide {
	display:none;
}

.menu_id {
	display:none;
}

strong {
	font-weight:bold;
}

.col1 {
	width:100%;
}

h2 {
	text-align:center;
	font-weight:bold;
	font-size:1.5em;
	//font-style:italic;
	letter-spacing:1.5px;
	padding:30px 0 20px;
	width:100%;
}

h3 {
	text-align:center;
	font-weight:bold;
	font-size:1.3em;
	font-style:italic;
	margin:30px 0 20px;
	display: inline-block;
	width:auto;
}

/**/

#container {
	position:relative;
	margin:auto;
	height:100%;
	width:100%;
	display:flex;
	flex-direction:column;
}

/*Header*/

#header{
	position:fixed;
	width:100%;
	font-size:16px;
	font-size: 1.2rem;
	z-index:3;
	display:flex;
	flex:none;
	flex-direction: row;
	justify-content: space-between;
	max-height:130px;
	height:130px;
	transition: transform 0.4s;
}

#header.scrolled {
	height:80px;
	background:white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

#logo {
	display:inline-block;
	position:relative;
	z-index:10;
	width:43%;
}

#logo img {
	width:100%;
	max-width:200px;
	height:auto;
	-webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
	transform-origin: left top;
}

#header.scrolled #logo img {
	-webkit-transform: scale(0.7) rotate(0.01deg);
	transform: scale(.7) rotate(0.01deg);
}

.scroll-down {
  transform: translate3d(0, -100%, 0);
}

.scroll-up {
  transform: none;
}

/*MENU*/

#secondary_menu_wrapper {
	width:35%;
	z-index:100;
	display: flex;
    justify-content: flex-end;
    align-items: center;
}

#hamburger {
	position: relative;
	padding:1em;
}

#hamburger:hover {
	cursor:pointer;
}

#hamburger > div {
	margin-bottom:7px;
	width:45px;
	height:5px;
	background-color:#166DB6;
	transition-duration: .3s;
    transition-delay: 0s, 0s, 0s, 0s;
}

#hamburger.open > div {
	background-color:white;
	margin-bottom:5px;
}

#hamburger.open > div:nth-of-type(1) {
	transform: translateY(10px) rotate(45deg);
}

#hamburger.open > div:nth-of-type(2) {
	opacity:0;
}

#hamburger.open > div:nth-of-type(3) {
	transform: translateY(-10px) rotate(-45deg);
}

#menu {
	position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 0;
    z-index: -1;
    visibility: hidden;
	opacity: 0;
    background-color: #166DB6;
    background-color: rgba(22,109,182,.99);
    overflow: hidden;
    transition: .5s;
	font-size:1.5em;
	font-weight:bold;
}

.menu-open #menu {
	width:100%;
	width:100vw;
	z-index:50;
	visibility:visible;
	opacity:unset;
}

.mobile_menu {
	display: flex;
    flex-direction: column;
    height: 100%;
	justify-content:center;
}

.mobile_menu li {
	list-style:none;
	display:block;
	padding:5px 30px 3px;
	margin:5px 0;
	width:100%;
	background:#166DB6;
	color:white;
	white-space:nowrap;
	text-align:right;
}

.mobile_menu li a {
	text-decoration:none;
	color:white;
}

/*Footer*/

#support {
	clear:both;
	position:relative;
	width:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	flex:0 1 auto;
	background:#ccc;
	padding:10px;
	font-size:12px;
	font-size:.9rem;
	text-align:center;
}

#support_addr {
	order:2;
}

#footer {
	clear:both;
	position:relative;
	width:100%;
	display:flex;
	flex-direction:column;
	flex:0 1 auto;
	color:white;
	border-top:2px solid #fff;
	background-repeat: no-repeat;
    background-attachment: fixed;
	background-size: cover;
	background-image: url(../links/system/images/bluegrunge.webp);
	box-shadow: inset 0px 8px 6px -6px rgb(0 0 0 / 35%), inset 0px -8px 6px -6px rgb(0 0 0 / 35%);
}

#site, #addr, #cont{
	padding-left:20px;
	font-size:14px;
	font-size:1.2rem;
	width:100%;
	height:auto;
	margin:30px 0 10px;
}

#footer .foot_logo {
	position:relative;
	margin-left:-20px;
	display:inline-block;
}

#footer img {
	vertical-align:middle;
	width:100%; 
}

#footer a {
	color:white;
}

#footer strong {
	font-weight:initial;
}

#addr p {
	display:inline-block;
	vertical-align:middle;
}

#copy {
	background-color:whitesmoke;
	font-size:.8em;
	padding:5px 15px;
	color:#555;
	text-align:center;
}

#copy span {
	display:block;
}

/*Content*/

#content, #banners, #profile, #kcold{
	position:relative;
	width:100%;
	height:auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin:auto;
	flex-direction:column;
	flex: 1 0 auto;
	background:white;
}

#content {
	margin:150px auto 20px;
}

/*Banners*/

#banners {
	margin:40px 0 0;
	padding-bottom:50px;
	justify-content: center;
	text-align:center;
	background:linear-gradient( 90deg, rgba(0,0,0,0), rgba(0,0,0,0) 49.8%, #ccc 49.8%, #ccc 50.2%, rgba(0,0,0,0) 50.2%);
}

#banners h2 {
	background:white;
	border-bottom:2px solid #ccc;
}

#banners h3 {
	background: white;
	border: 2px solid #ccc;
	padding:5px 10px;
}

.banner {
	width:100%;
	align-self:center;
	padding:20px 10px;
	font-size:13px;
	font-size:1.1rem;
	margin:20px auto;
	border-bottom:2px solid #ddd;
	border-top:1px solid #ddd;
	display:flex;
	flex-direction:column;
	background-repeat: no-repeat;
    background-attachment: fixed;
	background-size: cover;
	//align-items: flex-end;
	text-align:left;
}

.even {
//	background:white;
	background-image: url(../links/system/images/greygrunge.webp);
}

.odd {
//	background:#eee;
	background-image: url(../links/system/images/wgreygrunge.webp);
}

.banner_img {
	align-self:center;
	text-align:center;
}

.banner_img img {
	max-width:90%;
	height:auto;
	max-height:150px;
}

.banner_img .thumbnails img {
	max-width:75%;
	max-height:250px;
}

.banner_img .thumbnail_label {
	font-size:.7em;
	font-weight:bold;
	margin-top:-5px;
}

.banner_img .action {
	display: none;
	font-size: .9em;
}

.banner li {
	list-style:none;
	display:block;
	padding:5px 10px 3px;
	margin:3px 0;
	width:100%;
}

.banner .product_summary {
	width: 100%
}

.banner .action {
	color:white;
	text-decoration:none;
	background: #166DB6;
	padding: 10px;
	text-align:center;
	border-radius: 25px;
	cursor:pointer;
}


/*Profile, Contact, CCT*/

#profile, #contact, #kcold {
	width:100%;
	min-height:50vh;
	align-self:center;
	padding:20px 10px 40px;
	font-size:13px;
	font-size:1.1rem;
    border-top: 1px solid #ddd;
	overflow: hidden;
	z-index: 2;
}

#profile {
	background:#166DB6;
	color:white;
	border-bottom: 2px solid #ddd;
}

#profile .child_wrapper {
	margin:10px 10px;
}

#profile .child_wrapper > div {
	color: aliceblue;
	background-color: rgb(0 0 0 / 35%);
    padding: 0px 20px 20px;
    border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: inset 0px 1px 5px rgb(0 0 0 / 35%);
}

/*CTT*/

#kcold {
	background: rgb(221,221,221);
	background: linear-gradient(0deg, rgba(221,221,221,1) 0%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 75%, rgba(245,245,245,1) 100%);
}

.bg {
	width: 120vw;
    height: 80vw;
    border-bottom-left-radius: 80vw;
    border-bottom-right-radius: 80vw;
    background-color: #CDE0EF;
    position: absolute;
    top: -60vw;
    left: -10vw;
	z-index:-1;
}

.plogo {
	margin:auto;
}

/*ContactForm*/

div.contact_form {
	font-size:.8em;
}

div.contact_form #contactForm_wrapper {
	width:100%;
	display:flex;
	flex-direction:column;
}

div.contact_form #contactForm_wrapper .row {
	display:flex;
	flex-flow:row nowrap;
}

div.contact_form #contactForm_wrapper .row.i3 {
	flex-flow:row wrap;
}

div.contact_form #contactForm_wrapper .item,
div.contact_form #contactForm_wrapper .row.i3 .item.half_full {
	max-width:100%;
	flex:0 0 100%;
	padding:5px 10px;
}

div.contact_form #contactForm_wrapper .row.i2 .item,
div.contact_form #contactForm_wrapper .row.i3 .item {
	max-width:50%;
	flex:0 0 50%;
}

div.contact_form #contactForm_wrapper .row.i2 .item.full {
	max-width:67%;
	flex:0 0 67%;
}

div.contact_form #contactForm_wrapper .row.i2 .item.third {
	max-width:33%;
	flex:0 0 33%;
}

div.contact_form label {
	display:block;
	width:100%;
	height:18px;
	height:1.5em;
	font-weight:bold;
}

div.contact_form span.required {
	color:#166DB6;
	font-size:1.2em;
}

div.contact_form label.error {
	color:#166DB6;
	font-size:.9em;
}

div.contact_form input, div.contact_form textarea, div.contact_form select {
	font-weight:normal;
	font-size:20px;
	line-height:25px;
	width:100%;
	font-family:inherit;
}

div.contact_form input, div.contact_form select {
	height:35px;
}

div.contact_form :focus {
	outline-color:#166DB6;
}

div.contact_form input[type='submit'] {
	float:right;
	height: auto;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.2em;
    padding: 10px;
    background-color: #166DB6;
    border-radius: 3px;
	border:1px solid #666;
	outline:none;
	cursor:pointer;
}

div.contact_form input[type='submit']:hover {
	color:white;
	background-color:#448ac4;
	transform: scale(1);
    transition: background-color .3s, transform .3s ease-out;
}

div.contact_form #success, div.contact_form #error {
    display:none;
	position:absolute;
	top:0;
	left:0;
	padding:10px;
	height:100%;
}

div.contact_form #success span, div.contact_form #error span {
    display:block;
	position:relative;
    width:100%;
	text-align:center;
}

div.contact_form #success span p, div.contact_form #error span p {
    margin-top:6em;
	font-size:24px;
	font-size:2.4em;
}

div.contact_form #success span p {
  color:#166DB6;
}

div.contact_form #error span p {
  color:#c0392b;
}

div#login {
	padding:10px 10vw;
}

@media screen and (min-width: 400px) {
	#header.scrolled {
		height:100px;
	}
}

@media screen and (min-width: 725px) {
	.banner {
		flex-direction:row;
		align-self:stretch;
		width: 98%;
		box-shadow: 3px 5px 5px rgb(0 0 0 / 35%);
	}
	
	.banner.odd {
		//flex-direction:row-reverse;
	}
	
	.banner_img {
		width:35%;
	}
	
	.banner .product_summary {
		width: 70%
	}
	
	.banner_img .thumbnail_label {
		font-size: .7em;
	}
	
	#profile .child_wrapper, #contact .child_wrapper, #kcold .child_wrapper {
		margin:10px auto;
		max-width:600px;
	}
}

@media screen and (min-width: 1000px) {
	
	#header.scrolled {
		background:unset;
		box-shadow:unset;
	}
	
	.scroll-down {
		transform: none;
	}
	
	/*MENU*/
	
	#secondary_menu_wrapper {
		display:none;
	}
	
	#menu {
		position: relative;
		right: 0;
		top: 0;
		height: 100%;
		width: auto;
		z-index: 50;
		opacity: 1;
		background-color: #166DB6;
		background-color: rgba(22,109,182,.0);
		overflow: hidden;
		transition: 0s;
		font-size:1em;
		font-weight:bold;
		visibility: visible;
	}
	
	.menu-open #menu {
		width:auto;
		z-index:50;
		visibility:visible;
		opacity:unset;
	}
	
	.mobile_menu {
		flex-direction:row;
		align-items:center;
		margin-right: 20px;
	}
	
	#header.scrolled .mobile_menu {
		height:auto;
	}
	
	.mobile_menu li {
		margin:10px;
		border-radius: 25px;
		padding: 10px;
	//	font-weight: normal;
		font-size:1em;
		font-style:italic;
		background:unset;
	}
	
	.mobile_menu li a {
		color:#166db6;
	}
	
	.mobile_menu li:hover a {
		color: #448ac4;
	}
	
	#header.blueBG #logo img {
		content:url(../links/system/images/logo_simple_dark.webp);
	}
	
	.blueBG .mobile_menu li a {
		color:#333;
	}
	
	.blueBG .mobile_menu li a:hover {
		color:#222;
	}
	
	/*Footer*/
	#support {
		background:#fff;
		margin-bottom:20px;
	}
	
	/*Content*/
	
	#content {
		padding-top:2px;
		border-bottom: 2px solid #ddd;
	}
	
	#banners {
		margin-top:auto;
		margin-bottom:0;
		flex-direction:row;
		flex-wrap:wrap;
		padding:40px;
		padding-bottom:100px;
		border:2px solid #ccc;
		border-width:2px 0px;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		background-image: url(../links/system/images/greygrunge.webp);
		background-image: linear-gradient( 90deg , rgba(0,0,0,0), rgba(0,0,0,0) 31%, #ccc 31%, #ccc 31.2%, rgba(0,0,0,0) 31.2%, rgba(0,0,0,0) 69.1%, #ccc 69.1%, #ccc 69.3%, rgba(0,0,0,0) 69.3%), url(../links/system/images/greygrunge.webp);
	}
	
	#banners>div {
	//	border-right:1px solid #ccc;
	}
	
	#banners>div:last-child {
	//	border-right:0;
	}
	
	#banners h2 {
		background:none;
		border-bottom:0;
	}
	
	.cat_wrapper, .col_wrapper {
		width:40%;
		flex-direction:column;
		padding:20px 10px;
	}
	
	.col_wrapper>.cat_wrapper {
		width:100%;
		padding:0;
	}
	
	.banner {
		flex-direction:column;
		box-shadow: inset 0px 1px 5px rgb(0 0 0 / 75%);
		border-radius: 3px;
		//border:2px solid #ccc;
	}
	
	.even, .odd {
	//	background-image: url(../links/system/images/wgreygrunge.webp);
		background:white;
	}
	
	.banner_img {
		width:75%;
	}
	
	.banner .product_summary {
		width: 100%
	}
	
	.banner .action {
	//	background: white;
	//	color: #333;
		border: 1px solid #666;
		border-radius:5px;
	}
	
	#profile .child_wrapper, #contact .child_wrapper, #kcold .child_wrapper {
		max-width:650px;
	}
	
	#kcold {
		border: 2px solid #ccc;
		border-width: 2px 0px;
	}
	
	#contact {
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		background-image: url(../links/system/images/wgreygrunge.webp);
	}
	
	div.contact_form {
		background:white;
		padding:40px 10px;
		box-shadow:inset 0px 0px 6px #333;
		border-radius:2px;
	}
	
}

@media screen and (min-width: 1650px) {
	.banner {
		flex-direction:row;
	}
	
	.banner_img {
		width:40%;
	}
	
	.banner_img .action {
		display: block;
		font-size: .9em;
		padding: 7px;
		margin: 5px auto;
		width:95%;
	}
	
	.banner .product_summary {
		width: 60%
	}
	
	.product_summary .action {
		display: none;
	}
}