@charset "UTF-8";
/* Web Solutions 4.0 Compatible */

html {
	scroll-padding-top: 8.375em; /* Scroll offset for sticky header */
}


.wrap, body>footer .fatFooter {
	padding-right: 2.5em; /* Account for Ask me Anything widget */
}

/* HEADINGS ------------------------------ */
h1, .h1-style {
	font-size: 2.875em;
}

h2, .h2-style {
	font-size: 2em;
}

.highlight h2 {
	font-size: 1.5em;
}

.highlight-2 h2 {
	font-size: 2em;
}

h3, .h3-style {
	font-size: 2em;
}

h4, .h4-style, th {
	font-size: 1.2em;
}

h5, .h5-style {
	font-size: 1.1em;
}

h6, .h6-style {
	font-size: 1.0em;
}

.intro {
	font-size: 1.25em;
}



/* HEADER ------------------------------*/
body>header {
	/* display: flex;
	justify-content: space-between;
	align-items: center; */
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 1;
}

body>header>.wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

#brand {
	display: block;
	margin-left: 1rem;
	padding-block: 1em;
}

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

.scroll #brand {
	transform: scale(0.8);
	padding-block: 0;
}

.scroll>header {
	border-bottom: 1px solid rgba(174, 92, 91, .15);
}

nav ul {
	margin: 0;
}

#mainnav {
	overflow: visible;
}

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

#mainnav > ul {
	display: flex;
}

#mainnav > ul > li:last-child > a::before {
	content: '';
	mask: url('/images/icons/comment-sharp-solid-full.svg') no-repeat center / contain;
	display: inline-block;
	height: 1em;
	width: 1em;
	margin-right: .25em;
	vertical-align: middle;
	background: var(--ws-color-2);
}

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

#mainnav a {
  color: var(--ws-color-1);
  display: inline-block;
	line-height: 1;
	padding: 1em;
	text-decoration: none;
}

#mainnav .menu-item-has-children {
	display: flex;
	align-items: center;
}

/* Hover/focus-state: */
#mainnav>ul>li:is(:hover, :focus-within, .on) {
	background: var(--ws-color-1);
}

#mainnav>ul>li:is(:hover, :focus-within, .on) > a {
	color: #FFF;
}

#mainnav>ul>li:is(:hover,:focus-within, .on) > button::before,
#mainnav>ul>li:is(:hover,:focus-within) > a::before {
	background-color: #FFF;
}


/* Accessible dropdowns */
#mainnav>ul>li>button {
	background: transparent;
	bottom: 0;
	border: 0;
	height: .5rem;
	padding: 0;
	pointer-events: none;
	transform: translate(-15px, -3px);
	width: 1.25rem;
	box-shadow: none;
}

#mainnav>ul>li>button:before {
	display: block;
	mask: url('/images/icons/misc/chevron-down.svg') no-repeat center / contain;
	content: '';
	height: .75rem;
	background: var(--ws-color-1);
}



/* Drop-down menu */
#mainnav li > div {
	height: auto !important;
  left:0;
  opacity: 0;
  padding: 1.125em 0.5em 0.5em;
  position: absolute;
  top: -200vh;
  width: 200px;
  visibility: hidden;
	background: #fff;
}

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

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

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

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

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

#mainnav ul li ul li a {
    background: none;
    /* color: #FFF; */
}

#mainnav li ul li a {
  display: block;
  font-size: .9em;
  line-height: 1.1em;
  padding: .3em .5em;
  text-align: left;
  width: 100%;
}

#mainnav li ul li a:is(:hover, :focus) {
	background: var(--ws-color-2);
	color: #fff;
}

#mainnav li ul ul {
	display: none;
}


/* 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) {
	color: #666;
}

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

#ancillary .search {
	display: inline;
}

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


/* mini-cart */
#ancillary .small-cart {
	display: inline-block;
}

#ancillary #cart-popover {
  background: #FFF;
  box-shadow: 0 0 10px rgba(0,0,0,0.95);
  height: auto;
  display: block;
	opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: ease all 200ms;
  width: 20rem;
  z-index: -1;
}

#ancillary .small-cart.on #cart-popover,
#ancillary .small-cart:hover #cart-popover {
	opacity: 1;
	pointer-events: all;
  z-index: 10;
}

#ancillary #cart-popover:before {
  border-style: solid;
	border-width: 0 10px 8px 10px;
	border-color: transparent transparent #FFF transparent;
	content: '';
  display: block;
  height: 0;
	position: absolute;
  right: 3rem;
	top: -0.5rem;
	width: 0;
}

#ancillary #cart-popover .no-items {
	background: #FFF;
  color: #000;
  font-size: 1em;
	padding: 1em;
	text-align: center;
}

#ancillary #cart-popover .no-items .button {
  color: #FFF;
	display: block;
  margin-top: 0.75rem;
	text-align: center;
}

#ancillary #cart-popover .products {
	overflow: auto;
  max-height: 21.5em;
	padding: 0.25em 1em;
}

#ancillary #cart-popover .products > p {
  font-size: 1rem;
	text-align: center;
}

#ancillary #cart-popover .product {
  display: block;
  height: auto;
  line-height: 1rem;
  overflow: auto;
  padding: 1.25em 1em;
	position: relative;
	text-align: left;
  text-transform: inherit;
}

#ancillary #cart-popover .product + .product {
	border-top: 1px dashed #D1D1D1;
}

#ancillary #cart-popover .product-image {
	position: relative;
	float: left;
	-webkit-transition: ease all 200ms;
	transition: ease all 200ms;
	width: 5em;
}

#ancillary #cart-popover .product-image img {
	display: block;
	max-width: 100%;
	height: auto
}

#ancillary #cart-popover .product-details {
	overflow: auto;
	float: right;
	width: calc(100% - 6em)
}

#ancillary #cart-popover .product-name {
  color: #8A1538;
	font-size: 1.125rem;
  font-weight: 600;
	line-height: 1em;
	margin-bottom: 0.25em;
	white-space: initial;
}

#ancillary #cart-popover .price,
#ancillary #cart-popover .quantity {
	color: #666;
  font-size: 0.875rem;
	margin-bottom: 0.5em;
}

#ancillary #cart-popover .product:hover .product-name {
	color: #007DB5;
}

#ancillary #cart-popover .cart-bottom {
  background: #032839;
  color: #fff;
  font-family: "Gotham A", "Gotham B", sans-serif;
	padding: 1rem 1rem 2rem;
	text-align: center;
  text-transform: capitalize;
}

#ancillary #cart-popover .cart-bottom .cart-total {
  margin: 0 0 1em;
	font-size: 1rem;
}

#ancillary #cart-popover .cart-bottom .checkout .button {
  color: #FFF;
  font-size: 1rem;
	height: auto;
	line-height: 1em;
	padding: 0.7em 2em;
	text-transform: capitalize;
}

/* mobile */
#mobilenav, .toggleNav {
	visibility: hidden;
  display: none;
}

/* MAIN ------------------------------ */
main>div>aside {
  float: left;
	overflow: hidden;
  padding-right: 2em;
  width: 18.75em;
}

main>div>#content {
	float: right;
	width: calc(100% - 18.75em);
	max-width: 60em;
	padding: 2em 0 4em;
	overflow: hidden;
	min-height: 600px;
	position: relative
}

body.fullWidth main>div>#content {
  float: none;
	margin: 0 auto;
  width: 100%;
}


.photoright {
	margin: 0 0 3em 4em;
}

.photoleft {
	margin: 0 4em 3em 0;
}

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

#popover .close:is(:hover, :focus) {
	opacity: 0.5;
}

.shareIcons a:is(:hover, :focus) {
	background-color: var(--link-color-hover);
}

/* .twoCol, .threeCol, .resCol {
	column-rule: 1px outset rgba(0,0,0,.15);
} */

.twoCol {
	columns: 2;
}

.threeCol {
	columns: 3;
}

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

.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
}


/* Contact Form - table removed ----- */
.form-flex .half {
	width: calc(50% - .5em); /* Full on mobile */
}

.form-flex .third {
	width: calc(33.33% - .5em); /* Full on mobile */
}

.form-flex .quarter {
	width: calc(25% - .5em); /* Half on mobile */
}



/* FOOTER ------------------------------ */
body>footer .fatFooter {
	display: flex;
}

.fatFooter>nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.fatFooter>nav>ul:nth-child(2),
#web-solutions {
	width: 9.375em;
}

#web-solutions {
	float: right;
}

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

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

/* Home Hero ------------------------------ */

.hero h1 em {
	font-size: 2.5rem;
}



/* About List ------------------------------ */
.about h2 {
	font-size: 2.25em;
}

.about h2 span {
	font-size: 2.875rem;
}

.hero h1 {
	font-size: 1.5em;
}

.session-cta h2 span {
	font-size: 1.5rem;
}

.hero-buttons a:first-child, .about-buttons a:first-child, .video-buttons-footer a:first-child, .about-buttons a:first-child {
	margin-right: 1em;
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5em 2em 5em 0;
}

.hero > .wrap {
	display: flex;
}

.hero-right {
	display: flex;
	align-items: flex-end;
  position: relative;
}


.youtube-embed {
	width: calc(33.33% - 2em);
	aspect-ratio: 16 / 9;
}

/* MEDIA QUERIES ------------------------------ */


/* 900px */

@media (max-width: 56.25em) {
	#mainnav a {
		font-size: 0.875em;
	}
}

@media (min-width: 67.5em) {

	.session-cta-list {
		padding-inline: 5.625em;
	}

	#brand {
		max-width: 18em;
	}

	.hero h1 {
		/* font-size: 2.6875em; */
		font-size: clamp(1.75em, 2.5vw, 2.6875em);
	}

	.hero h1 em {
		/* font-size: 4.75rem; */
		font-size: clamp(2.5rem, 5.5vw, 4.75rem);
	}

	.hero-text,
	.about-text,
	.video-buttons-intro {
		font-size: clamp(1rem, 5.5vw, 1.25em);
	}


	/* Session CTA ------------------------------ */

	.session-cta {
		padding-block: 5em;
	}

	.session-cta h2 {
		font-size: 2.875em;
	}

	.session-cta h2 span,
	.video-buttons h2 {
		font-size: 2.25rem;
	}

	.video-buttons h2 span {
		font-size: 2.875rem;
	}

	.session-cta-intro p {
		font-size: 1.25em;
	}
	
}

/* 1300px */

@media (min-width: 81.25em) {
	.hero-left {
		padding: 5em 2em 5em 0;
	}

}

