/*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;
}

:root {
  --main-link-color: #243054;
  --highlight-color: #5977CF;
  --main-offset-color: #B72120;
}

html {
	overflow-y: auto;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	height:100%;
	width:100%;
	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:10px;
	margin-bottom:5px;
	font-size:1.13em;
}

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

a, .blue {
	color:var(--link-color);
}

.hide {
	display:none;
}

.menu_id {
	display:none;
}

strong {
	font-weight:bold;
}

.col1 {
	width:100%;
}

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

h2 {
	text-align:center;
	font-weight:bold;
	font-size:1.6em;
	letter-spacing:1.5px;
	padding:30px 0 20px;
	width:100%;
	font-family:"Merriweather", serif;
//	font-style: normal;
//	background-image: url(/links/system/images/redline_beat.jpg), url(/links/system/images/redline.jpg);
//    background-position: top right, top left;
//    background-repeat: no-repeat, repeat;
}

h3 {
	margin: 20px 0;
	font-weight:bold;
	font-size:1.5em;
	width:auto;
	font-family:"Tinos", serif;
	font-style: normal;
}

h4 {
	margin: 10px 0;
	font-weight:bold;
	font-size:1.3em;
	color:#222;
	width:auto;
}

.link-transition {
	transition: all .2s ease-out;
}

.tinos-font {
	font-family:"Tinos", serif;
	font-style: normal;
}

.noto-font {
	font-family: "Noto Serif", cursive;
	font-optical-sizing: auto;
	font-weight:400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

/**/

#container {
	position:relative;
	margin:auto;
	min-height:100%;
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	background-color: #fff;
	background-image: linear-gradient(#fff 30%, #ccc);
}

/*Banner*/

#banner {
    background-color: var(--main-link-color);
    width: 100%;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0);
	margin-bottom: 10px;
	color: white;
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	display: none;
}

#banner div, #banner p.contact strong
{
	display: inline;
}

#banner br {
	display:none;
}

#banner p.contact {
	margin-bottom: 0;
}

#banner p.contact span {
	display:block;
}

#banner p.contact a, #banner p.contact span {
	padding-right: 10px;
	text-decoration: none;
}

#banner .social a {
    height: 2.5rem;
    width: 2.5rem;
}

/*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;
	align-items: center;
	transition: transform 0.4s;
	padding:20px 0;
}

#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:80%;
	padding: 0 10px;
}

#logo img {
    height: auto;
    max-height: 150px;
    width: auto;
    max-width: 700px;
	-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;
}

/*Social*/

.social {
	position: relative;
}

.social_icon {
    width: 100%;
    height: 100%;
}

.social a {
    height: 3.5rem;
    width: 3.5rem;
    display: inline-block;
    fill: #fff;
    color: #fff;
    background: var(--highlight-color);
    border-radius: 100%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .1);
    margin: 1rem 1rem;
}

.social a:hover {
    fill: var(--main-link-color);
    color: var(--main-link-color);
    background: #fff;
    transform: scale(1.05);
    transition: background-color .3s, transform .3s ease-out;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .1);
}

/*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: var(--main-link-color);
	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: var(--main-link-color);
    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;
	padding-top:50px;
}

.mobile_menu li {
	list-style:none;
	display:block;
	padding:5px 30px 3px;
	margin:5px 0;
	width:100%;
	background:var(--main-offset-color);
	color:white;
	white-space:nowrap;
	text-align:right;
}

.mobile_menu li.social {
	background: inherit;
	text-align: center;
}

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

.mobile_menu li a:hover {

}

/*Footer*/

#support {
	clear:both;
	position:relative;
	width:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	flex:0 1 auto;
	background: var(--main-link-color);
	padding:50px 10px;
	font-size:12px;
	font-size:2em;
	text-align:center;
	color:white;
	box-shadow: 0px -1px 6px 0px rgb(0 0 0 / 35%);
}

#support a {
	margin: 20px 0;
	color: white;
	text-decoration: none;
	padding: 10px 15px;
	border: 2px solid white;
	border-radius: 30px;
}

#support a:hover {
	color: var(--main-link-color);
	background: white;
	text-decoration: none;
	padding: 10px 15px;
	border: 2px solid white;
	border-radius: 30px;
}

#footer {
	clear:both;
	position:relative;
	width:100%;
	display:flex;
	flex-direction:column;
	flex:0 1 auto;
//	border-top:2px solid #fff;
	box-shadow: inset 0px 8px 6px -6px rgb(0 0 0 / 35%), inset 0px -8px 6px -6px rgb(0 0 0 / 35%);
	background-color: white;
}

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

#footer .foot_logo {
	position:relative;
}

#footer img {
	vertical-align:middle;
	max-height: 200px;
	max-width: 300px;
    height: auto;
    width: auto;
	margin:auto;
	display: block;
}

#footer a {
	
}

#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;
}

/*Window*/

.window {
	width: 100%;
    font-size: 1.1em;
	display:flex;
	flex-direction:row;
	align-items:stretch;
	justify-content:center;
	z-index:1;
	position:relative;
	box-shadow: 0px 1px 6px 2px rgb(0 0 0 / 35%);
	margin-top: 20px;
}

.window:before {
	content: " ";
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;  
	opacity: .8; 
	z-index: -1;
	background-color: var(--main-offset-color);
//	background: url(/links/system/images/water.webp) no-repeat fixed bottom;
	background-size: cover;
}

#home-page .window {
//	font-size: 1.2em;
	min-height: 600px;
	margin-top: 0;
}

#home-page .window:before {
//	opacity: .7;
	background: url(/links/system/images/bg_couple.jpg) no-repeat 0% 50%;
	background-size: cover;
}

.window .card {
	color: black;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background: rgba(200, 205, 250, .5);
    position: relative;
    padding: 30px 20px;
    align-content: center;
	display:none;
}

.window h2 {
	padding:20px;
}

/*Content*/

main {
	position:relative;
	width:100%;
	height:auto;
	display: flex;
	margin:auto;
	flex-direction:column;
	flex: 1 0 auto;
	font-size: 1.1em;
}

main {
	margin: 30px auto 0;
	align-items: center;
}

.card {
	margin-top:10px;
	padding:20px;
}

#content .card:first-child {
	margin-top:50px;
}

#content .card:last-child {
	margin-bottom:50px;
}

.card.img {
	display:flex;
	flex-direction:column;
}

.card.img img.photo {
	margin: auto;
	border-radius: 5px;
	box-shadow: 0px -1px 6px 0px rgb(0 0 0 / 35%);
}
#content {	margin: auto;}

main ul, main ol {
	margin-left: 50px;
	text-indent: 10px;
}

a.callout {
	display:inline-block;
	margin-top:15px;
	background: var(--main-link-color);
	padding: 15px 20px;
	border-radius: 30px;
	text-decoration: none;
	color:white;
	font-weight:bold;
}

a.callout.orange {
	background: grey;
}

a.callout:hover {
	background: var(--highlight-color);
}

.flex-wrapper {
	display:flex;
	flex-direction:column;
	align-items:center;
}

.col60, .col40 {
	width:100%;
}

/*About and Products*/

.prov {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: whitesmoke;
    border: 1px solid #ccc;
    margin: 30px auto;
    border-radius: 5px;
    box-shadow: 0px -1px 6px 0px rgb(0 0 0 / 35%);
	padding: 20px;
}

.prov.center {
	flex-direction: column;
	padding: 20px;
}

.prov img {
	margin-bottom: 20px;
    border-radius: 5px;
}

/*
#product_panel {
	display: flex;
    flex-flow: row;
}

.panel {
	width: 22%;
	margin: 5px;
	padding: 15px;
	border-radius: 5px;
	background-color: #ddd;
}

.panel ul {
	margin-left: 25px;
}
*/

/*FAQ*/

.question, .answer {
	padding:20px;
}

.question {
	background-color:var(--main-link-color);
	color:white;
	font-weight: bold;
	border-radius:5px 5px 0 0;
}

.answer {
	background-color: #eee;
	border-radius:0 0 5px 5px;
	margin-bottom:20px;
	padding: 20px 30px;
}

/*Contact*/

p.contact {
	display:inline-block;
	text-align:left;
}

p.contact strong {
	display: block;
    width: 100%;
    font-weight: bold;
	margin-top:10px;
}

#error, #success, #valid {
	display:none;
	background-color: whitesmoke;
    font-size: 2em;
    text-align: center;
    align-content: center;
	height: 100%;
    width: 100%;
    z-index: 3;
    position: absolute;
	top:0;
	left:0;
}

div.contact_form {
	background-color:whitesmoke;
	order: 2;
	margin-bottom: 50px;
	border: 1px solid #ccc;
	border-radius: 5px;
    box-shadow: 0px -1px 6px 0px rgb(0 0 0 / 35%);
}

div.contact_form, div.contact_card {
	padding: 30px 10px;
}

div.contact_form fieldset {
	position:relative;
}

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 .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 label {
	font-family:"Tinos", serif;
    display: block;
    width: 100%;
    height: 18px;
    height: 1.5em;
    font-weight: bold;
}

div.contact_form label.check {
	font-family: unset;
	margin-right: 15px;
	width:auto;
	display:inline-block;
	font-weight:normal;
	vertical-align:text-top;
	height:15px;
}

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 input[type='checkbox'] {
	display:inline-block;
	height:15px;
	width:15px;
	vertical-align:middle;
}

div.contact_form input[type='checkbox']:checked {
    accent-color: var(--main-offset-color);
}

div.contact_form .error-messages, div.contact_form .required {
	color: var(--highlight-color);
}

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

}

@media screen and (min-width: 750px) {
	#header.scrolled {
		background:unset;
		box-shadow:unset;
	}
	
	.scroll-down {
		transform: none;
	}
	
	#banner {
		display: flex;
	}
	
	/*Footer*/
	
	#footer {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	#footer .col3 {
		width:48%;
		padding:20px;
	}
	
	/*Content*/
	
	.window .card {
		font-size: 1.2em;
		padding: 50px;
	}
	
	#content {
		width: 85%;
	}
	
	main {
		margin: 0 auto;
	}
	
	div.contact_form, .prov {
		border-radius: 20px
	}
	
	.card.img {
		display:flex;
		flex-direction:row;
	}

	.card.img img.photo {
		margin-right: 50px;
	}

}

@media screen and (min-width: 900px) {
	
	#banner p.contact span {
		display:inline;
	}
	
	#logo {
		display:inline-block;
		position:relative;
		z-index:10;
		width:30%;
		padding: 0 20px;
	}
	
	#logo img {
		max-height: 200px;
	}
	
	/*MENU*/
	
	#secondary_menu_wrapper, .mobile_menu .social {
		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;
		padding-top: 0;
	}
	
	#header.scrolled .mobile_menu {
		height:auto;
	}
	
	.mobile_menu li {
		margin:5px;
		border-radius: 25px;
		padding: 10px;
	//	font-weight: normal;
		font-size:1em;
		background:unset;
	}
	
	.mobile_menu li.button {
	//	background: var(--highlight-color);
		border: 2px solid var(--highlight-color);
		padding: 10px 15px;
		border-radius: 30px;
		cursor:pointer;
	}
	
	.mobile_menu li a {
		color: var(--main-link-color);
	}
	
	.mobile_menu li.button a {
		color: var(--highlight-color);
	}
	
	.mobile_menu li a:hover {
		color: var(--highlight-color);
	}
	
	.mobile_menu li.button:hover {
		background: var(--highlight-color);
	}
	
	.mobile_menu li.button:hover a {
		color: white;
	}
}

@media screen and (min-width: 1000px) {
	
	#header {
		width: 85%;
	}
	
	#content {
		width: 65%;
	}
	
	#support {
		padding: 30px;
		font-size: 1.8em;
		flex-direction: row;
		align-items: center;
		justify-content: space-evenly;
	}
	
	#support a {
	//	margin-top:0;
	}
	
	#footer .col3 {
	//	width:33%;
	}
	
	.window .card {
		width: 80%;
		padding: 50px;
	}
	
	.flex-wrapper {
		flex-direction:row;
		align-items: unset;
		justify-content: space-between;
	}
	
	div.contact_form {
		order:0;
		margin-bottom: 0;
		border:unset;
		border-radius:unset;
		box-shadow:unset;
	}
	
	.col60 {
		width:65%;
	}

	.col40 {
		width:35%;
	}
	
}

@media screen and (min-width: 1200px) {
	
	.mobile_menu li {
		margin:10px;
	}
	
	.prov {
		flex-direction: row;
		padding: 20px 0;
		max-width: 1100px;
	}

	.prov.left {
		padding-right:20px;
	}

	.prov.right {
		flex-direction: row-reverse;
		padding-left: 20px;
		text-align: right;
	}

	.prov img {
		margin: 30px;
	}
}

@media screen and (min-width: 1650px) {
	#header {
		width: 65%;
	}
	
	#content {
		width: 55%;
	}
	
	#support {
		font-size: 2em;
	}
	
	.window .card {
		width: 60%;
		max-width: 1200px;
		padding: 50px;
	}
}