@charset "UTF-8";
/* All clamps 320 - 750 unless noted */


body {
  scroll-padding-top: 3em;
}


body {
	background: #FFF;
}

body.slideNav {
	overflow: hidden;
}




/* HEADER ------------------------------ */

body>header {
	background: #FFF;
	display: contents;
	position: relative;
	z-index: 1;
}

body>header:before {
	background-color: #000;
	content: '';
	display: block;
	height: 100vh;
	left: 100vw;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: left 0ms ease 200ms, opacity 200ms ease;
	width: 100vw;
	z-index: 3;
}

body.slideNav>header:before {
	left: 0;
	opacity: .5;
	transition: left 0ms ease 0ms, opacity 200ms ease;
}

#brand {
	display: block;
	margin: 0 auto;
	max-width: 15em;
	padding: 1em 0;
	width: 100%;
}

#navContainer {
	background-color: var(--ws-light-2);
	bottom: 0;
	left: 100%;
	max-height: 100vh;
	overflow: auto;
	position: fixed;
	top: 0;
	transition: left 200ms ease;
	width: 75%;
	z-index: 3;
	-webkit-overflow-scrolling: touch;
}

body.slideNav #navContainer {
	left: 25%;
}

#navContainer nav {
	display: inline;
}

#navContainer ul {
	display: block;
	margin: 0;
	padding-left: 0;
	width: 100%;
}

#navContainer li {
	border-top: 1px solid rgba(var(--ws-purple-rgb),0.125);
	display: block;
	position: relative;
	width: 100%;
}

#navContainer li li {
	border: 0;
}

#navContainer :where(a, .toggleNav) {
	color: var(--ws-purple);
	display: block;
	height: auto;
	padding: 1em;
	width: 100%;
}

#navContainer .toggleNav {
	background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1em;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
	text-align: left;
  text-transform: none;
}

#navContainer .toggleNav::before {
  background: url('/images/icons/close.svg') no-repeat left center / contain;
  content: '';
  line-height: 1;
  margin: 0 .375em 0 0;
  padding-right: .875em;
  position: relative;
  top: .0625em;
}

#navContainer li.on a {
  background: rgba(255,255,255,0.3);
}

#navContainer li.open {
	background-color: rgba(255,255,255,0.3);
}

#navContainer li>button {
	aspect-ratio: 1;
	background: var(--ws-purple);
	box-shadow: 0 0 0 1px var(--ws-purple);
	border: 2px solid var(--ws-light-2);
	box-sizing: content-box;
	display: block;
	height: 1.125em;
	inset: .75em .75em auto auto;
	outline-offset: 2px;
	padding: 0;
	position: absolute;
	transform: rotate(45deg);
}

#navContainer .menu-item-has-children > div {
	display: grid;
	grid-template-rows: 0fr;
	transition: var(--ws-transition);
}

#navContainer .menu-item-has-children.open > div {
	grid-template-rows: 1fr;
}

#navContainer ul ul {
  overflow: hidden;
}

#navContainer ul div ul a {
	padding: .75em .75em .75em 2em;
}

#navContainer ul div ul li.on a {
	background-color: rgba(255,255,255,0.6);
}

#navContainer li>button::before,
#navContainer li>button::after {
	background-color: #FFF;
	content: '';
	display: block;
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform-origin: center center;
	transition: transform .2s ease;
	width: 60%;
}

#navContainer li>button::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

#navContainer li>button::after,
#navContainer li.open > button:before {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#mainnav>ul>li>a>span {
	color: inherit;
	transition: none;
}




/* ANCILLARY ------------------------------ */

#ancillary {
	display: block;
}

#ancillary .search {
	border-top: 1px solid rgba(255,255,255,0.125);
	display: block;
	overflow: auto;
	padding: 1rem;
}

#ancillary .search input[type="text"] {
	width: calc(100% - 7rem);
}

#ancillary .search input[type="submit"] {
	padding-inline: .5em;
	width: 6.5rem;
}




/* MOBILE NAV ------------------------------ */

#mobilenav {
	align-items: center;
	background-color: #000;
	display: flex;
	justify-content: center;
	position: sticky;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mobilenav :is(a, button) {
	color: #FFF;
	flex: 1 1 auto;
	font-size: 1em;
	line-height: 2.25;
}

#mobilenav button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: flex;
	font-family: 'Inter', sans-serif;
	justify-content: center;
	padding: 0;
	text-transform: none;
}

#mobilenav button::after {
  aspect-ratio: 1;
  background: #FFF;
  content: '';
  display: inline-block;
  margin: 0 0 0 .25em;
  mask:  url('/images/icons/bars.svg') no-repeat center / contain;
  height: 1em;
}




/* CMS PAGE ELEMENTS ------------------------------ */

.photoright {
	margin: 0 0 .75em 1em;
}

.photoleft {
	margin: 0 1em .75em 0;
}

.twoCol, .threeCol, .resCol {
	columns: auto;
	column-width: 13em;
}




/* FORMS AND INPUTS ------------------------------ */

.formTable, .formTable table {
	display: block;
	width: 100%;
}

.formTable tbody {
	display: block;
}

.formTable tr {
	display: block;
}

.formTable td {
	display: block;
	padding: 0;
	width: 100%;
}

.formTable :is(input:is([type="text"], [type="password"], [type="tel"], [type="number"], [type="email"], [type="url"]), textarea) {
	margin-bottom: 1em
}

.formTable table td + td {
	padding-left: 0 !important;
}


/* New contact form markup */
.form-flex :where(.half, .third) {
	width: 100%;
}

.form-flex .quarter {
	width: calc(50% - .5em);
}





/* FOOTER ------------------------------ */

body>footer .wrap {
	align-items: stretch;
	align-content: stretch;
	display: flex;
	flex-direction: column;
}

#web-solutions {
	order: 1;
}

body>footer .wrap nav a+span:before {
	content: "|";
	margin: 0 0.5em;
}




/* MAIN ------------------------------ */

#content {
	padding: 2em 0 2.5em;
}

#content.fullWidth {
	padding: 2em 0 4em;
}

#sidenav {
	margin-block: 0 4em;
}



/* HOMEPAGE HERO RIBBON ------------------------------ */

.hero {
  display: block;
}

.hero .rotator {
  position: relative;
}

.hero .textbox {
  padding: 2em var(--ws-gap);
	position: relative;
}

.hero .textbox::before {
  background: url('/images/flower.svg') no-repeat center / auto 90%;
  content: '';
	inset: 0;
	opacity: .8;
	position: absolute;
}

.hero h1 {
  font-size: var(--ws-text-36);
}

.hero h1>span {
	font-size: .65em;
}

.hero h1>span::before {
  margin: 1em auto
}



/* HOMEPAGE CALLOUTS RIBBON ------------------------------ */

.callouts ul.ws-flex {
  --ws-column-count: 2;
}

.callouts h2>span {
	font-size:  .7em;
}

.callouts ul.ws-flex>li>a {
  display: block;
}




/* HOMEPAGE WELCOME RIBBON ------------------------------ */

.welcome .textbox>div {
  padding: 3em var(--ws-gap);
}


.welcome h2>span {
  font-size: .7em;
}




/* CTA RIBBON ------------------------------ */

.cta .textbox {
  padding: 3em var(--ws-gap);
}

.cta h2>span {
	font-size: .7em;
}




/* MAX-WIDTH MEDIA QUERIES ------------------------------ */

/* 500px */
@media (max-width: 31.25em) {

  .callouts ul.ws-flex {
    --ws-column-count: 1;
  }

}




/* -------~~~~~~~======= STYLE-M.CSS =======~~~~~~~------- */
