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


html {
	scroll-padding-top: clamp(3.625em, 2.583em + 2.22vw, 4.25em);
}

html:has(#wsManagementBar) {
	scroll-padding-top: calc(clamp(3.625em, 2.583em + 2.22vw, 4.25em) + 35px)
}



:root {
	--ws-bounce: bounce .25s cubic-bezier(.215,.61,.355,1) .1s;
	--ws-nav-bounce: nav-bounce .25s cubic-bezier(.215,.61,.355,1) .1s;
	--ws-transition: z-index 0s linear 1.4s, top 0s linear 1.5s, opacity .5s ease-out 1s;
	--ws-transition-hover: z-index 0s linear .5s, top 0s linear .25s, opacity .5s ease-in .25s;
	--ws-gutter: clamp(3em, 7.5%, 5em);
	--portfolio-column-width: 7em;
	--portfolio-column-gutter: calc(((100vw - 13rem) / 14) + 1rem);
	--ws-grid-14: 0 [page-start] 1fr [wrap-start] repeat(10, 1fr) [wrap-end] 1fr [page-end] 0;
}




/* HEADINGS ------------------------------ */


.content :is(p, li) a:not(.button):hover,
.content :is(p, li) a:not(.button):hover * {
	color: var(--ws-green-AA);
}


:is(a:hover, a:focus-visible) :is(span, strong) {
	color: inherit;
}

:is(#hero, #cta) :is(button, .button, input[type="button"], input[type="submit"], input[type="reset"]):is(:hover, :focus-within, :focus)::before {
	border-color: rgba(255,255,255,0);
}

input[type="submit"]:is(:hover, :focus-visible) {
	background: var(--ws-green-AA);
}



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

body>header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 5;
	flex-wrap: wrap;
}

header::after {
	background-color: rgba(255,255,255,1);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

body.transparent-header>header {
	position: fixed;
	transition: background-color .3s ease;
}

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

body>header.sticky-header,
body:not(.transparent-header)>header,
body.transparent-header.scroll>header {
	box-shadow: var(--ws-shadow);
}

#brand {
	aspect-ratio: 260 / 40;
	display: block;
	line-height: 0;
	position: relative;
	margin-left: clamp(1em, 0.583em + 0.89vw, 1.25em);
	max-width: clamp(9em, -22.875em + 68vw, 13.25em);
}

#brand svg {
	height: auto;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

/* Transparent header FX */
body.transparent-header>header #brand svg #company-name {
	fill: #FFF;
}

body.transparent-header>header::after {
	opacity: 0;
}

body.transparent-header>header:has(#mainnav:focus-within)::after,
body.transparent-header>header:is(:hover, :focus-visible)::after,
body.transparent-header.scroll>header::after {
	opacity: 1;
}

body.transparent-header>header:has(#mainnav:focus-within) #brand svg #company-name,
body.transparent-header>header:is(:hover, :focus-visible) #brand svg #company-name,
body.transparent-header.scroll>header #brand svg #company-name {
	fill: #000;
}



/* nav */
#navContainer {
	margin-right: clamp(1em, 0.583em + 0.89vw, 1.25em);
}

#mainnav {
	overflow: visible
}

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

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

#mainnav>ul>li>a {
	color: #000;
	display: inline-block;
	line-height: 1;
	padding: 1.3125em 1.2vw;
	position: relative;
	text-transform: lowercase;
	z-index: 0;
}

/* Hover/on-states */
#mainnav>ul>li.on>a,
#mainnav>ul>li>a:is(:hover,:focus-visible),
body.transparent-header #mainnav:not(:has(:focus))>ul>li>a,
body.transparent-header #mainnav:has(:focus-visible) #mainnav>ul>li.on>a,
body.transparent-header #mainnav:has(:focus-visible) #mainnav>ul>li>a:is(:hover,:focus-visible),
body.transparent-header header:hover #mainnav>ul>li.on>a {
	color: #FFF;
}

body.transparent-header.scroll #mainnav>ul>li:not(.on)>a:not(:hover,:focus-visible),
body.transparent-header #mainnav:has(:focus-visible)>ul>li:not(.on)>a:not(:hover,:focus-visible),
body.transparent-header header:hover #mainnav>ul>li:not(.on)>a:not(:hover,:focus-visible) {
	color: #000;
}


#mainnav :is(a, p) {
	font-size: clamp(1.0625em, 0.958em + 0.22vw, 1.125em);
}

#mainnav>ul>li>a {
	margin-inline: clamp(0.1em, -0.046em + 0.31vw, 0.1875em);
}


/* On-state */
#mainnav>ul>li.on>a::before {
	background-color: var(--ws-dk-blue-5);
	opacity: 1;
}

#mainnav>ul>li.on>a:is(:hover,:focus-visible)::before {
	background-color: var(--ws-green-AA);
}

/* Background color pop */
#mainnav>ul>li>a::before,
#mainnav>ul>li>ul>li>a::before {
	background: var(--ws-green-AA);
	border-radius: 2em;
	content: '';
	height: 1.5em;
	inset: calc(50% + .05em) 0 auto 0;
	opacity: 0;
	position: absolute;
	transform: translateY(-50%);
	transition: opacity .3s ease;
	z-index: -1;
}

/* Regular dropdown T2 items have arrow: */
#mainnav>ul>li>ul>li>a::before {
	background: var(--ws-green-AA) url('/images/icons/caret-right-white.svg') no-repeat right 1em center / auto .5em;
}

/* Pop animation */
#mainnav>ul>li>a:is(:hover, :focus-visible)::before,
#mainnav>ul>li.tapped>a:is(:hover,:focus-visible)::before,
#mainnav>ul>li.tapped>a::before,
#mainnav>ul>li>ul>li:hover>a::before,
#mainnav>ul>li>ul>li>a:focus-visible::before {
	animation: var(--ws-nav-bounce);
	opacity: 1;
}



/* ACCESSIBLE DROPDOWNS ---------- */
#mainnav>ul>li:is(.has-megamenu, .menu-item-has-children) {
	align-items: center;
	display: inline-flex;
	position: relative;
}

#mainnav>ul>li.has-megamenu {
  justify-content: end;
  position: static;
}

#mainnav>ul>li:is(.has-megamenu, .menu-item-has-children)>a {
  padding-right: 1.5em;
}

#mainnav>ul>li>button {
    background: transparent;
    border: 0;
    border-radius: 0;
    height: 1.5em;
    font-size: 1rem;
    outline-offset: -.25em;
    padding: 0;
    pointer-events: none;
    position: absolute;
    transform: translateY(-50%);
    width: 1.5em;
}

#mainnav>ul>li.menu-item-has-children>button {
  inset: 50% .5em auto auto;
}

#mainnav li.has-megamenu>button {
  transform: translateX(-.5em);
}

#mainnav>ul>li>button::before {
  background: #000;
  content: '';
  inset: 0;
  mask: url('/images/icons/misc/chevron-down.svg') no-repeat center / auto .625em;
  position: absolute;
  transition: all .3s ease;
}

#mainnav>ul>li>button::after {
	display: none;
}

body.transparent-header>header:has(#mainnav:focus-within) #mainnav>ul>li:not(.expand)>button::before,
body.transparent-header>header:hover #mainnav>ul>li>button::before,
body.transparent-header.scroll>header #mainnav>ul>li:not(.on)>button::before {
	background: #000;
}

#mainnav>ul>li>a:focus + button::before,
body.transparent-header #mainnav>ul>li>button::before,
#mainnav>ul>li:is(.on, .tapped)>button::before,
body>header:hover #mainnav>ul>li>a:hover+button::before,
body>header:hover #mainnav>ul>li.on>button::before,
body.transparent-header.scroll>header #mainnav>ul>li>a:is(:hover,:focus-visible)+button::before,
body.transparent-header>header:has(#mainnav:focus-within) #mainnav>ul>li>a:is(:hover,:focus-visible) + button::before,
body.transparent-header>header:has(#mainnav:focus-within) #mainnav>ul>li:is(.on, .tapped)>button::before {
	background: #FFF;
}


/* Keep down arrow green when dropdown is expanded, but the item is not hovered/focused */
#mainnav>ul>li:hover>a:not(:hover,:focus-visible)+button::before,
#mainnav>ul>li.expand>a:not(:hover,:focus-visible)+button::before,
body.transparent-header #mainnav>ul>li:hover>a:not(:hover,:focus-visible)+button::before,
body.transparent-header #mainnav>ul>li.expand>a:not(:hover,:focus-visible)+button::before {
	background: var(--ws-green-AA);
}



/* Dropdown menu ---------- */
#mainnav>ul>li>ul,
#mainnav>ul>li>.megamenu {
	background: #FFF;
	box-shadow: var(--ws-shadow);
	opacity: 0;
	padding: .5em 1em 1em;
	position: absolute;
	top: -200vh;
	visibility: hidden;
	width: auto;
	z-index: 2;
}

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

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

/* Adjust megamenu position to cover blog/work filters */
body:is(.work, .blog, :has(#portfolio-filters)) :is(#mainnav>ul>li>.megamenu, #mainnav>ul>li.tapped>.megamenu, #mainnav>ul>li>a:focus + .megamenu) {
	top: calc(100% - 2.3125em)
}


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

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

#mainnav>ul>li>ul>li>a {
	background: none;
	border-radius: 0;
	color: #666;
	display: table;
	padding: .1875em 2em .1875em .75em;
	position: relative;
	text-align: left;
	white-space: nowrap;
	width: auto;
}

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

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




/* SERVICES MEGAMENU -------------------------- */

#mainnav>ul>li>.megamenu {
	box-shadow: 0 -.3125em 0px #FFF, var(--ws-shadow);
	height: auto !important;
	left: 0;
	padding: 2.25em 0 4.375em;
	text-align: left;
	width: 100%;
}

#mainnav>ul>li>.megamenu .column-1 { grid-column: 4 / 10; }
#mainnav>ul>li>.megamenu .column-3 { grid-column: 10 / 13; }

#mainnav>ul>li>.megamenu strong {
	display: block;
	font-size: clamp(1.125em, 0.5em + 1.33vw, 1.5em);
	line-height: 1.1;
	margin: 0 0 .5em;
}

#mainnav>ul>li>.megamenu ul {
	columns: 2;
}

#mainnav>ul>li>.megamenu ul li {
	display: block;
	margin: .125em;
}

#mainnav>ul>li>.megamenu ul li>a {
	color: #666;
	display: table;
	padding: .1875em 1.375em .1875em 1.5em;
}

#mainnav>ul>li>.megamenu ul li>a::before {
	inset: .35em auto auto 0;
}

#mainnav>ul>li>.megamenu ul li>a::after {
	background: var(--ws-green-AA);
	border-radius: 1em;
	content: '';
	height: 100%;
	left: -1.125em;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

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

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

#mainnav>ul>li>.megamenu ul li>a:is(:hover,:focus-visible)::after {
	animation: var(--ws-bounce);
	opacity: 1;
}

#mainnav>ul>li>.megamenu .column-3 .button {
	font-size: 1.25em;
}

#mainnav>ul>li>.megamenu .column-3 .button::before {
	border-color: #E0E0E0;
}

#mainnav>ul>li>.megamenu .column-3 .button:is(:hover,:focus-visible)::before {
	border-color: var(--ws-green-AA);
}


/* Megamenu on-state */
#mainnav>ul>li>ul>li.on>a,
#mainnav>ul>li>.megamenu ul li.on>a {
	color: #FFF;
}

#mainnav>ul>li>ul>li.on>a::before,
#mainnav>ul>li>.megamenu ul li.on>a::after {
	background-color: var(--ws-dk-blue);
	opacity: 1;
}



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





/* BUTTONS  ------------------------------ */

:is(a:focus, a:hover) .button::before,
:is(.button, button, .button.big):is(:focus, :hover)::before,
#cta .button.lt-blue:is(:hover,:focus-visible)::before {
	animation: var(--ws-bounce);
	background-color: var(--ws-green-AA);
	border-color: var(--ws-green-AA);
}

:is(a:hover, a:focus-visible) :is(button, .button)::before,
:is(button, .button):is(:hover, :focus-visible)::before,
:is(input[type="button"], input[type="submit"], input[type="reset"]):is(:hover, :focus-visible) {
	background: var(--ws-green-AA);
}

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

:is(a:hover, a:focus-visible) :is(button, .button).red::before,
:is(.button, button).red:is(:hover, :focus-visible)::before {
	background: var(--ws-blue-2);
	border-color: var(--ws-blue-2);
}


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


:is(body[class*='management-'], .ga4-support) :is(input[type="submit"], input[type="clear"], .wsFormButton):is(:focus, :hover),
input[value='Login']:is(:hover, :focus-visible) {
	background-color: var(--ws-dk-blue);
}





/* BLOG PAGINATION ------------------------------ */

.pagination a:is(:hover,:focus-visible) {
	color: var(--ws-green-AA);
}

.pagination a:is(.prev,.next):is(:hover,:focus-visible) {
	background: var(--ws-midnight);
}






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

main>:is(div,article)>div>#content {
	grid-column: 4 / 12;
	overflow: visible;
	min-height: 37.5em;
	padding: 3rem 0 clamp(4rem, 0.667rem + 7.11vw, 6rem);
}

main>div>div.ws-grid>aside {
	grid-column: 2 / 4;
	padding: 3rem 0 0;
}

main>div>div.ws-grid>aside + #content {
	grid-column: 5 / 13;
}


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

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

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

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




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

body>footer {
	font-size: clamp(0.9rem, 0.733rem + 0.36vw, 1rem);
}

body>footer .fatFooter>div:nth-child(1) { grid-column: 3 / 7; }
body>footer .fatFooter>div:nth-child(2) { grid-column: 8 / 11; }
body>footer .fatFooter>div:nth-child(3) { grid-column: 11 / 13; }

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

body>footer .fatFooter a:is(:hover,:focus-visible)::after {
	animation: var(--ws-bounce);
	opacity: 1;
}

body>footer ul.social a:is(:hover, :focus-visible) img {
	opacity: .7;
}

body>footer :is(#search, #email-signup) button:is(:hover, :focus-visible) {
	background-color: var(--ws-midnight);
}

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

body>footer .footer-bottom a:is(:hover,:focus-visible) {
	color: var(--ws-green-AA);
	text-decoration-color: inherit;
}

body>footer #seoFooter {
	grid-column: 2 / -2;
	grid-row: 2 / 3;
}

#popover-signup a.cancel:is(:hover, :focus-visible)>em {
	color: var(--ws-green-AA);
}

body>footer .flex {
	display: flex;
	justify-content: space-between;
}



/* SHARED ------------------------------ */
a.hover-float :is(img, .image) {
	transition: all .5s ease;
}


a.hover-float:is(:hover, :focus-visible) :is(img, .image) {
	transform: translateY(-.5em);
}

#services a.hover-float:is(:hover, :focus-visible) :is(img, .image) {
	transform: translateY(-.5em);
}




/* HERO ------------------------------ */

/* homepage */
#hero.home .textbox {
	grid-column: wrap-start / wrap-end;
}

#hero.home .textbox :is(span, p).text {
	display: block;
	max-width: 27.5em;
}



/* home, /web-design/ and /web-development/, /manufacturing-web-design/ landing pages */
#hero {
	min-height: 85dvh;
}

#hero .textbox {
	grid-column: 3 / 11;
	padding-block: 3.5em;
}

#hero .textbox :is(h1, span.title) {
	font-size: clamp(2.5em, -0.104em + 5.56vw, 4.0625em);
}

#hero .textbox :is(p, span.text) {
	font-size: clamp(1.25rem, 0.208rem + 2.22vw, 1.875rem);
}

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



/* INTERIOR HERO ------------------------------ /
* - T2 service pages, About, Careers, Timeline
*/

.interior-hero {
	padding-block: clamp(2.5em, 0.136em + 11.82vw, 9em) 2em;
}

.interior-hero.expertise {
	min-height: 80vh;
	padding-block: 7em 5em;
}

.interior-hero.expertise>div {
	align-items: center;
	display: flex;
	justify-content: center;
}


/* SERVICE LIST ------------------------------ /
* - Homepage ribbon 2, Service page ribbon 1
*/

.service-list .column-1 {
	grid-column: 2 / 14;
	margin-inline: auto;
	max-width: fit-content;
}

.service-list .column-1 ul {
	column-gap: clamp(4rem, -2.667rem + 14.22vw, 8rem); /* 750 - 1200 */
	columns: 3;
}

.service-list li>a {
	font-size: clamp(1.063em, 0.958em + 0.22vw, 1.125em);
}

.service-list li>a:is(:hover,:focus-visible) {
	color: #FFF;
}

.service-list li>a:is(:hover,:focus-visible)::before {
	background: #FFF;
}

.service-list li>a:is(:hover,:focus-visible)::after {
	animation: var(--ws-bounce);
	opacity: 1;
}





/* MARKETING PLANS ------------------------------ /
* - Homepage ribbon 3
*/

.marketing-plans .plan-1 {
	grid-column: 3 / 8;
}

.marketing-plans .plan-2 {
	grid-column: 8 / -3;
}

.marketing-plans .button:is(:hover,:focus-visible)::before {
	background: var(--ws-dk-blue);
}




/* ENGAGEMENT ------------------------------ /
* - Homepage ribbon 4
*/

.engagement ul.ws-flex {
	--ws-column-count: 5;
}

.engagement ul::before,
.engagement ul::after {
	background: rgba(255,255,255,.33);
	border-radius: .5em;
	content: '';
	height: 100%;
	position: absolute;
	width: 50%;
}

.engagement ul::before { inset: 0 calc(100% + 1em) auto auto; }
.engagement ul::after {	inset: 0 auto auto calc(100% + 1em); }

.engagement li {
	font-size: clamp(0.938em, 0.625em + 0.67vw, 1.125em);
	padding-inline: clamp(.5em, -0.125em + 1.33vw, .875em);
}

.engagement li strong {
	font-size: clamp(1.625em, -0.112em + 3.7vw, 2.667em);
}

.engagement .button.white:is(:hover,:focus-visible)::before {
	background: var(--ws-midnight);
}




/* SERVICES ------------------------------ */

#services {
	padding-block: 4em 9em;
	position: relative;
}

#services>ul>li:nth-child(1) { grid-column: 2 / 6; }
#services>ul>li:nth-child(2) { grid-column: 6 / 9; }
#services>ul>li:nth-child(3) { grid-column: 9 / 13; }

#services.digital-marketing>ul>li:nth-child(4) { grid-column: 5 / 8; }
#services.digital-marketing>ul>li:nth-child(5) { grid-column: 8 / 11; }


#services ul ul a {
	font-size: 1.25em;
}

#services h2 {
	font-size: 1.5em;
}

#services ul ul>li>a {
	padding: .125em 2em .1875em 0;
}

#services ul ul>li>a::before {
	background: var(--ws-green-AA);
	border-radius: 2em;
	content: '';
	height: 100%;
	left: -.75em;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

#services a:is(:hover, :focus-visible)>h2 {
	color: var(--ws-green-AA);
}

#services ul ul a:is(:hover, :focus-visible) {
	color: #FFF;
}

#services ul ul a:is(:hover, :focus-visible)::before {
	animation: var(--ws-bounce);
	opacity: 1;
}

#services svg {
	bottom: -9em;
	right: calc(100% - clamp(6.25em, 4.821em + 3.05vw, 10.25em)); /* 750 - 1400 */
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.home #services svg {
	bottom: -14em;
}

#services.lp li {
	padding-right:1.5em;
}



/* HOMEPAGE > WORK (slider) ------------------------------ */
#work a.more:is(:hover, :focus-visible)::before {
	background: var(--ws-blue-2);
}

#work a.more {
	min-width: 15.75em;
}

#work span {
	font-size: 1.25em;
}

#work a:is(:hover, :focus-visible) .textbox {
	opacity: 1;
}

#work span, .t3 a:is(:hover, :focus-visible) h2+span {
	background-position: calc(100% - .0625em) calc(50% + .0625em);
	padding-right: 1.125em;
	color: #fff;
}




/* PORTFOLIO GRID ------------------------------ */
#portfolio {
	margin-block: 2em 2em;
}

:is(.home,.creative) #portfolio {
	padding-block: 0;
}

#portfolio li {
	width: calc(25% - .75rem);
}

#portfolio .stamp {
	display: flex;
	flex-direction: column;
	height: 24.675em;
	justify-content: space-between;
	margin-bottom: 1rem;
	z-index: 1;
}

#portfolio .stamp>div {
	align-items: start;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 17em;
}

#portfolio h1 {
	display: flex;
	font-size: clamp(1.375em, -2.261em + 5.68vw, 2em);
	flex: 1 0 auto;
	flex-direction: column;
	justify-content: center;
}

#portfolio.work .wrap .stamp::before {
	background: var(--ws-green-AA);
	content: '';
	height: 100%;
	mask: none;
	position: absolute;
	right: 100%;
	top: 0;
	width: 1em;
	z-index: 1;
}

#portfolio .stamp p {
	font-size: 1.25em;
}

:is(#portfolio, .lp-work) a:is(:hover, :focus) .textbox {
	opacity: 1;
}

#portfolio .textbox h2 {
	font-size: 1.375em;
}

#portfolio .row {
	margin: 4em auto 0;
	text-align: center;
}


#content :is(.thankyouTW, .thankyouFB){
	padding: 0%;
	margin: 0;
	width: calc(50% - (var(--ws-grid-gap) / 2));
	float: left;
}
#content .thankyouFB{
	margin-left: var(--ws-grid-gap);
}
#content .highlightThankyou::after{
	content: "";
	display: table;
	clear: both;
}

/* HOMEPAGE > BRANDS ------------------------------ */
#brands {
	padding-block: 3em 5em;
}

#brands.work {
	padding-block: 5em;
}

#brands li:nth-child(4n+1) { grid-column: 2 / span 3; }
#brands li:nth-child(4n+2) { grid-column: 5 / span 3; }
#brands li:nth-child(4n+3) { grid-column: 8 / span 3; }
#brands li:nth-child(4n+4) { grid-column: 11 / span 3; }

#brands li>a:is(:hover,:focus-visible) img {
	transform: scale(1.05);
}

/* QUOTES RIBBON (About Page) ------------------------------ */
#quotes.lp {
	padding-block: 6em;
}

#quotes blockquote {
	grid-column: 3 / 13;
	grid-template-columns: repeat(10, 1fr);
}

#quotes blockquote p {
	grid-column: 1 / 11;
}

#quotes blockquote cite {
	grid-column: 1 / 11;
}


/* Landing page overrides */
#brands.lp {
	padding-block: 0 1.5em;
}


/* HOMEPAGE > PHOTO ------------------------------ */
#photo {
	height: calc(12.353rem + 37.65vw);
	min-height: 30em;
}

#photo h2 {
	color: var(--ws-blue-2);
	font-size: clamp(1.5em, 1.067em + 0.92vw, 1.875em);
	top: clamp(5.5rem, 2.853rem + 5.65vw, 8.5rem);
}

#photo svg {
	position: absolute;
	left: 68vw;
	top: -11em;
	z-index: -1;
}




/* EXPOSURE POPUP ------------------------------ */

#exposure-popup .wrap {
	height: 100%;
	width: calc(100% - 7em);
}

#exposure-popup img:first-of-type {
	margin: 1em auto clamp(1em, 4vh, 2em);
	max-width: 16.3125em;
}

#exposure-popup img:last-of-type {
	margin: .5em auto clamp(1.5em, 12vh, 4em);
	max-width: 20.9375em;
}

#exposure-popup :is(p, em) {
	font-size: clamp(1.25em, 0.962em + 0.62vw, 1.5em);
}

#exposure-popup p {
	margin: 0 0 clamp(1em, 6vh, 3em);
}

#exposure-popup button {
	margin: 0 auto 1.25em;
}

#exposure-popup button:is(:hover, :focus-visible) {
	color: #FFF;
}



/* hirEDCT ---------------------------------------------- */

.hiredct-header {
	display: flex;
	flex-direction: row;
	margin-bottom: 5.0625rem;
}
.hiredct-logo {
	width: 23%;
	margin-top: -1.5rem;
	margin-right: 0.875rem;
	/*margin-left: -0.375rem;*/
}
.hiredct-title {
	font-size: clamp(2.5625rem, -0.8323rem + 4.5226vw, 3.125rem);
	padding-left: 21px;
	border-left: 2px dotted var(--ws-lt-gray);
}
.formcols {
	display: grid;
	grid-gap: var(--ws-grid-gap);
}

.l-col {
	grid-column: 1 / 6;
	padding-right: 12%;
	border-right: 2px dashed var(--ws-lt-blue-2);
	padding-top: 1.75rem;
}

.r-col {
	grid-column: 7 / 12;
}


:is(button, .button, input[type="button"], input[type="submit"], input[type="reset"]).hiredct-button:is(:focus, :hover)::before {
	animation: var(--ws-bounce);
	background-color: var(--ws-light);
}

:is(button, .button, input[type="button"], input[type="submit"], input[type="reset"]).hiredct-button:is(:focus, :hover)::after {
	background-image: url('/images/icons/caret-right-green.svg');
}

:is(.button, button, input[type="button"], input[type="submit"], input[type="reset"]).hiredct-button:is(:hover, :focus-visible) {
	color: var(--ws-blue-AA);
}





/* CONTACT RIBBON ------------------------------ */

/* /contact/ page only */

body.contact #contact .ws-grid-inner {
	align-self: center;
	display: grid;
	grid-gap: var(--ws-grid-gap);
	grid-template-columns: [wrap-start] repeat(10, minmax(0, 1fr)) [wrap-end];
}

body.contact #contact .contact-info {
	display: flex;
	flex-direction: column;
	grid-column: 1 / 6;
}

body.contact #contact form {
	grid-column: 7/ 12;
}


/* Contact form ribbon on non-/contact/ pages */
#contact .contact-info {
	grid-column: 3 / 8;
}

#contact form {
	grid-column: 9 / 13;
}





/* HOMEPAGE > CTA ------------------------------ */
#cta>div {
	grid-column: wrap-start / wrap-end;
}

#cta .clouds {
	width: clamp(33em, 27.231em + 12.31vw, 43em);
}

#cta svg {
	top: clamp(12em, 10.304em + 3.62vw, 16.75em);
	pointer-events: none;
	position: absolute;
	right: clamp(11em, 8.636em + 4.21vw, 14em);
	transform: rotate(-3deg);
	z-index: 2;
}

#cta img {
	position: absolute;
	right: clamp(7em, 5.977em + 2.18vw, 9.25em);
	top: clamp(6.25em, 4.821em + 3.05vw, 10.25em);
	z-index: 2;
}



/* Services ------------------------------ */

#tactics h2:after {
	background: no-repeat 50% calc(50% + 0.15em) / 0.4em auto;
	background-image: none;
	content: '';
	padding-right: 1em;
	margin-right:-1em;
	transition: all .3s ease;
	background-image: url(/images/icons/caret-right-green.svg);
	opacity: 0;
	display: inline-block;
	height: 1em;
}

#tactics a:hover h2:after {
	/* margin-left: 0; */
	transform: translateX(.125em);
	opacity: 1;
}





/* LP WORK RIBBON ------------------------------ /
* -/web-design/ and /web-development/
*/

.lp-work .textbox p {
	font-size: clamp(1rem, 0.792rem + 0.44vw, 1.125rem);
}

.lp-work .ws-grid>ul:nth-child(1) {	grid-column: 2 / 5; }
.lp-work .ws-grid>ul:nth-child(2) {	grid-column: 5 / 8; }
.lp-work .ws-grid>ul:nth-child(3) {	grid-column: 8 / 11; }
.lp-work .ws-grid>ul:nth-child(4) {	grid-column: 11 / 14; }

.lp-work strong.title {
	font-size: clamp(1rem, 0.375rem + 1.33vw, 1.375rem);
}

.lp-work li+li {
	margin-top: 1rem;
}




/* PARTNER LOGOS RIBBON ------------------------------ /
* - /web-design/
*/

.partner-logos a:is(:hover,:focus-visible) img {
	transform: scale(1.05);
}


/* /web-design/ landing page overrides */
.partner-logos.web-dev-landing ul.ws-flex.five {
	--ws-column-count: 5;
}




/* ICON LIST RIBBON (T2 service pages) ------------------------------ */


.icon-list ul>li::before {
	width: 3em;
}

.icon-list ul {
	display: flex;
	gap: 1.5em;
	grid-column: 1 / -1;
	justify-content: space-around;
	padding-inline: 5vw;
}

.icon-list ul li {
	font-size: clamp(1em, 1.5vw, 1.5em);
	width: 19em;
}





/* CIRCLE SECTION (T2 service pages) ------------------------------ */
.circle-section {
	align-items: center;
	padding-block: clamp(3.5em, 0.167em + 7.11vw, 5.5em);
}

/* Odd numbers */
.circle-section:nth-of-type(odd)>:is(img, .image, .video-circle) { grid-column: 3 / 7; }
.circle-section:nth-of-type(odd)>div { grid-column: 8 / 13; }

/* Even numbers */
.circle-section:nth-of-type(even)>:is(img, .image, .video-circle) { grid-column: 9 / 13; }
.circle-section:nth-of-type(even)>div {align-self: center;grid-column: 3 / 8; }


.circle-section.dark :is(h2, p, li) a:is(:hover,:focus-visible),
.circle-section:nth-of-type(odd) :is(h2, p, li) a:is(:hover,:focus-visible) {
	color: rgba(255,255,255,.75);
}

.circle-section.dark :is(h2, p, li) a:hover,
.circle-section.dark :is(h2, p, li) a:hover *,
.circle-section:is(:nth-of-type(1), :nth-of-type(3), :nth-of-type(5)) :is(h2, p, li) a:hover,
.circle-section:is(:nth-of-type(1), :nth-of-type(3), :nth-of-type(5)) :is(h2, p, li) a:hover * {
  color: var(--ws-lt-blue-2) !important;
}

.circle-section:nth-of-type(1n).white a:is(:hover,:focus-visible) {
	color: var(--ws-midnight) !important;
}

.circle-section:nth-of-type(even) :is(h2, p, li) a:is(:hover,:focus-visible) {
	color: var(--ws-midnight);
}

.circle-section:nth-of-type(1n).white a.button:is(:hover,:focus-visible) {
	color: #FFF;
}

/* Learn more about... links to Exposure site */
.circle-section hr + p>a:is(:hover,:focus-visible)::after {
	opacity: 1;
}

.circle-section:nth-of-type(odd) hr + p>a:is(:hover,:focus-visible),
.circle-section:nth-of-type(1n).dark hr + p>a:is(:hover,:focus-visible) {
	color: #FFF;
}




/* LP WORK RIBBON ------------------------------ /
* -/web-design/ and /web-development/
*/

.circle-section.blue {
	padding-block: 1rem 3.5rem;
	position: relative;
	z-index: 0;
}

.circle-section.blue::before {
	height: 3em;
}

.circle-section.blue img { grid-column: 8 / 13 !important; }
.circle-section.blue>div { grid-column: 3 / 8; margin: 6em 0 0; padding-right: 2em; }





/* DESIGN PROCESS RIBBON ------------------------------ /
* - /web-design/ and /about/approach/ landing pages
*/

.design-process .bottom .button:is(:hover,:focus-visible)::before {
	border-color: var(--ws-green-AA);
}

.design-process .bottom>div {
	display: contents;
}

.design-process .bottom .textbox {
	grid-column: 3 / 10;
}

.design-process .bottom .image {
	grid-column: 11 / 13;
}




/* PLAN COMPARISON RIBBON ------------------------------ /
* - /about/approach/ page
*/

.plan-comparison h2 {
	max-width: 44rem;
}




/* FEATURED BLOG POST RIBBON ------------------------------ /
* - /manufacturing-web-design/
*/

.featured-blog-post article {
	display: flex;
	flex-direction: row-reverse;
}

.featured-blog-post figure {
	width: 60%;
}

.featured-blog-post .textbox {
	min-width: 23.4375em;
	width: 40%;
}

.featured-blog-post .textbox a {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 3em 2em 1.5em;
}

.featured-blog-post .textbox a:is(:hover,:focus-visible) {
	background: var(--ws-green-AA);
}

.featured-blog-post .textbox a>div {
	max-width: min(100%, 32em);
	width: 100%;
}

.featured-blog-post .textbox a>div:first-child {
	align-items: center;
	display: flex;
	flex: 1 0 auto;
}

.featured-blog-post h2 {
	font-weight: 300;
	padding: 0 0 1em;
	width: 100%;
}

.featured-blog-post h2>b {
	display: inline
}

.featured-blog-post a:is(:hover,:focus-visible) span.link {
	padding-right: 1.75em;
}





/* STATS RIBBON ------------------------------ /
* - Industry templates ( i.e. /manufacturing-web-design/ )
* - Homepage
*/

.stats ul.ws-flex {
	--ws-column-count: 5;
}




/* CERTIFICATIONS RIBBON ------------------------------ /
* - /expertise/
* - Industry templates ( i.e. /manufacturing-web-design/ )
*/


.certifications ul.ws-flex {
	--ws-column-count: 5;
}




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

/* 1200px */
@media (max-width: 75em) {
	#services>ul>li:nth-child(1) { grid-column: 2 / 6; }
	#services>ul>li:nth-child(2) { grid-column: 6 / 10; }
	#services>ul>li:nth-child(3) { grid-column: 10 / 14; }

	main>:is(div, article)>div.ws-grid>#content {	grid-column: wrap-start / wrap-end;	}

	.hero-line {
		height: calc(10em + 10vw);
		width: calc(100% - 10vw);
	}

	#welcome svg {
		left: 50%;
		width: 112vw;
	}

	#photo svg {
		left: 75vw;
		top: -12em;
	}

	.hiredct-title {
		font-size: clamp(2.8125rem, 2.2898rem + 1.1136vw, 3.125rem);
	}

}




/* 1100px */
@media (max-width: 68.75em) {
	body>footer .fatFooter::before {inset: 0 52% 0 0;}
	body>footer .fatFooter>div:nth-child(1) { grid-column: 2 / 8; }
	body>footer .fatFooter>div:nth-child(3) { grid-column: 11 / 14; }
	body>footer .footer-bottom>div { grid-column: 2 / -2; }

	#mainnav>ul>li>.megamenu .column>div { width: auto; }
	#mainnav>ul>li>.megamenu .column-1 { grid-column: 2 / 10; padding-left: 2em; }

	.certifications ul.ws-flex { --ws-column-count: 3; }
}



/* 1023 */
@media (max-width: 63.9375em) {
	#brands:not(.digital-marketing) li:nth-child(3n+1) { grid-column: 2 / span 4; }
	#brands:not(.digital-marketing) li:nth-child(3n+2) { grid-column: 6 / span 4; }
	#brands:not(.digital-marketing) li:nth-child(3n+3) { grid-column: 10 / span 4; }

	#brands.digital-marketing li:nth-child(2n+1) { grid-column: 2 / 8; }
	#brands.digital-marketing li:nth-child(2n+2) { grid-column: 8 / 14; }

	#welcome>div { grid-column: 3 / 13; }

	#cta svg { display: none; }

	#portfolio {
		font-size: .9375em;
	}

	#portfolio :is(.grid-item, .stamp) {
		width: calc(33.33% - .6667rem);
	}

	#portfolio .textbox p {
		font-size: 1em;
	}

	.design-process .middle {
		padding: 0 10% 6rem;
	}

	.design-process ol {
		margin: 0 auto;
		width: 32rem;
	}

	.design-process ol>li {
		font-size: .9375rem;
	}

	.design-process ol>li:not(:last-child) {
		margin: 0 0 14%;
	}

	.design-process ol>li:not(:last-child)::before {
		aspect-ratio: 69 / 116;
		background: url('/images/design-process/left.svg') no-repeat right center / contain;
		inset: 0 auto auto -12.25%;
		margin-top: 11%;
		width: 12%;
		z-index: -1;
	}

	.design-process ol>li:not(:last-child)::after {
		aspect-ratio: 274 / 103;
		background: url('/images/design-process/center-stacked.svg') no-repeat center top / contain;
		content: '';
		inset: 100% auto auto 3.75%;
		position: absolute;
		width: 52%;
		z-index: 1;
	}

	.design-process ol>li:last-child::before {
		width: 19%;
	}

	.stats ul.ws-flex {
		--ws-column-count: 3;
	}

}



/* 900px */
@media (max-width: 56.25em) {
	:root {
		--portfolio-column-gutter: 2vw;
	}

	#mainnav a:not(.button) {
		padding: 1.5em .6875em;
	}

	#cta h2 {
		font-size: 1.5em;
	}

	.partner-logos.web-dev-landing ul.ws-flex.five {
		--ws-column-count: 3;
	}

	.service-list .column-1 ul {
		columns: 2;
	}

}



/* MAX-HEIGHT MEDIA QUERIES ------------------------------ */

/* 600px */
@media (max-height: 37.5em) {
	#exposure-popup img:first-of-type {
		margin: 0 auto .5em;
	}

	#exposure-popup p,
	#exposure-popup img:last-of-type {
		margin: .5em auto 1.25em;
	}

	#exposure-popup :is(p, em) {
		font-size: 1.0625em;
	}

}






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

/* 1101px */
@media (min-width: 68.8125em) {
	.service-list li>a[href*='/services/search-engine-optimization/'] {
		white-space: nowrap;
	}
}




/* 1024px (side by side version) */
@media (min-width: 64em) {

	.design-process .middle {
		padding-bottom: 15%;
	}

	.design-process ol {
		margin: 0 auto;
	}

	.design-process ol>li {
		font-size: clamp(0.875rem, 0.441rem + 0.68vw, 1.5rem);
		height: 0;
		margin: 0 4% -.75rem;
		padding: 15.25% 0 0;
		width: 42%;
	}

	.design-process ol>li>div {
		position: absolute;
		inset: 0 0 auto;
	}

	.design-process ol>li:nth-child(odd):not(:last-child)::before {
		aspect-ratio: 69 / 116;
		background: url('/images/design-process/left.svg') no-repeat right center / contain;
		inset: 0 auto auto -10%;
		margin-top: 12%;
		width: 12.5%;
	}

	.design-process ol>li:nth-child(even):not(:last-child)::before {
		background: url('/images/design-process/right.svg') no-repeat center / contain;
		aspect-ratio: 110 / 122;
		inset: auto auto 89% -19.5%;
		width: 23%;
		z-index: 1;
	}

	.design-process ol>li:nth-child(even):not(:last-child)::after {
		aspect-ratio: 563 / 142;
		background: url('/images/design-process/center.svg') no-repeat left bottom / contain;
		content: '';
		inset: 25% 98% auto auto;
		position: absolute;
		width: 117%;
		z-index: 1;
	}

	.design-process ol>li:last-child::before {
		width: 21%;
	}

}



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