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



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




/* HOVER ------------------------------*/

.content a:not(.button):is(:hover, :focus-visible) {
  color: #000;
  text-decoration-color: #000;
}


:is(button, .button, input:is([type="button"], [type="submit"], [type="reset"])):is(:hover, :focus-visible) {
  background-color: #FFF;
  color: var(--ws-purple);
}

:is(button, .button).black:is(:hover,:focus-visible) {
  color: #000;
}

:is(button, .button).outline:is(:hover,:focus-visible) {
  background: var(--ws-purple);
  border-color: var(--ws-purple);
  color: #FFF;
}

:is(button, .button):is(.lt-purple, .lt-purple-2):is(:hover,:focus-visible) {
  background: var(--ws-purple);
  border-color: var(--ws-purple);
  color: #FFF;
}


#sidenav>ul>li>a:is(:hover, :focus-visible),
:is(#sidenav>ul>li>ul>li>a, #sidenav>ul>li>ul>li.on>a):is(:hover, :focus-visible),
:is(#sidenav>ul>li>ul>li>ul>li>a, #sidenav>ul>li>ul>li>ul>li.on>a):is(:hover, :focus-visible) {
  background: var(--ws-purple);
  color: #FFF;
}

#sidenav>ul>li.on>a:is(:hover, :focus-visible) {
  background: #000
}


fieldset label:first-of-type input:is(:hover, :focus-visible) {
  outline: 1px solid #FF0000;
}





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

body:not(#tinymce) {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* Fixes horizontal overflow issue */
  grid-template-rows: auto auto 1fr;
  min-height: 100vh;
}

body>footer {
  align-self: end;
}

body.management {
  margin-top: 0 !important;
}





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

body>header {
  align-items: center;
  background: #FFF;
  border-bottom: .3125em solid var(--ws-purple);
  display: flex;
  justify-content: space-between;
  padding-inline: clamp(0.5em, -0.333em + 1.78vw, 1em);
  position: sticky;
  top: 0;
  z-index: 1;
}


body.scroll>header {
  box-shadow: 0 1px 1px rgba(0,0,0,.015),0 2px 2px rgba(0,0,0,.015),0 4px 4px rgba(0,0,0,.015),0 8px 8px rgba(0,0,0,.015),0 16px 16px rgba(0,0,0,.015);
}

body.management>header {
  margin-top: 35px;
  top: 35px;
}


#brand {
  display: block;
  max-width: clamp(12em, -2.792em + 31.56vw, 20.875em);
  padding-block: .875em;
  width: 100%;
}

#brand img {
  display: block;
  height: auto;
  width: 100%;
}

nav ul {
  margin: 0;
}

#mainnav {
  overflow: visible;
}

#mainnav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#mainnav li {
  display: inline-block;
  position: relative;
}

#mainnav a {
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

/* T1 */
#mainnav>ul>li>a {
  color: #000;
  font-size: clamp(0.9375em, 0.729em + 0.44vw, 1.0625em);
  padding: .97em clamp(0.5em, -0.021em + 1.11vw, 0.813em);
}

#mainnav>ul>li:hover>a,
#mainnav>ul>li>a:focus-visible {
  background: #000;
  color: #FFF;
}

#mainnav>ul>li.on>a {
  background: var(--ws-purple);
  color: #FFF;
}


/* Accessible dropdowns */
#mainnav>ul>li.menu-item-has-children>a {
  padding-right: 1.5em;
}

#mainnav>ul>li>button {
  background: transparent;
  border: 0;
  font-size: 1rem;
  height: 1.5rem;
  inset: 50% clamp(0.75em, 0.333em + 0.89vw, 1em) auto auto;
  padding: 0;
  pointer-events: none;
  position: absolute;
  transform: translate(50%,-50%);
  width: 1.5rem;
}

#mainnav>ul>li>button:before {
  background: #000;
  content: '';
  height: .75rem;
  left: 0;
  mask:  url('/images/icons/misc/chevron-down.svg') no-repeat center / contain;
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  transition: var(--ws-transition);
}

#mainnav>ul>li.on>button:before,
#mainnav>ul>li:hover>button:before,
#mainnav>ul>li>a:focus-visible + button:before {
  background: #FFF;
}


/* Dropdown menus */

#mainnav li div {
  background: var(--ws-lt-purple);
  height: auto !important;
  left:0;
  opacity: 0;
  padding: .5em 0;
  position: absolute;
  top: -200vh;
  visibility: hidden;
  width: 16em;
}

#mainnav li:hover div,
#mainnav>ul>li.tapped > div,
#mainnav>ul>li>a:focus + ul,
#mainnav>ul>li.expand>div {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* fade out */
#mainnav li:not(.expand) div {
  transition:
  opacity .2s ease-out 0.25s,
  visibility .2s ease-out 0.25s,
  top 0s linear 0.5s;
}

/* fade in */
#mainnav>ul>li:is(:hover, .expand)>div {
  transition:
  opacity .2s ease-in .25s,
  top 0s linear .25s,
  visibility .2s ease-in 0s;
}

#mainnav>ul>li:last-child div {
  left: auto;
  right: 0;
}

#mainnav>ul>li>div>ul>li {
  display: block;
  width: 100%;
}

#mainnav>ul>li>div>ul>li>a {
  color: #000;
  display: block;
  padding: .595em 2em .595em .875em;
  text-align: left;
}

#mainnav>ul>li>div>ul>li>a::after {
  aspect-ratio: 1;
  background: var(--ws-purple);
  content: '';
  height: .3125em;
  inset: .9375em 1em auto auto;
  opacity: 0;
  outline: 1px solid  var(--ws-purple);
  outline-offset: 1px;
  transform: rotate(-45deg);
  transition: var(--ws-transition);
  position: absolute;
}

#mainnav>ul>li>div>ul>li>a:is(:hover, :focus-visible) {
  background: #FFF;
  color: var(--ws-purple);
}

#mainnav>ul>li>div>ul>li>a:is(:hover, :focus-visible)::after {
  opacity: 1;
}





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

#ancillary {
  font-size: .8em;
  position: absolute;
  right: 0;
  top: 0;
}

#ancillary ul {
  display: inline;
}

#ancillary li {
  display: inline;
}

#ancillary a {
  color: #999;
  display: inline-block;
  padding: .5em .75em;
  text-decoration: none;
}

#ancillary li.on a,
#ancillary a:is(:hover, :focus-visible) {
  color: #666;
}

#ancillary li.on a {
  color: #666;
  text-decoration: none;
}

#ancillary .search {
  display: inline-flex;
}

#ancillary .search input {
  display: inline-block;
  width: auto;
}


/* mobile */
#mobilenav, .menu {
  content-visibility: hidden;
  display: none;
}





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

main.interior>div.wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

main.interior>div>#content {
  flex: 1 0 auto;
  margin-inline: auto;
  min-height: 37.5em;
  overflow: hidden;
  padding: 3em 0 5.25em 1.6875em;
  position: relative;
  width: calc(100% - 14.375rem);
}

main.interior>div.wrap:has(>aside) #content {
  margin-inline: auto 0;
  max-width: 58.25em;
}


body.fullWidth main>div>#content,
main.interior>div.wrap:not(:has(>aside)) #content {
  float: none;
  margin: 0 auto;
  max-width: 64em;
  padding: 3em 0 5.25em;
  width: 100%;
}

main.interior>div>aside {
  width: 13.75rem;
}

#sidenav {
  margin-block: 4em 5.25em;
  position: sticky;
  top: 10em;
}





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

.photoright {
  margin: 0 0 2em clamp(2em, -1.333em + 7.11vw, 4em);
}

.photoleft {
  margin: 0 clamp(2em, -1.333em + 7.11vw, 4em) 2em 0;
}

.wsManagementLogin td:first-child {
  text-align: right;
  width: 40%;
}

.twoCol {
  columns: 2;
}

.threeCol {
  columns: 3;
}

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

.shareIcons a:is(:hover, :focus-visible) {
  background-color: #FF0000;
}


.packages.ws-flex {
  --ws-gap: 1.5em;
  --ws-column-count: 3;
}

/* FORMS ------------------------------ */

.formTable td {
  width: 50%
}

.formTable td {
  padding: 0 0 .5em .5em
}

.formTable td:first-child {
  padding: 0 .5em .5em 0
}

.formTable td[colspan="2"] {
  padding-right: 0
}

.formTable.formLoose,
.formTable.formLoose td {
  width: auto
}


/* New contact form markup */
.form-flex .half {
  width: calc(50% - .5em);
}

.form-flex .third {
  width: calc(33.33% - .5em);
}

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





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

body>footer #web-solutions {
  display: inline-block;
}

body>footer .social a:is(:hover,:focus-visible) {
  background: #FFF;
}

body>footer .social a:is(:hover,:focus-visible)::after {
  background: var(--ws-purple);
}

body>footer a:is(:hover, :focus-visible) {
  color: #FFF;
  text-decoration-color: #FFF;
}

body>footer .copyright a:is(:hover,:focus-visible) {
  color: var(--ws-purple);
  text-decoration-color: var(--ws-purple);
}

body>footer nav span:not(:first-of-type):before {
  content: "|";
  margin: 0 0.5em
}





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

.hero {
  z-index: 1;
  --ws-column-count: 12;
}

.hero .rotator {
  grid-row: 1 / 2;
  grid-column: 1 / -1;
}

.hero .textbox {
  align-items: center;
  display: flex;
  grid-column: 8 / -1;
  grid-row: 1 / 2;
  max-width: 36.375em;
  position: relative;
  top: clamp(1em, -3.167em + 8.89vw, 3.5em);
  z-index: 0;
}

.hero .textbox::before {
  aspect-ratio: 1;
  background: url('/images/hero-flower.svg') no-repeat center / contain;
  content: '';
  height: 115%;
  inset: 50% auto auto 50%;
  min-height: clamp(28.75em, 16.25em + 26.67vw, 36.25em);
  position: absolute;
  transform: translate(-50%,-50%);
  z-index: -1;
}

.hero .textbox>div {
  position: relative;
  top: 1em;
}

.hero h1 {
  font-size: var(--ws-text-55);
  font-size: clamp(2.5em, 0.938em + 3.33vw, 3.438em);
}

.hero button.play-pause:is(:hover,:focus-visible) {
  background: #000;
}

.hero h1>span {
  font-size: .5em;
  margin-inline: auto;
  max-width: 25rem;
}

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




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

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

.callouts h2>span {
  color: var(--ws-purple);
  font-size:  .6em;
}

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

.callouts span.learn-more {
  margin-top: auto;
}

.callouts ul.ws-flex>li>a:hover {
  background: rgba(var(--ws-purple-rgb), .15);
  border-color: #000;
  outline-color: #000;
}

.callouts ul.ws-flex>li>a:is(:hover,:focus-visible) strong.title {
  color: #000;
}

.callouts ul.ws-flex>li>a:is(:hover,:focus-visible) span.learn-more {
  color: var(--ws-purple);
}

.callouts ul.ws-flex>li>a:is(:hover,:focus-visible)::after {
  background: #000;
  height: 1.75em;
}




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

.welcome {
  display: flex;
}

.welcome figure {
  width: 41%;
}

.welcome .textbox {
  align-items: center;
  display: flex;
  width: 59%;
}

.welcome .textbox>div {
  margin-inline: auto;
  max-width: max(38.25em, 90%);
  padding: 3.5em var(--ws-gap);
}

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



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

.cta {
  display: flex;
  flex-direction: row-reverse;
}

.cta .images {
  width: 53%;
}

.cta .textbox {
  align-items: center;
  display: flex;
  padding: 3.5em var(--ws-gap) 3.5em var(--ws-padding);
  width: 47%;
  --ws-padding: clamp(2rem, -5.125rem + 12.67vw, 4.375rem);
}

.cta .textbox div {
  max-width: calc(32.6875em + var(--ws-padding));
}

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




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

/* 900px */
@media (max-width: 56.25em) {

  #mainnav>ul>li>a>span {
    display: none;
  }

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




/* MIN WIDTH MEDIA QUERIES ------------------------------ */

/* 1800px */
@media (min-width: 112.5em) {
  body { font-size: 1.1em; }
}


/* 2400px */
@media (min-width: 150em) {
  body { font-size: 1.2em; }
}




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