:root {
	--white: #fff;
	--black: #000;
	--blue: #0099CC;
	--grey: #393939;
	--altGrey: #707070;
	--lightGrey: #5F5F5FCB;
	/*--greyOpaque: #39393900;*/
	--greyOpaque: #383838;
	--darkGrey: #4C4643;
	--almostBlack: #212121;
	--almostWhite: #F4F4F4;
	--fontRegular: "proxima-nova",sans-serif;
	--fontSpecial: "urbane",sans-serif;
}
html, body {
	background-color: var(--grey);
	font-family:Arial;
	color:#fff;
	padding:0px;
	margin:0px;
	font-size:16px;
	font-family:var(--fontRegular);
	font-weight:300;
}
body {
	padding-top:78px;
}
h1, h2, h3, h4 {
	font-family:var(--fontSpecial);
	margin-bottom:14px;
}
h1 {
	text-transform:uppercase;
	line-height:1.25;
}
h2 {
	font-size:34px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 30px;
}
h2 p {
	margin:0 0;
}
b, strong {
	font-weight:600;
}
.radial-background {
	position:relative;
	/*background: transparent radial-gradient(at 50% 50%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
	/*background: transparent radial-gradient(closest-side at 50% 50%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;
	overflow:visible;*/
}
	.radial-background:after {
		position: absolute;
		top: -25%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 50% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-left {
	position:relative;
	/*background: transparent radial-gradient(at 30% 50%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
}
	.radial-background-left:after {
		position: absolute;
		top: -25%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 30% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-right {
	position:relative;
	/*background: transparent radial-gradient(at 70% 50%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
}
	.radial-background-right:after {
		position: absolute;
		top: -25%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 70% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-top-left {
	position:relative;
	/*background: transparent radial-gradient(at 30% 30%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
}
	.radial-background-top-left:after {
		position: absolute;
		top: -50%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 0% 46%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-top-right {
	position:relative;
	/*background: transparent radial-gradient(at 70% 30%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
}
	.radial-background-top-right:after {
		position: absolute;
		top: -50%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 70% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-bottom-left {
	position:relative;
	/*background: transparent radial-gradient(at 30% 70%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
}
	.radial-background-bottom-left:after {
		position: absolute;
		top: 30%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 30% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-bottom-right {
	position:relative;
	/*background: transparent radial-gradient(at 70% 70%, var(--lightGrey) 0%, var(--grey) 60%, var(--grey) 100%) 0% 0% no-repeat padding-box;*/
}
	.radial-background-bottom-right:after {
		position: absolute;
		top: 30%;
		width: 100%;
		height: 150%;
		background: transparent radial-gradient(at 70% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content: "";
		pointer-events: none;
		z-index: -2;
	}
.radial-background-top, .body-container.radial-background-top {
	position: relative;
	z-index: 1;
}
	.radial-background-top:after {
		position:absolute;
		top:-75%;
		width:100%;
		height:150%;
		background: transparent radial-gradient(at 50% 50%, var(--lightGrey) 0%, transparent 60%, transparent 100%) 0% 0% no-repeat padding-box;
		content:"";
		pointer-events:none;
		z-index:-2;
	}
.blue-text {
	color:var(--blue)
}
.grey-text {
	color: var(--grey);
}
.white-text {
	color: var(--white);
}
.no-wrap {
	white-space:nowrap;
}
a {
	color:var(--white);
}
.white-background a {
	color:var(--grey);
}
span.text-left img {
	float: left;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 18px;
	max-width: 40%;
	object-fit: cover;
}
span.text-right img {
	float: right;
	display: inline-block;
	margin-left: 10px;
	margin-bottom: 18px;
	max-width: 40%;
	object-fit:cover;
}
span.text-middle img {
	display: block;
	margin: 10px auto 18px auto;
	max-width: 60%;
}
header {
	background-color:var(--almostBlack);
	height:78px;
	position:fixed;
	top:0px;
	width:100%;
	z-index:10;
}
header .inner-container.header-main {
	z-index:2;
	background-color:var(--almostBlack);
	justify-content:space-between;
}
.daubert-logo {
	width:250px;
	height:auto;
}
/* BEGIN -- in block-grid - override .umb-block-grid where appropriate to achieve this - not all as some go full bleed */
.inner-container {
	max-width:1440px;
	padding:0px 20px;
	margin:0 auto;
	z-index: 2;
    position: relative;
}
.body-container {
	z-index: 2;
    position: relative;
}
.body-container .inner-container {
	padding-top:30px;
	padding-bottom:30px;
}
/* END -- in block-grid - override .umb-block-grid where appropriate to achieve this - not all as some go full bleed */
header .inner-container {
	display:flex;
}
.logo-nav-container {
	width:100%;
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
.logo-container {
	height: 78px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 180px;
	width:250px;
}
.nav-container {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-transform: uppercase;
}
.mobile-nav-container {
	display:none;
}
.nav-item {
	width:auto;
}
.nav-item a {
	font-size:16px;
	text-decoration:none;
	padding:0px 2px 4px 2px;
	font-weight:600;
}
.nav-item a:hover, .nav-item a.active {
	border-bottom:2px solid var(--blue);
}

.search-container {
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
	.search-container a {
		background-color: var(--blue);
		border-radius: 50%;
		padding: 9px;
		width: 32px;
		height: 32px;
		text-align: center;
		display:flex;
		align-items:center;
		justify-content:center;
		transition:border-radius .5s ease-out;
		border:4.5px solid var(--almostBlack);
	}
		.search-container a:hover, .search-container a.active {
			border-radius: 0%;
			border: 4.5px solid var(--blue);
		}
	.search-container a img {
		width: 24px;
		height: auto;	
	}
.primary-background, .default-background {
	background-color:var(--grey);
}
.alt-background {
	background-color:var(--blue);
}
.white-background {
	background-color: #fff;
	color: #393939;
}

.hide {
	display:none !important;
}
.drop-search {
	width:100%;
	position: fixed;
    top: -578px;
    left: 0px;
	padding:50px 0px 30px 0px;
	background-color:var(--almostWhite);
	transition: all .8s ease-out;
	opacity:0;
	z-index:8;
	color:var(--black);
}
.drop-search.show {
	top: 78px;
	left:0px;
	opacity:1;
}
.drop-search .inner-container {
	display:block;
	position:relative;
}
.drop-search input[type=text] {
	width:calc(100% - 33px);
	border:none;
	outline:none;
	background-color:var(--almostWhite);
	font-size:18px;
	font-weight:700;
}
.drop-search .search-input {
	width:100%;
	border-bottom:2px solid var(--greyOpaque);
	padding-bottom:10px;
	display:flex;
}
.drop-search .search-input .search-arrow:after {
	content:url(../images/common/searchArrow.svg);
	width:30px;
	height:29px;
	cursor:pointer;
}
.drop-search-item {
	display:block;
	padding-top:20px;
	padding-bottom:14px;
	border-bottom:2px solid var(--greyOpaque);
	text-decoration:none;
	cursor:pointer;
}
.drop-search-item:first-of-type {
	padding-top:40px;
}
.drop-search-item .breadcrumbs {
	padding-top:5px;
}
	.drop-search-item .breadcrumbs a {
		/*color:var(--almostBlack);*/
		color:var(--blue);
		font-weight:600;
		text-decoration:underline;
	}
	.drop-search .breadcrumbs a.active {
		font-weight:700;
		text-decoration:underline;
	}
.drop-search .search-title {
	font-weight:700;
}
a.see-all-search {
	color:var(--almostBlack);
	display: inline-block;
    padding-top: 29px;
    padding-bottom: 10px;
    font-weight: 600;
}

.drop-search a, .search-results-container .drop-search-item .search-title a {
	color: var(--almostBlack);
	text-decoration: none;
}

	.drop-search a:hover, .search-results-container .drop-search-item a:hover {
		text-decoration: underline;
	}


.drop-nav {
	width:100%;
	position: absolute;
    top: -578px;
    left: 0px;
	padding:50px 52px 30px 52px;
	background-color:var(--almostBlack);
	transition: all .5s ease-out;
	opacity:0;
	z-index:-1;
}
.drop-nav.show {
	top: 78px;
	left:0px;
	opacity:1;
}
.drop-nav .inner-container {
	display:block;
	position:relative;
}
.drop-nav-item {
	display:block;
	padding-bottom:30px;
	text-transform:uppercase;
	text-decoration:none;
}
.drop-nav-item a {
	text-transform:uppercase;
	text-decoration:none;
	display:block;
	font-weight:600;
}
	.drop-nav-item:hover a:after {
		content:url(../images/common/arrowBlue.svg);
		transition: all .5s ease-out, width .7s ease-out;
		width:24px;
		min-width:24px;
		text-align:center;
		height:12px;
		min-height:12px;
		padding-left:20px;
	}
	.drop-nav-sub {
		display:none;
		position: absolute;
		top: 0px;
		left: 240px;
		height:100%;
		padding-left:50px;
		border-left: 1px solid var(--white);
	}
	.drop-nav-sub a:nth-of-type(2) {
		padding-top:0px;
	}
	.drop-nav-sub a {
		text-transform:none;
		padding:8px 2px 2px 2px;
		border-bottom:2px solid transparent;
		display:block;
	}
	.drop-nav-sub a:hover{
		border-bottom:2px solid var(--white);
	}
	.drop-nav-item:hover .drop-nav-sub a:after {
		content:'';
		width:0px;
		min-width:0px;
		height:0px;
		min-height:0px;
		padding-left:0px;
	}	
	.mobile-nav-more {
		display:none;
		cursor:pointer;
		padding-left:30px;
		font-size:14px;
	}
.drop-nav .mobile-nav-container {
	flex-direction:column;
	align-items:flex-start;
	justify-content:flex-start;
	border-bottom:1px solid var(--white);	
	margin-bottom:30px;
	width:calc(100% - 20px);
}	
.drop-nav .mobile-nav-container .nav-item {
	padding-bottom:30px;
}

.breadcrumbs a {
	color:var(--white);
	text-decoration:none;
	font-size:14px;
}
.breadcrumbs a.active {
	color: var(--white);
}
.breadcrumbs a:hover {
	text-decoration:underline;
}

footer {
	display:block;
	background-repeat:no-repeat;
	background-position:calc(100% + 50px) calc(100% + 50px);
	padding-top:55px;
	border-top:1px solid var(--white);
	margin-top:65px;
}
footer .inner-container.flex-container {
	align-items:flex-start;
	padding-bottom:188px;
	position:relative;
	justify-content:space-between;
}
footer .content-right {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-evenly;
	padding-bottom:88px;
}
footer .content-left {
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-wrap:wrap;
}
a.footer-nav {
	display:inline-block;
	width:40%;
	text-decoration:none;
	line-height:1.5;
}
a.footer-nav:hover {
	text-decoration:underline;
}
footer copyright {
	font-size:14px;
	position:absolute;
	bottom:20px;
	left:20px;
}
footer .logos {
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:100%;
}
footer .brands {
	display:flex;
	align-items:center;
	justify-content:space-evenly;
	width:100%;
	flex-wrap:wrap;
	padding-top:30px;
}
footer .brands a {
	display:inline-block;
	padding:10px 0px;
	width:33%;
	text-align:center;
}
footer .brands a img {
	max-width:100%;
	height:auto;
}
footer .social {
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
footer .social a {
	display:inline-block;
	padding:0px 10px;
}
footer a.tel {
	font-size:20px;
	font-weight:bold;
	text-decoration:none;
	white-space:nowrap;
}
@media(max-width:940px) {
	footer .content-left, footer .content-right {
		padding-top:30px;
		width:100%
	}
	footer .inner-container.flex-container {
		flex-wrap:wrap;
	}
}

/* BEGIN ------------ styles for menu bar ------------*/
.ani-menu-bar {
    /*display: none;*/
    cursor: pointer;
    z-index: 101;
    right: 14px;
    top: 72px;
	border-radius:5px;
	padding:4px;
	margin-left:20px;
}

.bar1, .bar2, .bar3 {
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 5px;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-3.5px, 3.5px) ;
    transform: rotate(-45deg) translate(-3.5px, 3.5px) ;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
   -webkit-transform: rotate(45deg) translate(-3.5px, -3.5px);
    transform: rotate(45deg) translate(-3.5px, -3.5px);
}
.icon-hide {
		display:block;
	}
/* END ------------ styles for menu bar ------------*/

a.wrapper-link {
	text-decoration:none;
}

/* BEGIN ------------ Learn More Links ------------*/
a.learn-more {
	color: var(--white);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	padding: 0px 30px 0px 0px;
	border: 0px solid #ffcc00;
	font-size: 16px;
	min-height: 25px;
	line-height: 1;
	transition: color .5s ease-out;
	font-weight:600;
}
.white-background a.learn-more {
	color:var(--grey);
}
.white-background .alt-background a.learn-more {
	color: var(--white);
}
a.learn-more:hover {
	padding:0px 24px 0px;
	transition: none;
	padding-right:30px;
	border-bottom:none !important;
}
.white-background a.learn-more:hover {
	color: var(--white);
}
a.learn-more txt {
	z-index:2;
	white-space:nowrap;
	margin-left:6px;
	margin-right:6px;
}
a.learn-more:before {
	content:url(../images/common/arrow.png);
	background-color:var(--blue);
	padding-top:6px;
	padding-bottom:3px;
	padding-right:0px;
	border-radius:12px;
	z-index:1;
	transition: border-radius .5s ease-out, width .7s ease-out;
	width:24px;
	min-width:24px;
	text-align:center;
	/*height:12px;
	min-height:12px;*/
}
a.learn-more.back:before {
	transform:scaleX(-1);
}
.alt-background a.learn-more:before {
	background-color:var(--grey);
}
a.learn-more:hover:before {
	border-radius:0px;
	position:absolute;
	top:0px;
	left:0px;
	padding-right:6px;
	width:calc(100% - 6px);
	text-align:right;
}
.drop-nav-sub a.learn-more.back, a.read-more-arrow.prev-arrow:after {
	display: none;
}
/* END ------------ Learn More Links ------------*/
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}

@media(max-width:1080px) {
	.daubert-logo {
		width: 150px;
		height: 32px;
	}

	.logo-container {
		width: 180px;
	}
}
@media(min-width:781px) {
	.drop-nav-item .drop-nav-sub:hover {
		display: block !important;
	}
}

@media(max-width:780px) {
	body {
		padding-top:59px;
	}
	header, .logo-container {
		height:59px;
	}
	.drop-nav.show, .drop-search.show {
		top:59px;
		left:0px;
	}
     .nav-container {
		display:none;
	 }
	 .mobile-nav-container {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.search-container .ani-menu-bar {
		display:none;
	}
	.logo-container {
		justify-content:center;
		width:100%;
	}
	.search-icon {
		width:38px;
		height:38px;
	}
	.drop-nav {
		width:100%;
		position: absolute;
		top: 59px;
		left: -778px;
		padding:30px 0px 30px 0px;
	}
	.drop-nav-sub {
		left: 0px;
		width:100%;
		height:100%;
		padding-left:20px;
		border-left: none;
		background-color:var(--almostBlack);
	}
	.drop-nav-sub a {
		max-width:90%;
	}
	.ani-menu-bar {
		margin-left:0px;
	}
	.drop-nav-item {
		display:flex;
	}
	.drop-nav-item a {
		cursor:pointer !important;
	}
	.drop-nav-sub a.learn-more.back {
		display:inline-flex;
	}
	.drop-nav-sub a:nth-of-type(2) {
		padding-top:20px;
	}
	footer {
		background-position-x: center;
		padding-top:0px;
	}
	footer .logos {
		justify-content:center;
	}
	footer .social {
		position:absolute;
		bottom:147px;
		left:20px;
	}
	footer a.tel {
		position:absolute;
		bottom:94px;
		left:20px;
	}
	footer .brands a {
		display:inline-block;
		padding:10px 0px;
		width:50%;
		text-align:center;
	}
	h1 {
		font-size:41px;
	}
	iframe {		
		max-width: 100%;
	}
}
@media(max-width:640px) {
	.content-left, .content-right {
		width:100% !important;
		padding-left:0px !important;
		padding-right:0px !important;
	}
	.inner-container.flex-container {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media(max-width:560px) {
	a.learn-more txt {
		white-space: normal;
	}
	a.learn-more:before {
		transition:border-radius .5s;
	}
	h1 {
		font-size: 32px;
		line-height: 1.25;
	}
	h2 {
		font-size: 30px;
		line-height:1.25;
	}
	h3 {
		font-size: 28px;
		line-height: 1.25;
	}
	h4 {
		font-size: 26px;
		line-height: 1.25;
	}
}
@media(max-width:480px) {
	h1 {
		font-size: 29px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 24px;
	}
}
@media(max-width:360px) {
	h1 {
		font-size: 27px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 22px;
	}
}