@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/Montserrat-Regular.otf") format("opentype");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: bold;
	src: url("../fonts/Montserrat-Bold.otf") format("opentype");
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: normal;
	src: url("../fonts/Montserrat-Italic.otf") format("opentype");
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: bold;
	src: url("../fonts/Montserrat-BoldItalic.otf") format("opentype");
}

@font-face {
	font-family: "Lato";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/Lato-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Lato";
	font-style: normal;
	font-weight: bold;
	src: url("../fonts/Lato-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "Lato";
	font-style: italic;
	font-weight: normal;
	src: url("../fonts/Lato-Italic.ttf") format("truetype");
}

@font-face {
	font-family: "Lato";
	font-style: italic;
	font-weight: bold;
	src: url("../fonts/Lato-BoldItalic.ttf") format("truetype");
}

html,
body {
	font-family: "Lato", helvetica;
	font-style: normal;
	font-weight: normal;
	letter-spacing: 0px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body {
	background-color: white;
	font-family: "Lato", helvetica;
	font-style: normal;
	font-weight: normal;
}

h1,
h2,
h3,
h4 {
	line-height: 1em;
	margin: 0px;
	padding: 0px;
}

h1 {
	color: #3078f0;
	font-family: "Montserrat", helvetica;
	font-size: 70px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -3px;
}

h2 {
	color: #3078f0;
	font-family: "Montserrat", helvetica;
	font-size: 50px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -1.22px;
}

h3 {
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 31px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -0.5px;
	line-height: 1.15em;
}

h4 {
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 0px;
}

p,
label,
a:not(.button),
ul li {
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	line-height: 1.5em;
	margin: 0px;
	padding: 0px;
}

ul.bullets {
	padding-left: 0px;
}

ul.bullets li {
	background-image: url("../images/solutions/bullet.svg");
	background-position: left 7px;
	background-repeat: no-repeat;
	background-size: 8px 9px;
	list-style-type: none;
	padding-left: 25px;
}

p.bullet {
	background-image: url("../images/solutions/bullet.svg");
	background-position: left 7px;
	background-repeat: no-repeat;
	background-size: 8px 9px;
	padding-left: 25px;
}

a:not(.button) {
	/*border-bottom: 1px solid #3078f0;*/
	border-bottom-color: rgba(48, 120, 240, 0.5);
	color: #3078f0;
	display: inline-block;
	padding-bottom: 1px;
	text-decoration: none;
	text-decoration: none;
	-webkit-transition: opacity 0.75s, transform 0.75s, border-bottom-color 300ms;
	-moz-transition: opacity 0.75s, transform 0.75s, border-bottom-color 300ms;
	-ms-transition: opacity 0.75s, transform 0.75s, border-bottom-color 300ms;
	-o-transition: opacity 0.75s, transform 0.75s, border-bottom-color 300ms;
	transition: opacity 0.75s, transform 0.75s, border-bottom-color 300ms;
	transition-property: opacity, transform, border-bottom-color !important;
}

a:not(.button):hover {
	border-bottom-color: #3078f0;
	color: #3078f0;
	text-decoration: none;
}

a.gray:not(.button) {
	border-bottom: 1px solid #515151;
	border-bottom-color: rgba(81, 81, 81, 0.5);
	color: #515151;
}

a.gray:not(.button):hover {
	border-bottom-color: #515151;
	color: #515151;
}

.button {
	background-color: #3078f0;
	border: 0px;
	border-radius: 5px;
	color: white;
	display: inline-block;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: bold;
	line-height: 1.5em;
	max-width: 244px;
	outline-offset: 3px;
	padding: 15px;
	text-align: center;
	text-decoration: none;
	text-decoration: none;
	transition: background-color 300ms;
	-webkit-transition: background-color 300ms;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	width: 100%;
}

.button:focus {
	outline-color: rgba(48, 120, 240, 0.5);
	outline-style: solid;
	outline-width: 3px;
}

.button+.button {
	margin-left: 20px;
}

.button:hover {
	background-color: #4483EC;
	color: white;
	cursor: pointer;
	text-decoration: none;
}

h1+p,
h2+p,
h3+p,
h4+p,
p+p,
h1+ul,
h2+ul,
h3+ul,
h4+ul,
p+ul,
li+li,
ul+p {
	margin-top: 10px;
}

p+.button {
	margin-top: 60px;
}

p.sr-alert {
	height: 0px;
	opacity: 0.0001;
	overflow: hidden;
}

section,
footer {
	background-color: white;
	padding: 95px 45px;
	position: relative;
}

section .container-fluid,
footer .container-fluid {
	margin: auto;
	max-width: 1000px;
	padding: 0px;
	position: relative;
	width: 100%;
}

/* privacy icon in menu item */
footer li.do-not-sell {
	display: inline-block;
}

footer li.privacy-icon {
	display: inline-block;
	font-size: 12px;
	line-height: 12px;
	margin-top: 0px;
}

footer li.privacy-icon a:not(.button) {
	border-bottom-width: 0px;
	font-size: 12px;
	line-height: 12px;
	padding-bottom: 0px;
}

footer .privacy-icon a img {
	height: 16px;
	margin-top: -11px;
}

footer li.ad-choices {
	margin-top: 2px;
}

.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 474px;
	padding: 0px;
}

.bg-image .bg-overlay {
	height: 100%;
	left: 0px;
	opacity: 0.65;
	position: absolute;
	top: 0px;
	width: 100%;
}

.bg-image .bg-overlay.orange {
	background-color: #F39500;
}

.bg-image .bg-overlay.blue {
	background-color: #3078f0;
}

.white-bg {
	background-color: white;
}

.gray-bg {
	background-color: #F2F2F2;
}

.white-bg h1,
.white-bg h2,
.gray-bg h1,
.gray-bg h2 {
	color: #3078f0;
}

.white-bg h3,
.white-bg h4,
.gray-bg h3,
.gray-bg h4 {
	color: #515151;
}

.white-bg p,
.gray-bg p {
	color: #515151;
}

.blue-bg {
	background-color: #1D3367;
}

.light-blue-bg {
	background-color: #3078f0;
}

.orange-bg {
	background-color: #F39500;
}

.blue-bg h1,
.blue-bg h2,
.blue-bg h3,
.blue-bg h4,
.blue-bg p,
.orange-bg h1,
.orange-bg h2,
.orange-bg h3,
.orange-bg h4,
.orange-bg p {
	color: white;
}

.blue-bg a:not(.button),
.orange-bg a:not(.button) {
	border-bottom: 1px solid white;
	border-bottom-color: rgba(255, 255, 255, 0.5);
	color: white;
}

.blue-bg a:not(.button):hover,
.orange-bg a:not(.button):hover {
	border-bottom-color: #fff;
	color: white;
}

#privacy-popup {
	bottom: -100px;
	left: 0px;
	padding: 20px;
	position: fixed;
	transition: bottom 300ms;
	-webkit-transition: bottom 300ms;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	width: 100%;
	z-index: 999;
}

#privacy-popup p,
#privacy-popup a {
	color: #515151;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

#privacy-popup a {
	border-bottom-color: rgba(81, 81, 81, 0.5);
}

#privacy-popup a:hover {
	border-bottom-color: #515151;
}

#privacy-popup button {
	align-items: center;
	background: none;
	border: 0px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	height: 17px;
	justify-content: center;
	margin-top: -8.5px;
	padding: 0px;
	position: absolute;
	right: 20px;
	top: 50%;
	width: 17px;
}

#privacy-popup button img {
	height: 100%;
	width: 100%;
}

#privacy-popup.shown {
	bottom: 0px;
}

.announcement {
	display: none;
	width: 100%;
}

.announcement .content {
	padding: 15px 45px;
	text-align: center;
	width: 100%;
}

.announcement .content p,
.announcement .content a {
	font-size: 20px;
	font-weight: bold;
}

nav.navbar {
	background-color: white;
	border: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-left: 45px;
	z-index: 99;
}

nav.navbar .container-fluid {
	align-items: center;
	height: 63px;
	padding: 0px;
	width: 100%;
}

nav.navbar .container-fluid a.navbar-brand,
nav.navbar .container-fluid a.navbar-brand:hover {
	border-bottom: 0px;
	color: white;
	padding: 0px;
	text-decoration: none;
	z-index: 99;
}

nav.navbar .container-fluid a.navbar-brand img,
nav.navbar .container-fluid a.navbar-brand:hover img {
	height: 44px;
	width: auto;
}

nav.navbar .container-fluid a.button.login {
	border-radius: 0px;
	height: 100%;
	margin-left: auto;
	width: 178px;
}

nav.navbar .container-fluid button.navbar-toggler {
	align-items: center;
	background-color: transparent;
	border: none;
	border-radius: 0px;
	display: flex;
	height: 100%;
	justify-content: center;
	outline-offset: 5px;
	padding: 5px;
	padding: 0px;
	width: 78px;
	z-index: 9999;
}

nav.navbar .container-fluid button.navbar-toggler .menu-bars {
	position: absolute;
	width: 27px;
	z-index: 9999;
}

nav.navbar .container-fluid button.navbar-toggler .menu-bars .menu-bar {
	background-color: transparent;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	display: block;
	height: 4px;
	margin-bottom: 4px;
	-webkit-transition: opacity .25s ease .125s, transform .25s ease .125s;
	-moz-transition: opacity .25s ease .125s, transform .25s ease .125s;
	-ms-transition: opacity .25s ease .125s, transform .25s ease .125s;
	-o-transition: opacity .25s ease .125s, transform .25s ease .125s;
	transition: opacity .25s ease .125s, transform .25s ease .125s;
	width: 27px;
}

nav.navbar .container-fluid button.navbar-toggler .menu-bars .menu-bar-1 {
	background-image: url("../images/menu-bar-1.svg");
}

nav.navbar .container-fluid button.navbar-toggler .menu-bars .menu-bar-2 {
	background-image: url("../images/menu-bar-2.svg");
}

nav.navbar .container-fluid button.navbar-toggler .menu-bars .menu-bar-3 {
	background-image: url("../images/menu-bar-3.svg");
}

nav.navbar .container-fluid button.navbar-toggler .menu-bars .menu-bar:last-child {
	margin-bottom: 0px;
}

nav.navbar .container-fluid button.navbar-toggler .close-bars {
	background-color: transparent;
	height: 17px;
	position: absolute;
	width: 17px;
	z-index: 9999;
}

nav.navbar .container-fluid button.navbar-toggler .close-bars .close-bar {
	background-color: white;
	background-color: transparent;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	display: block;
	height: 17px;
	opacity: 0;
	position: absolute;
	transform-origin: 50% 50%;
	-webkit-transition: opacity .25s ease 0s, transform .25s ease 0s;
	-moz-transition: opacity .25s ease 0s, transform .25s ease 0s;
	-ms-transition: opacity .25s ease 0s, transform .25s ease 0s;
	-o-transition: opacity .25s ease 0s, transform .25s ease 0s;
	transition: opacity .25s ease 0s, transform .25s ease 0s;
	width: 17px;
}

nav.navbar .container-fluid button.navbar-toggler .close-bars .close-bar-1 {
	background-image: url("../images/menu-x-1.svg");
	transform: rotate(-45deg);
}

nav.navbar .container-fluid button.navbar-toggler .close-bars .close-bar-2 {
	background-image: url("../images/menu-x-2.svg");
	transform: rotate(45deg);
}

nav.navbar .container-fluid button.navbar-toggler:not(.collapsed) .menu-bar {
	opacity: 0;
	-webkit-transition: opacity .25s ease 0s, transform .25s ease 0s;
	-moz-transition: opacity .25s ease 0s, transform .25s ease 0s;
	-ms-transition: opacity .25s ease 0s, transform .25s ease 0s;
	-o-transition: opacity .25s ease 0s, transform .25s ease 0s;
	transition: opacity .25s ease 0s, transform .25s ease 0s;
}

nav.navbar .container-fluid button.navbar-toggler:not(.collapsed) .menu-bar:first-child {
	transform: translate(0px, 8px);
}

nav.navbar .container-fluid button.navbar-toggler:not(.collapsed) .menu-bar:last-child {
	transform: translate(0px, -8px);
}

nav.navbar .container-fluid button.navbar-toggler:not(.collapsed) .close-bar {
	opacity: 1;
	transform: rotate(0deg);
	-webkit-transition: opacity .25s ease .125s, transform .25s ease .125s;
	-moz-transition: opacity .25s ease .125s, transform .25s ease .125s;
	-ms-transition: opacity .25s ease .125s, transform .25s ease .125s;
	-o-transition: opacity .25s ease .125s, transform .25s ease .125s;
	transition: opacity .25s ease .125s, transform .25s ease .125s;
}

nav.navbar .container-fluid .navbar-collapse {
	align-items: flex-start;
	background-color: white;
	display: flex !important;
	flex-direction: column;
	height: 100% !important;
	justify-content: space-between;
	left: 0px;
	overflow-x: hidden;
	position: fixed;
	transition: top .5s;
	-webkit-transition: top .5s;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	width: 100%;
	z-index: 999;
}

nav.navbar .container-fluid .navbar-collapse .nav-section {
	padding: 95px 45px;
	width: 100%;
}

nav.navbar .container-fluid .navbar-collapse .nav-section .nav-container {
	margin: auto;
	max-width: 1000px;
	padding: 0px;
	width: 100%;
}

nav.navbar .container-fluid .navbar-collapse .nav-section a {
	border-bottom: 0px;
	padding-bottom: 0px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.nav {
	align-items: center;
	background-color: white;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding: 0px;
	padding-left: 45px;
	position: fixed;
	z-index: 999;
	flex-shrink: 0;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.nav .nav-container {
	align-items: center;
	display: flex;
	height: 63px;
	justify-content: flex-start;
	max-width: 100%;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.nav a {
	border-bottom: 0px;
	text-decoration: none;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.nav a img {
	height: 44px;
	width: auto;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp {
	padding-top: 158px;
	flex-grow: 1;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp h4 {
	font-weight: normal;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp a {
	font-size: 27px;
	font-weight: bold;
	line-height: 1em;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp h4+a,
nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp br+a {
	margin-top: 25px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.footer {
	padding: 32px 45px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.footer a {
	font-size: 17px;
	font-weight: bold;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.footer br+a {
	margin-top: 16px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.footer a.go {
	background-image: url("../images/link-arrow.svg");
	background-position: left 7px;
	background-repeat: no-repeat;
	background-size: auto 12px;
	padding-left: 20px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.contact-us {
	padding: 0px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.contact-us .nav-container {
	max-width: 100%;
}

nav.navbar .container-fluid .navbar-collapse .nav-section.contact-us a.button {
	border-radius: 0px;
	font-size: 20px;
	font-weight: bold;
	height: 63px;
	max-width: 100%;
	outline-color: white;
	outline-offset: -10px;
	width: 100%;
}

nav.navbar .container-fluid .navbar-collapse:not(.collapsing):not(.expanded) {
	opacity: 0;
}

nav.navbar .container-fluid .navbar-collapse:not(.expanded) {
	top: -100%;
}

nav.navbar .container-fluid .navbar-collapse.expanded {
	opacity: 1;
	top: 0%;
	transition: top .5s;
	-webkit-transition: top .5s;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

/**@auhtor:  Cybage UI */
section.split-testimonial-bg,
section.split-about-bg {
	height: 500px;
	padding: 0px;
}

section.split-testimonial-bg .split-testimonial-gray-bg,
section.split-about-bg .split-about-gray-bg {
	height: 500px;
}

section.split-testimonial-bg a.carousel-control-next {
	border-bottom: 0px;
}

section.split-testimonial-bg a.carousel-control-prev {
	border-bottom: 0px;
}

section .testimonial-color-block {
	height: 100%;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 20%;
}

section .carousel-item {
	height: 500px;
}

/*section.split-testimonial-bg .container-fluid {
	max-width: 100%
}
section.split-testimonial-bg .container-fluid,
section.split-testimonial-bg .row,
section.split-testimonial-bg .testimonial-bg-image {
	padding: 0px;
    margin: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto
}*/
section.split-testimonial-bg .testimonial-bg-image {
	top: 50%;
	transform: translateY(-50%);
}

section .container-fluid .testimonial-bg-image .testimonial-info-block {
	padding-bottom: 80px;
	padding-top: 50px;
}

section .container-fluid .testimonial-bg-image .testimonial-info-block i {
	font-size: 4em;
}

section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-msg {
	color: #515151;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: -0.33px;
	line-height: 28px;
	max-width: 512px;
	padding-top: 25px;
}

section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post {
	bottom: -40px;
	position: relative;
}

section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post .testimonial-author-name {
	font-size: 15px;
	letter-spacing: -0.25px;
	line-height: 25px;
}

section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post .testimonial-author-post {
	font-size: 15px;
	letter-spacing: -0.25px;
	line-height: 25px;
}

section .container-fluid .carousel-control-icon {
	color: #515151;
	font-size: 70px;
	opacity: 49.97%;
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
}

section .container-fluid .carousel-next-control {
	left: 120px;
}

section .container-fluid .carousel-width {
	width: 60%;
}

section .container-fluid .carousel-previous-control {
	right: 170px;
}

/* For footer cookie bar **/
#dc-cnb-container {
	padding: 20px;
}

#dc-cnb-container #dc-cnb-text .close-popup {
	border: 0px;
	float: right;
	line-height: 1.3em;
}

section .container-fluid .testimonial-bg-image .testimonial-info-block img {
	height: 60px;
	width: 82px;
}

.footer-divider {
	border-top: 1px solid #fff;
	margin-bottom: 4.5rem;
	margin-top: 4.5rem;
}

footer .container-fluid .logos {
	margin-top: 0px;
}

.footer-address {
	color: #FFF;
	font-family: "Lato", helvetica;
	font-size: 14px;
	padding: 5px 0px 0px 0px;
}

.footer-phone {
	color: #FFF;
	font-size: 14px;
	padding: 5px 0px 0px 0px;
}

.social-media-link {
	margin-top: 20px;
}

.footer-copyright p {
	font-size: 12px;
	opacity: 75%;
	padding: 6px 0px 0px 0px;
}

.mem_image {
	/*added for logo alignment*/
	align-items: flex-end;
	margin-left: 0px;
	margin-right: 0px;
	gap: 20px 0px;
}

/*added for logo alignment*/
.img-wid {
	align-items: center;
	display: flex;
	padding: 0;
}

.img-wid .footer_logo {
	max-height: 40px;
	width: 70%;
}

.l-logo-wid {
	width: 60px;
}

.img_wrap_1 {
	padding: 0px;
	text-align: left;
}

.img_wrap_2 {
	padding: 0px;
	text-align: center;
}

.img_wrap_3 {
	text-align: right;
}

section.benefits.demand-side {
	padding: 90px 45px;
}

section.benefits.demand-side h3,
section.benefits.supply-side h3 {
	margin-bottom: 40px;
}

section.benefits .demand-side-bullets,
section.benefits .supply-side-bullets {
	margin-bottom: 2.5em;
}

section.benefits .contact {
	margin-left: 1rem;
}

section.press-release {
	padding: 120px 45px;
}

.tm {
	font-size: 50% !important;
	top: -0.8em !important;
}

@media (max-width: 800.98px) {
	.announcement .content {
		padding: 10px 38px;
		text-align: left;
	}

	.announcement .content p,
	.announcement .content a {
		font-size: 13px;
	}

	nav.navbar {
		padding-left: 38px;
	}

	nav.navbar .container-fluid {
		height: 50px;
	}

	nav.navbar .container-fluid a.navbar-brand img,
	nav.navbar .container-fluid a.navbar-brand:hover img {
		height: 36px;
		transform: translateZ(0);
		width: auto;
		image-rendering: -webkit-optimize-contrast;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section {
		padding: 75px 38px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.nav {
		padding-left: 38px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.nav .nav-container {
		height: 50px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.nav a img {
		height: 34px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp h4 {
		font-size: 15px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp a {
		font-size: 28px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.dsp-ssp .ssp {
		margin-top: 40px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.footer {
		padding: 37.5px 38px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.footer a {
		font-size: 15px;
	}

	nav.navbar .container-fluid .navbar-collapse .nav-section.contact-us a.button {
		height: 50px;
		padding: 10px;
	}

	section.news .container-fluid figure img {
		height: auto !important;
		width: 80% !important;
	}

	section.team .column {
		width: 100%;
	}

}

section.title {
	padding-top: 142.5px;
}

section.contact {
	padding: 150px 45px;
}

section.contact .container-fluid .title-wrapper {
	align-items: center;
	display: flex;
}

section.contact .container-fluid .button-wrapper {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	text-align: right;
}

section.newsletter {
	padding: 0px 45px;
}

section.newsletter .row.bg-image {
	height: 100%;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
}

section.newsletter .row.bg-image div {
	background-image: url("../images/newsletter-bg.png");
	background-position: center center;
}

section.newsletter .container-fluid .sign-up-box {
	padding: 95px 15px;
	padding-right: 45px;
}

section.newsletter .container-fluid .sign-up-box h3 {
	max-width: 352px;
}

section.newsletter .container-fluid .sign-up-box a.button {
	margin-top: 60px;
}

section.newsletter-bg {
	background-image: url("../images/newsletter-bg.png");
	background-position: center center;
}

section.bg-image.stat {
	background-image: url("../images/home/bg-2.jpg");
}

section.bg-image.stat .container-fluid {
	max-width: 100%;
	padding: 0px;
}

section.bg-image.stat .container-fluid .row {
	height: 100%;
	justify-content: flex-end;
	margin: 0px;
}

section.bg-image.stat .container-fluid .row .col.sidebar {
	-ms-flex: 0 0 512px;
	flex: 0 0 512px;
	padding: 50px 0px;
	text-align: center;
	width: 512px;
}

section.bg-image.stat .container-fluid .row .col.sidebar svg {
	left: 0px;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 0;
}

section.bg-image.stat .container-fluid .row .col.sidebar svg path {
	fill: white;
}

section.bg-image.stat .container-fluid .row .col.sidebar img {
	height: 100%;
	position: relative;
	width: auto;
	z-index: 1;
}

section.alt-stat {
	padding: 0px;
}

section.alt-stat .container-fluid {
	max-width: 100%;
	padding: 0px;
}

section.alt-stat .container-fluid .bg-image {
	height: auto;
	min-height: 474px;
}

section.alt-stat .container-fluid .stat-box {
	outline-offset: -10px;
	padding-bottom: 30px;
	padding-top: 60px;
}

section.alt-stat .container-fluid .stat-box h1,
section.alt-stat .container-fluid .stat-box h2,
section.alt-stat .container-fluid .stat-box p {
	color: #F39500;
}

section.alt-stat .container-fluid .stat-box .stat {
	display: flex;
	justify-content: flex-start;
}

section.alt-stat .container-fluid .stat-box .stat h1 {
	display: inline-block;
	font-size: 100px;
}

section.alt-stat .container-fluid .stat-box .stat h1.percent {
	font-size: 70px;
	margin-left: 10px;
	margin-top: 5px;
	opacity: 0.39;
}

section.alt-stat .container-fluid .stat-box .alt-stat {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

section.alt-stat .container-fluid .stat-box .alt-stat h2 {
	max-width: 70%;
}

section.alt-stat .container-fluid .stat-box .alt-stat p {
	font-size: 13px;
	font-weight: bold;
}

section.alt-stat .container-fluid .stat-box:focus {
	outline-color: rgba(48, 120, 240, 0.5);
	outline-style: solid;
	outline-width: 3px;
	z-index: 50;
}

section.alt-stat .container-fluid .stat-box.bg-image {
	background-origin: content-box;
	background-position: center;
	background-size: contain;
	padding: 30px;
}

section.split-bg {
	height: 474px;
	padding: 0px;
}

section.split-bg .container-fluid {
	max-width: 100%;
}

section.split-bg .container-fluid,
section.split-bg .row,
section.split-bg .bg-image {
	margin: 0px;
	padding: 0px;
}

section.two-column {
	padding-bottom: 0px;
}

section.two-column .container-fluid .left {
	padding-right: 80px;
}

section.two-column .container-fluid .left h2 {
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 31px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -0.5px;
	line-height: 1.15em;
}

section.two-column .container-fluid .left h2 .first-letter {
	bottom: -8px;
	color: #3078f0;
	display: inline;
	font-family: "Montserrat", helvetica;
	font-size: 70px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -6px;
	position: relative;
}

section.two-column .container-fluid .right {
	border-left: 2px solid #3078f0;
	padding-bottom: calc(15vw + 95px);
	padding-left: 20px;
}

section svg.diagonal-separator {
	bottom: 0px;
	height: 15vw;
	left: 0px;
	position: absolute;
	width: 100%;
}

section.white-bg svg.diagonal-separator path {
	stroke: #F2F2F2;
	fill: #F2F2F2;
}

section.gray-bg svg.diagonal-separator path {
	stroke: white;
	fill: white;
}

section.benefits {
	padding-bottom: 110px;
}

section.benefits h3 {
	margin-bottom: 20px;
}

section.benefits h4 {
	color: #3078f0;
	font-size: 20px;
	margin-top: 60px;
}

section.quote {
	padding: 0px;
}

section.quote .container-fluid {
	margin: 0px;
	max-width: 100%;
	padding: 0px;
}

section.quote .container-fluid .bg-image,
section.quote .container-fluid .quote-box,
section.quote .container-fluid .blue-box {
	padding-bottom: 47.5px;
	padding-top: 142.5px;
}

section.quote .container-fluid .bg-image {
	height: auto;
	padding-left: 25px;
	padding-right: 25px;
	text-align: right;
}

section.quote .container-fluid .bg-image img {
	height: auto;
	margin-top: -10px;
	width: 130px;
}

section.quote .container-fluid .quote-box {
	padding-left: 25px;
	padding-right: 25px;
}

section.quote .container-fluid .quote-box h2 {
	color: #F39500;
	max-width: 600px;
	width: 80%;
}

section.quote .container-fluid .quote-box p {
	color: #515151;
	font-size: 16px;
	font-weight: bold;
}

section.quote .container-fluid .blue-box {
	background-color: #3078f0;
}

section.contact-form {
	height: 100% !important;
	left: 0px;
	overflow-x: hidden;
	padding: 0px;
	/*z-index: 999;
	position: fixed;*/
	width: 100%;
}

section.contact-form button.close-contact-form-btn {
	background-color: white;
	background-image: url("../images/menu-x.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	border: 0px;
	cursor: pointer;
	height: 18px;
	outline-offset: 5px;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 18px;
	z-index: 9999;
}

section.contact-form button:active {
	outline: 0px;
}

section.contact-form .container-fluid {
	height: 100%;
	max-width: 100%;
}

section.contact-form .container-fluid .row {
	height: 100%;
}

section.contact-form .container-fluid .blue-section {
	background-color: #3078f0;
	background-image: url("../images/contact-bg.jpg");
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

section.contact-form .container-fluid .form-section {
	height: 100%;
	padding: 75px 95px 95px 95px;
	padding-bottom: 0px;
}

section.contact-form .container-fluid .form-section .scroll-window {
	/*overflow-x: hidden;*/
	height: 100%;
	/*overflow-y: scroll;*/
	-webkit-overflow-scrolling: touch;
	padding-bottom: 95px;
}

section.contact-form .container-fluid .form-section .scroll-window::-webkit-scrollbar {
	background-color: transparent !important;
	display: none !important;
	height: 0 !important;
	width: 0 !important;
}

section.contact-form .container-fluid .form-section h2 {
	font-size: 36px;
}

section.contact-form .container-fluid .form-section p span.star {
	color: red;
	font-size: 17px;
	font-style: normal;
	font-weight: bold;
}

section.contact-form .container-fluid .form-section form {
	margin-top: 15px;
}

section.contact-form .container-fluid .form-section form .field {
	margin-top: 30px;
}

section.contact-form .container-fluid .form-section form .field label {
	color: #515151;
	display: block;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 0px;
	margin-bottom: 10px;
}

section.contact-form .container-fluid .form-section form .field label span.star {
	color: red;
}

section.contact-form .container-fluid .form-section form .field input,
section.contact-form .container-fluid .form-section form .field select,
section.contact-form .container-fluid .form-section form .field textarea {
	background-color: #F2F2F2;
	border: 0px;
	border-radius: 5px;
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: normal;
	margin-bottom: 3px;
	padding: 15px;
	width: 100%;
}

section.contact-form .container-fluid .form-section form .field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("../images/select-down-arrow.svg");
	background-position: 96% 50%;
	background-repeat: no-repeat;
	background-size: 12px 7px;
	cursor: pointer;
	padding-right: 35px;
}

section.contact-form .container-fluid .form-section form .field textarea {
	background-color: white;
	border-bottom: 1px solid #3078f0;
	border-radius: 0px;
}

section.contact-form .container-fluid .form-section form .field select::-ms-expand {
	display: none;
}

section.contact-form .container-fluid .form-section form .field ::placeholder {
	color: #BFBFBF;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: normal;
}

section.contact-form .container-fluid .form-section form .field :-ms-input-placeholder {
	color: #BFBFBF;
	color: #BFBFBF;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: normal;
}

section.contact-form .container-fluid .form-section form .field ::-ms-input-placeholder {
	color: #BFBFBF;
	color: #BFBFBF;
	font-family: "Lato", helvetica;
	font-size: 17px;
	font-style: normal;
	font-weight: normal;
}

section.contact-form .container-fluid .form-section form .field .error {
	display: none;
	font-size: 9px;
	height: 0px;
	overflow: visible;
}

section.contact-form .container-fluid .form-section form .submit {
	margin-top: 60px;
}

section.contact-form .container-fluid .form-section form .submit .button {
	margin-top: 30px;
}

section.contact-form .container-fluid .form-section form .thanks {
	display: none;
	margin-top: 60px;
}

section.contact-form .container-fluid .form-section form .thanks p {
	font-size: 13px;
	margin-top: 15px;
}

section.contact-form .container-fluid .form-section form .field:nth-child(2n+1) {
	padding-right: 25px;
}

section.contact-form .container-fluid .form-section form .field:nth-child(2n) {
	padding-left: 25px;
}

section.contact-form .container-fluid .form-section form.error-first_name .first-name .error,
section.contact-form .container-fluid .form-section form.error-last_name .last-name .error,
section.contact-form .container-fluid .form-section form.error-company .company .error,
section.contact-form .container-fluid .form-section form.error-email .email .error,
section.contact-form .container-fluid .form-section form.error-title .title .error,
section.contact-form .container-fluid .form-section form.error-ima .ima .error,

section.contact-form .container-fluid .form-section form.error-CMS_Name__c .cms-name .error,
/*section.contact-form .container-fluid .form-section form.error-CMS__c .cms .error,*/

section.contact-form .container-fluid .form-section form.error-Venue_Category__c .venue-category .error,
section.contact-form .container-fluid .form-section form.error-Approximate_screen_count__c .screen-count .error,

section.contact-form .container-fluid .form-section form.error-offerings .offerings .error,


section.contact-form .container-fluid .form-section form.error-Other_Venue_Category__c .venue-name .error,


section.contact-form .container-fluid .form-section form.error-Primary_Market__c .primary-market .error,
section.contact-form .container-fluid .form-section form.error-Other_Primary_Market__c .primary-market-name .error,

section.contact-form .container-fluid .form-section form.error-Verified_Impression_Measurement__c .measure .error,
section.contact-form .container-fluid .form-section form.error-Verified_Impression_Measurement_Name__c .impression .error {
	display: block;
}

section.contact-form .container-fluid .form-section form.error-CMS_Name__c .cms-name .error {
	display: block;
}

section.contact-form .container-fluid .form-section form.error-Venue_Category__c .venue-category .error {
	display: block;
}

/*section.contact-form:not(.expanded) {
	-webkit-transition: opacity 0s ease .5s, top .5s ease 0s;
	-moz-transition: opacity 0s ease .5s, top .5s ease 0s;
	-ms-transition: opacity 0s ease .5s, top .5s ease 0s;
	-o-transition: opacity 0s ease .5s, top .5s ease 0s;
	transition: opacity 0s ease .5s, top .5s ease 0s;
	top: 100%;
	opacity: 0
}
section.contact-form.expanded {
	-webkit-transition: opacity 0s ease 0s, top .5s ease 0s;
	-moz-transition: opacity 0s ease 0s, top .5s ease 0s;
	-ms-transition: opacity 0s ease 0s, top .5s ease 0s;
	-o-transition: opacity 0s ease 0s, top .5s ease 0s;
	transition: opacity 0s ease 0s, top .5s ease 0s;
	top: 0%;
	opacity: 1
}*/

section.legal a {
	display: inline;
}

section.legal p+h3,
section.legal ul+h3 {
	margin-top: 90px;
}

section.legal p+h4,
section.legal h3+h4,
section.legal h3+p,
section.legal ul+h4,
section.legal h3+ul {
	margin-top: 45px;
}

section.legal h1 {
	margin-bottom: 90px;
}

section.legal h4 {
	color: #3078f0;
	font-size: 20px;
}

section.legal ul {
	list-style-type: lower-alpha;
	padding-left: 17px;
}

section.legal ul ul {
	list-style-type: lower-roman;
}

section.legal ul ul ul {
	list-style-type: decimal;
}

section.legal ul ul ul ul {
	list-style-type: lower-alpha;
}

section.legal ul.bullets {
	padding-left: 0px;
}

section.news-blurbs {
	padding: 0px;
}

section.about-blurbs {
	height: 500px;
	padding: 0px;
}

section.news-blurbs .container-fluid,
section.about-blurbs .container-fluid {
	max-width: 100%;
}

section.news-blurbs .container-fluid .row,
section.about-blurbs .container-fluid .row {
	margin: 0px;
}

section.news-blurbs .container-fluid .row .blurb-side,
section.about-blurbs .container-fluid .row .blurb-side {
	padding: 0px;
}


section.news-blurbs .container-fluid .blurb,
section.about-blurbs .container-fluid .blurb {
	background-color: white;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0px;
	position: relative;
}

section.news-blurbs .container-fluid .blurb .blurb-overlay,
section.about-blurbs .container-fluid .blurb .blurb-overlay {
	height: 100%;
	left: 0px;
	opacity: 0.79;
	position: absolute;
	top: 0px;
	transition: background-color 300ms;
	-webkit-transition: background-color 300ms;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	width: 100%;
	z-index: 0;
}

section.news-blurbs .container-fluid .blurb .blurb-inner,
section.about-blurbs .container-fluid .blurb .blurb-inner {
	height: 100%;
	width: 100%;
}

section.news-blurbs .container-fluid .blurb a {
	align-items: flex-start;
	border-bottom: 0px;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	outline-offset: -10px;
	padding: 20px;
	position: relative;
	width: 100%;
	z-index: 1;
}

section.news-blurbs .container-fluid .blurb a p {
	font-size: 15px;
	margin: 0px;
	flex-shrink: 0;
}

section.news-blurbs .container-fluid .blurb a p,
section.news-blurbs .container-fluid .blurb a h3 {
	color: white;
}

section.news-blurbs .container-fluid .blurb a h3 {
	margin: 0px;
	margin-bottom: 20px;
	margin-top: 20px;
	max-width: 800px;
}

section.news-blurbs .container-fluid .blurb a .arrow {
	height: 16px;
}

section.news-blurbs .container-fluid .blurb a .arrow.white {
	opacity: 0.5;
}

section.news-blurbs .container-fluid .blurb.blurb1 .blurb-overlay,
section.about-blurbs .container-fluid .blurb.blurb1 .blurb-overlay {
	background-color: #4C7FFF;
}

section.news-blurbs .container-fluid .blurb.blurb1:hover .blurb-overlay,
section.about-blurbs .container-fluid .blurb.blurb1:hover .blurb-overlay {
	background-color: #3C70EB;
}

section.news-blurbs .container-fluid .blurb.blurb2 .blurb-overlay,
section.about-blurbs .container-fluid .blurb.blurb2 .blurb-overlay {
	background-color: #F39500;
}

section.news-blurbs .container-fluid .blurb.blurb2:hover .blurb-overlay,
section.about-blurbs .container-fluid .blurb.blurb2:hover .blurb-overlay {
	background-color: #D88000;
}

section.news-blurbs .container-fluid .blurb.blurb3 a p,
section.news-blurbs .container-fluid .blurb.blurb3 a h3 {
	color: #5F6368;
	transition: color 300ms;
	-webkit-transition: color 300ms;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

section.news-blurbs .container-fluid .blurb.blurb3:hover a h3 {
	color: #949494;
}

section.news-blurbs .container-fluid .blurb.blurb2,
section.news-blurbs .container-fluid .blurb.blurb3 {
	min-height: 300px;
}

section.about-blurbs .container-fluid .blurb.blurb2,
section.about-blurbs .container-fluid .blurb.blurb3 {
	min-height: 250px;
}

section.news-blurbs .container-fluid .blurb.blurb4 .blurb-overlay,
section.about-blurbs .container-fluid .blurb.blurb4 .blurb-overlay {
	background-color: #1D3367;
}

section.news-blurbs .container-fluid .blurb.blurb4:hover .blurb-overlay {
	background-color: #0d2656;
}

section.news-blurbs .container-fluid .blurb a:focus {
	outline-color: rgba(48, 120, 240, 0.5);
	outline-style: solid;
	outline-width: 3px;
}

section.news-blurbs .container-fluid .blurb.blurb4 a:focus,
section.news-blurbs .container-fluid .blurb.blurb1 a:focus {
	outline-color: rgba(255, 255, 255, 0.5);
}

section.news-blurbs .container-fluid .view-all {
	align-items: flex-end;
	background-color: #F2F2F2;
	display: flex;
	justify-content: flex-end;
}

section.news-blurbs .container-fluid .view-all a {
	color: #3078f0;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	height: auto;
	outline-offset: -5px;
	transition: color 300ms;
	-webkit-transition: color 300ms;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	width: auto;
}

section.news-blurbs .container-fluid .view-all a:hover {
	color: #3362d0;
}

section.news .container-fluid h3+p {
	margin-top: 10px;
}

section.news .container-fluid h4 {
	font-size: 20px;
	line-height: 25px;
}

section.news .container-fluid p+h4,
section.news .container-fluid h4+img {
	margin-top: 45px;
}

section.news .container-fluid img+p {
	margin-top: 15px;
}

section.news .container-fluid img {
	height: auto;
	width: 100%;
}

section.news .container-fluid p.caption {
	color: #BFBFBF;
}

section.news .container-fluid .aligncenter {
	/*margin-left: 25%;*/
	display: block;
	height: auto !important;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

section.news .container-fluid .aligncenter>figcaption {
	text-align: center;
}

@media (max-width: 991.98px) {
	section.contact-form .container-fluid .form-section {
		padding: 75px 53px;
		padding-bottom: 0px;
		padding-right: 68px;
	}

	section.contact-form .container-fluid .form-section .scroll-window {
		padding-bottom: 75px;
	}
}

@media (max-width: 1250px) {
	section .container-fluid .carousel-previous-control {
		right: 60px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block {
		padding-left: 10%;
	}
}

@media (max-width: 1024px) {
	section.alt-stat .container-fluid .stat-box .alt-stat h2 {
		max-width: none;
	}

	section .container-fluid .carousel-previous-control {
		right: 20px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block {
		padding-left: 15%;
	}

	.about_vision {
		line-height: 50px;
		padding: 0px 20px 0px 20px;
	}
}

@media (max-width: 575px) {
	.measure-margin {
		margin-top: 10px;
	}

	.rbutton-size {
		height: 1em;
		width: 2em;
	}
}

@media (max-width: 800.98px) {
	section.title {
		padding-top: 75px;
	}

	section.contact {
		padding: 150px 38px;
	}

	section.contact .container-fluid .button-wrapper {
		justify-content: flex-start;
		margin-top: 60px;
		text-align: left;
	}

	section.newsletter .container-fluid .sign-up-box a.button {
		margin-top: 60px;
	}

	section.bg-image.stat {
		background-position: 0px 2px;
		height: 522px;
	}

	section.bg-image.stat .container-fluid {
		height: 100%;
	}

	section.bg-image.stat .container-fluid .row {
		height: 50%;
	}

	section.bg-image.stat .container-fluid .row .col.sidebar {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding: 37.5px 38px;
		padding-bottom: 0px;
		text-align: right;
		width: 100%;
	}

	section.bg-image.stat .container-fluid .row .col.sidebar svg {
		height: 100%;
	}

	section.bg-image.stat .container-fluid .row .col.sidebar img {
		height: 100%;
	}

	section.split-bg {
		height: 271px;
		padding: 0px;
	}

	section.two-column .container-fluid .left {
		padding-bottom: 60px;
		padding-right: 15px;
	}

	section.two-column .container-fluid .left h2 .first-letter {
		bottom: -6px;
		font-size: 54px;
		letter-spacing: -6px;
	}

	section.two-column .container-fluid .right {
		border-left: 0px;
		padding-bottom: calc(15vw + 75px);
		padding-left: 15px;
	}

	section.benefits {
		padding-bottom: 75px;
	}

	section.benefits h3 {
		margin-bottom: 0px;
	}

	section.benefits h4 {
		margin-top: 60px;
	}

	section.benefits h4,
	section.benefits p {
		padding-right: 0px;
	}

	section.benefits h4 {
		margin-bottom: 30px;
	}

	section.benefits p,
	section.benefits li {
		margin-top: 20px;
	}

	section.quote .container-fluid .bg-image,
	section.quote .container-fluid .quote-box,
	section.quote .container-fluid .blue-box {
		padding-bottom: 37.5px;
		padding-top: 112.5px;
	}

	section.quote .container-fluid .bg-image {
		padding-right: 15px;
	}

	section.quote .container-fluid .bg-image img {
		max-width: 80px;
		width: 90%;
	}

	section.quote .container-fluid .quote-box h2 {
		font-size: 27px;
		width: 90%;
	}

	section.quote .container-fluid .quote-box p {
		font-size: 15px;
	}

	section.contact-form .container-fluid .form-section {
		padding: 75px 53px;
		padding-bottom: 0px;
	}

	section.contact-form .container-fluid .form-section .scroll-window {
		padding-bottom: 75px;
	}

	section.contact-form .container-fluid .form-section h2 {
		font-size: 36px;
	}

	section.contact-form .container-fluid .form-section form {
		margin-top: 30px;
	}

	section.contact-form .container-fluid .form-section form .field {
		margin-top: 30px;
	}

	section.contact-form .container-fluid .form-section form .field label {
		font-size: 15px;
	}

	section.contact-form .container-fluid .form-section form .field input,
	section.contact-form .container-fluid .form-section form .field select {
		font-size: 15px;
	}

	section.contact-form .container-fluid .form-section form .field ::placeholder {
		font-size: 15px;
	}

	section.contact-form .container-fluid .form-section form .field :-ms-input-placeholder {
		font-size: 15px;
	}

	section.contact-form .container-fluid .form-section form .field ::-ms-input-placeholder {
		font-size: 15px;
	}

	section.contact-form .container-fluid .form-section form .submit p {
		margin-top: 60px;
	}

	section.contact-form .container-fluid .form-section form .submit .button {
		margin-top: 30px;
	}

	section.contact-form .container-fluid .form-section form .field:nth-child(2n+1) {
		padding-right: 15px;
	}

	section.contact-form .container-fluid .form-section form .field:nth-child(2n) {
		padding-left: 15px;
	}

	section.legal p+h3,
	section.legal ul+h3 {
		margin-top: 60px;
	}

	section.legal p+h4,
	section.legal h3+h4,
	section.legal h3+p,
	section.legal ul+h4,
	section.legal h3+ul {
		margin-top: 45px;
	}

	section.legal h1 {
		margin-bottom: 60px;
	}

	section.legal h4 {
		color: #3078f0;
		font-size: 17px;
	}

	section.news-blurbs .container-fluid .blurb a {
		padding: 20px;
	}

	section.news-blurbs .container-fluid .blurb a p {
		font-size: 12px;
	}

	section.news-blurbs .container-fluid .blurb a h3 {
		font-size: 22px;
		margin-bottom: 20px;
		margin-top: 20px;
	}

	section.news-blurbs .container-fluid .blurb a .arrow {
		height: 13px;
	}

	section.news-blurbs .container-fluid .blurb.blurb2,
	section.news-blurbs .container-fluid .blurb.blurb3 {
		min-height: auto;
	}

	section.news-blurbs .container-fluid .view-all a {
		font-size: 15px;
	}

	section.news-blurbs .container-fluid .view-all.stories-2 {
		background-color: white;
	}

	section.news-blurbs .container-fluid .gray-stripe {
		background-color: #F2F2F2;
		min-height: 50px;
	}

	section.alt-stat .container-fluid .bg-image {
		min-height: 271px;
	}

	section.alt-stat .container-fluid .stat-box {
		padding: 30px;
		padding-right: 60px;
		padding-top: 60px;
	}

	section.alt-stat .container-fluid .stat-box .stat h1 {
		font-size: 80px;
	}

	section.alt-stat .container-fluid .stat-box .stat h1.percent {
		font-size: 50px;
		margin-left: 10px;
		margin-top: 5px;
	}

	section.alt-stat .container-fluid .stat-box .alt-stat h2 {
		font-size: 30px;
		max-width: none;
	}

	section.alt-stat .container-fluid .stat-box .alt-stat p {
		font-size: 12px;
	}

	section.alt-stat .container-fluid .stat-box.bg-image {
		padding: 30px;
	}

	section.contact-form-display {
		padding: 20px;
		padding-top: 0px !important;
	}

	section.contact-form-display .container-fluid .form-section form .submit {
		margin-top: 0px;
	}

	section .container-fluid .contact-title-bg-image .contact-title-info-block {
		padding: 45px !important;
	}

	section .container-fluid .contact-title-bg-image .contact-title-info-block .contact-title-info-msg {
		font-size: 60px !important;
		height: 100% !important;
		width: 100% !important;
	}

	section.split-video-bg {
		height: auto;
	}

}

@media (max-width: 549.98px) {
	section.news-blurbs .container-fluid .view-all.stories-2 a {
		font-size: 12px;
	}

	section.newsletter {
		padding: 150px 38px;
	}

	section.newsletter .container-fluid .sign-up-box {
		padding: 0px 15px;
	}

	section.newsletter .container-fluid .sign-up-box h3 {
		max-width: 274px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block {
		padding: 75px;
		padding-top: 40px;
	}

	section .container-fluid .carousel-next-control {
		left: 0px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block i {
		font-size: 3em;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-msg {
		color: #5F6368;
		letter-spacing: -0.322581px;
		line-height: 27px;
		width: 100%;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post {
		bottom: -20px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post .testimonial-author-name {
		letter-spacing: -0.2475px;
		line-height: 20px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post .testimonial-author-post {
		color: #515151;
		font-size: 14px;
		letter-spacing: -0.233333px;
		line-height: 21px;
	}

	section.news .container-fluid figure img {
		height: auto !important;
		width: 55% !important;
	}

	section.news .container-fluid .aligncenter>figcaption {
		text-align: center;
		width: 55% !important;
	}

	section.contact-form-display .container-fluid .form-section form .submit {
		margin-top: -20px;
	}

	section .container-fluid .contact-title-bg-image .contact-title-info-block .contact-title-info-msg {
		font-size: 50px !important;
	}

	section.contact-form-display .container-fluid .form-section .pre-form-section {
		padding-top: 20px;
	}

	section.split-testimonial-bg {
		height: 600px;
	}

	section.split-testimonial-bg .split-testimonial-gray-bg {
		height: 600px;
	}

	section .carousel-item {
		height: 600px;
	}

	.logo-wrapper img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 85%;
	}

	section.team .column {
		width: 100%;
	}

	section.about_blurbs_mobile {
		display: block !important;
	}

	.desktop_disp {
		display: none !important;
	}

	section.about-blurbs {
		height: unset;
	}

	section.press-release .button {
		margin-top: 35px;
	}

	.nav-margin {
		margin-left: 0px;
	}
}

footer .container-fluid a {
	line-height: 1em;
}

footer .container-fluid a:focus {
	outline-color: white;
	outline-offset: 3px;
}

footer .container-fluid h4+a {
	margin-top: 25px;
}

footer .container-fluid br+a {
	margin-top: 15px;
}

.demand-links {
	flex-basis: 27%;
	max-width: unset;
	flex-grow: 3;
}

.about-links {
	flex-basis: 20%;
	flex-grow: 0;
}

.privacy-links {
	flex-basis: 20%;
	flex-grow: 0;
}

footer .container-fluid .press-links {
	margin-top: 40px;
	padding-left: 0px;
}

footer .container-fluid .press-links a {
	margin-top: 10px;
	max-width: 100%;
	overflow-wrap: break-word;
}

footer .container-fluid .logos {
	margin-top: 0px;
}

footer .container-fluid .logos .social,
footer .container-fluid .logos .partners {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding-top: 10px;
}

footer .container-fluid .logos a {
	border-bottom: 0px;
	margin-right: 15px;
}

footer .container-fluid .logos a img {
	height: 26px;
}

footer .container-fluid .logos .partners img.nai {
	height: 26px;
}

footer .container-fluid .logos .partners img.tag {
	height: 45px;
}

footer .container-fluid .logos .partners img:last-child {
	margin-left: 18px;
}

footer .container-fluid .logos .OOOLogo_member {
	clear: both;
	color: #FFF;
	font-size: 11px;
	margin-bottom: 35px;
	margin-right: 0px;
}

footer .container-fluid .logos img.oli {
	margin-bottom: 40px;
	margin-top: -15px;
}

footer .container-fluid .logos img.OOOLogo_img {
	margin-left: 0 !important;
}

footer .container-fluid .logos img.tag {
	margin-bottom: 25px;
	margin-left: 0 !important;
}

footer .container-fluid .logos .iab {
	margin-left: 0 !important;
	margin-top: -15px;
}

footer .container-fluid .logos .memberText {
	display: block;
	font-weight: normal;
	margin-bottom: 15px;
}

.headquarters {
	margin-bottom: 20px;
}

@media (max-width: 800.98px) {
	footer .container-fluid a {
		font-size: 13px;
		line-height: 1em;
	}

	footer .container-fluid h4+a {
		margin-top: 25px;
	}

	footer .container-fluid br+a {
		margin-top: 15px;
	}

	footer .container-fluid .press-links {
		margin-top: 0px;
	}

	footer .about-links {
		flex-basis: unset;
		margin-top: 40px;
	}

	.about_vision {
		line-height: 50px;
		padding: 0px 20px 0px 20px;
	}
}

@media (max-width: 767px) {
	footer .privacy-links {
		margin-top: 40px;
	}

	footer .container-fluid .press-links {
		margin-top: 40px;
	}
}

@media (max-width: 450px) {
	section.contact-form-display .container-fluid .form-section form {
		margin-top: 70px !important;
	}

	section .container-fluid .carousel-previous-control {
		right: 5px;
	}

	section.split-testimonial-bg {
		height: 680px;
	}

	section.split-testimonial-bg .split-testimonial-gray-bg {
		height: 680px;
	}

	section.split-about-bg .split-about-gray-bg {
		height: 500px;
	}

	section.split-about-bg {
		height: 500px;
	}

	section.split-about-bg .split-about-gray-bg {
		height: 500px;
	}

	section .carousel-item {
		height: 680px;
	}

	section .container-fluid .carousel-width {
		width: 100%;
	}

	footer .container-fluid .logos .social a img {
		height: 16px;
	}

	footer .container-fluid .logos .partners img.nai {
		height: 17px;
	}

	footer .container-fluid .logos .partners img.tag {
		height: 29px;
	}

	footer .container-fluid .logos .partners img.tag {
		height: 29px;
	}

	footer .container-fluid .logos .OOOLogo_member {
		clear: both;
		color: #FFF;
		padding-left: 0px;
	}

	footer .container-fluid .logos img.OOOLogo_img {
		height: 15px;
	}

	footer .container-fluid .logos .oli {
		padding-left: 10px;
	}

	footer .container-fluid .logos img.iab {
		height: 15px;
	}

	footer .container-fluid .logos img.tag {
		height: 15px;
	}

	/*footer .container-fluid .logos .memberText {
		display: block;margin-bottom: 12px;font-size:11px;
	}*/
	.footer-address {
		font-size: 11px;
		padding: 5px 0px;
	}

	.footer-phone {
		font-size: 11px;
		padding: 5px 0px;
	}

	footer #TAG_logo img {
		max-height: 26px;
	}

	footer .container-fluid .logos a img {
		height: 15px;
	}

	footer .container-fluid .dp {
		margin-left: -5px;
	}

	footer .container-fluid .oa {
		margin-top: -15px;
	}

	footer .container-fluid .ta {
		margin-top: -15px;
	}

	.footer-copyright p {
		padding-top: 16px;
	}

	section.team .column {
		width: 100%;
	}

	.about_vision {
		line-height: 39px;
		padding: 0px 15px 0px 15px;
	}

	section.about_blurbs_mobile {
		display: block !important;
	}

	.desktop_disp {
		display: none !important;
	}

	section.about-blurbs {
		height: unset;
	}

	section.press-release .button {
		margin-top: 35px;
	}

	.nav-margin {
		margin-left: 0px;
	}
}

.img-width {
	max-width: 80%;
}

/* logo alignment code*/

@media only screen and (max-width: 575px) {

	/*.logos {
		flex-direction: column;
		gap: 3rem 0rem;
	}*/
	.member-margin {
		padding: 0px;
	}
}


@media only screen and (max-width: 450px) {
	.img-width {
		max-width: 50%;
	}
}



@media only screen and (max-width: 410px) {
	/*.img-wid {
		flex: 0 0 100%;
		max-width: 100%;
	}*/
}

@media (max-width: 400px) {
	footer .container-fluid a {
		border-bottom: 0px !important;
		text-decoration: underline;
	}

	footer .container-fluid a:hover {
		text-decoration: underline;
	}

	footer .container-fluid .demand-links,
	footer .container-fluid .supply-links,
	footer .container-fluid .about-links,
	footer .container-fluid .press-links {
		flex: 0 0 100%;
		max-width: 100%;
	}

	footer .container-fluid .press-links {
		margin-top: 40px;
	}

	footer .container-fluid .supply-links {
		margin-top: 0px;
	}

	footer .container-fluid .logos {
		margin-top: 0px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block {
		padding: 50px;
		padding-top: 20px;
	}

	section .container-fluid .carousel-previous-control {
		right: 15px;
	}

	section .container-fluid .carousel-next-control {
		left: 10px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block .testimonial-info-post {
		bottom: -10px;
	}

	section.news .container-fluid figure img {
		height: auto !important;
		width: 40% !important;
	}

	section.news .container-fluid .aligncenter img {
		display: block;
		height: auto !important;
		margin-left: auto;
		margin-right: auto;
		width: 80% !important;
	}

	section.news .container-fluid .aligncenter {
		display: block;
		height: auto !important;
		margin-left: auto;
		margin-right: auto;
		width: 100% !important;
	}

	section.news .container-fluid .aligncenter>figcaption {
		text-align: center;
	}

	section.news .container-fluid .aligncenter>figcaption {
		text-align: center;
		width: 100% !important;
	}

	section .container-fluid .contact-title-bg-image .contact-title-info-block .contact-title-info-msg {
		font-size: 35px !important;
		letter-spacing: -1.5px !important;
		line-height: 39px !important;
	}

	section.contact-form-display .container-fluid .form-section .contact-us-text {
		font-size: 14px !important;
		letter-spacing: -0.233333px !important;
		line-height: 21px !important;
	}

	section.contact-form-display .container-fluid .form-section .download-text {
		padding-top: 30px !important;
	}

	section.contact-form-display {
		margin-top: -50px !important;
	}

	section.contact-form-display .container-fluid .form-section form {
		margin-top: 40px !important;
	}

	section.split-contact-title-bg {
		padding-top: 20px !important;
	}

	footer .container-fluid .logos .social a img {
		height: 16px;
	}

	footer .container-fluid .logos .partners img.nai {
		height: 17px;
	}

	footer .container-fluid .logos .partners img.tag {
		height: 29px;
	}

	footer .container-fluid .logos .OOOLogo_member {
		clear: both;
		color: #FFF;
		font-size: 9px;
		/*padding-right : 30px;*/
	}

	footer .container-fluid .logos img.OOOLogo_img {
		height: 15px;
		margin-top: 0px !important;
		width: 40px;
	}

	footer .container-fluid .logos img.iab {
		width: 45px !important;
	}

	footer .container-fluid .logos img.olg {
		width: 35px;
	}


	footer .container-fluid .logos .oli {
		padding-left: 10px;
	}

	footer .container-fluid .logos img.iab {
		height: 15px;
		width: 40px;
	}

	footer .container-fluid .logos img.tag {
		height: 15px;
		width: 40px;
	}

	.footer-address {
		font-size: 11px;
		padding-top: 0px;
	}

	.footer-phone {
		font-size: 11px;
		padding-top: 5px;
	}

	footer .container-fluid .logos a img {
		height: 15px;
	}

	section.team .column {
		width: 100%;
	}

	.about_vision {
		line-height: 39px;
		padding: 0px 15px 0px 15px;
	}

	section.about_blurbs_mobile {
		display: block !important;
	}

	.desktop_disp {
		display: none !important;
	}

	section.about-blurbs {
		height: unset;
	}

	section.press-release .button {
		margin-top: 35px;
	}

	.nav-margin {
		margin-left: 0px;
	}
}

@media (max-width: 330px) {
	section.split-testimonial-bg {
		height: 750px;
	}

	section.split-testimonial-bg .split-testimonial-gray-bg {
		height: 750px;
	}

	section .carousel-item {
		height: 750px;
	}

	.footer-address {
		font-size: 11px;
		padding: 5px 0px;
	}

	.footer-phone {
		font-size: 11px;
		padding: 5px 0px;
	}

	footer #TAG_logo img {
		max-height: 20px;
	}

	footer .container-fluid .logos a img {
		height: 15px;
	}

	footer .container-fluid .logos .oli {
		padding-left: 10px;
	}

	section.about_blurbs_mobile {
		display: block !important;
	}

	.desktop_disp {
		display: none !important;
	}

	section.about-blurbs {
		height: unset;
	}

	.nav-margin {
		margin-left: 0px;
	}
}

@media (max-width: 280px) {
	section.contact-form-display .container-fluid .form-section form {
		margin-top: 70px !important;
	}

	section .container-fluid .carousel-previous-control {
		right: -10px;
	}

	section .container-fluid .carousel-next-control {
		left: -20px;
	}

	.footer-address {
		font-size: 11px;
		padding: 5px 0px;
	}

	.footer-phone {
		font-size: 11px;
		padding: 5px 0px;
	}

	footer .container-fluid .logos a img {
		height: 15px;
	}

	footer .container-fluid .logos .oli {
		padding-left: 10px;
	}

	section.team .column {
		width: 100%;
	}

	section.about_blurbs_mobile {
		display: block !important;
	}

	section.about-blurbs {
		height: unset;
	}

	.nav-margin {
		margin-left: 0px;
	}
}

@media (max-width: 991.98px) {
	h1 {
		font-size: 60px;
	}
}

.cmp_url {
	border: 0px !important;
	cursor: pointer;
	text-decoration: none !important;
}

@media (max-width: 800.98px) {
	h1 {
		font-size: 36px;
		letter-spacing: -2px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 13px;
	}

	p,
	label,
	p a:not(.button),
	ul li {
		font-size: 15px;
	}

	h1+p,
	h2+p,
	h3+p,
	h4+p,
	p+p,
	h1+ul,
	h2+ul,
	h3+ul,
	h4+ul,
	p+ul,
	li+li,
	ul+p {
		margin-top: 30px;
	}

	p+a.button {
		margin-top: 60px;
	}

	section,
	footer {
		padding: 75px 38px;
	}

	.bg-image {
		height: 271px;
	}

	.buttons .button {
		margin-bottom: 15px;
	}

	.buttons .button:last-child {
		margin-bottom: 0px;
	}

	#privacy-popup p,
	#privacy-popup a {
		font-size: 18px;
		text-align: left;
	}

	.ht-n-top .ht-notification-text p,
	.ht-n-bottom .ht-notification-text p {
		font-size: 16px;
		line-height: 24px;
		text-align: left;
	}

	/* earlier 16px */
	.ht-notification-text p a {
		font-size: 20px;
		text-align: left;
	}

	#dc-cnb-container {
		font-size: 15px !important;
		padding: 15px !important;
		text-align: left;
	}

	#dc-cnb-container p,
	#dc-cnb-container p a {
		font-size: 15px !important;

	}

	section.team .column {
		width: 100% !important;
	}

}

@media (max-width: 549.98px) {
	a.button {
		display: block;
		max-width: 100%;
	}

	a.button+a.button {
		margin-left: 0px;
		margin-top: 15px;
	}

	#privacy-popup {
		padding: 15px;
	}

	#privacy-popup p,
	#privacy-popup a {
		font-size: 15px;
		text-align: left;
	}

	#privacy-popup button {
		height: 13px;
		margin-top: -6.5px;
		right: 15px;
		width: 13px;
	}

	section .container-fluid .testimonial-bg-image .testimonial-info-block img {
		height: 38px;
		width: 52px;
	}
}


/*Added by Nigam*/

.header_menu {
	list-style-type: none;
	margin-top: 0px;
	padding: 0px;
}

#menu-demand-side-partnerships,
#menu-supply-side-partnerships {
	margin-top: 25px;
}

#menu-demand-side-partnerships li,
#menu-supply-side-partnerships li {
	padding-bottom: 10px;
}

.header_menu li {
	list-style-type: none;
	margin-top: 16px;
}

.footer_menu_demand_side {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.footer_menu_demand_side li {
	margin-top: 10px;
}

.footer-link h4 {
	margin-bottom: 0px;
}

.op_footer p {
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 31px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -0.5px;
	line-height: 1.15em;
}

.pxclear_content p {
	color: #515151;
	font-family: "Lato", helvetica;
	font-size: 31px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -0.5px;
	line-height: 1.15em;
}

.pxclear_pillars .col-md-3 {
	padding-right: 0px;
}


.ht-n-active {
	display: none;
}

figcaption {
	color: #BFBFBF;
	padding-bottom: 10px;
	padding-top: 15px;
}

.ht-notification-text p,
.ht-notification-text a {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.ht-n-container .ht-notification-text {
	float: none;
	padding: 0px 6px;
}

.ht-n-top {
	animation: animatetop 0.90s;
}

@keyframes animatetop {
	from {
		opacity: 0;
		top: -500px;
	}

	to {
		opacity: 1;
		top: 0;
	}
}

.close-toggle {
	padding-top: 10px;
}

.ht-n-bottom .ht-notification-text p {
	padding-top: 8px;
}

.ht-n-bottom .ht-n-close-toggle {
	padding-top: 12px;
}

.ht-n-top .ht-notification-text a {
	border-bottom: 1px solid #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

.ht-n-bottom .ht-notification-text a {
	border-bottom: 1px solid #ffffff;
	border-bottom-color: #515151;
}

.ht-n-top .ht-notification-text>p {
	margin-bottom: 9px !important;
	margin-top: 5px !important;

}

.ht-n-top.ht-n-full-width .ht-notification-wrap,
.ht-n-bottom.ht-n-full-width .ht-notification-wrap {
	padding-left: 38px;
}

/* Footer cookie bar ***/
#dc-cnb-container p,
#dc-cnb-container p a {
	color: #515151;
	font-size: 20px;
	font-weight: bold;
}

#dc-cnb-container p a {
	border-bottom-color: rgba(81, 81, 81, 0.5);
}



/**@Author: Suyash Nanda
	for contact-us form styling
*/

section.split-contact-title-bg {
	height: auto;
	padding: 0px;
	padding-top: 50px;
}

section.split-contact-title-bg .container-fluid {
	max-width: 100%;
}

section.split-contact-title-bg .container-fluid,
section.split-contact-title-bg .row,
section.split-contact-title-bg .contact-title-bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	padding: 0px;
}

section .container-fluid .contact-title-bg-image .contact-title-info-block {
	padding: 25px;
	padding-top: 50px;
}

section .container-fluid .contact-title-bg-image .contact-title-info-block .contact-title-info-msg {
	color: #4C7FFF;
	/*height: 140px;*/
	font-family: Montserrat;
	font-size: 70px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: -3px;
	line-height: 70px;
	/* width: 785px; */
	width: 100%;
}

section.contact-form-display {
	opacity: 1 !important;
	padding-top: 40px;
	position: relative !important;
	z-index: 0;
}

section.contact-form-display .container-fluid .form-section {
	padding: 30px;
}

section.contact-form-display .container-fluid .form-section .contact-us-text {
	color: #515151;
	font-family: Lato;
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	height: auto;
	letter-spacing: -0.22px;
	line-height: 25px;
	padding: 0px;
	/* width: 512px; */
	width: 100%;
}

section.contact-form-display .container-fluid .form-section .download-text {
	padding-top: 50px;
}

section.contact-form-display .container-fluid .form-section .form-required {
	font-size: 13px;
	height: 28px;
	line-height: 25px;
	margin-top: 10px;
	width: 256px;

}

section.contact-form-display .container-fluid .form-section form {
	margin-top: 20px;
}

section.contact-form-display .container-fluid .form-section .contact-us-feedback {
	color: #3078f0;
}

section.contact-form-display .container-fluid .form-section .post-form-section {
	padding-top: 20px;
}

section.contact-form-display .container-fluid .form-section form .contact-privacy-status {
	font-size: 13px;
	height: 28px;
	line-height: 25px;
	width: 256px;
}

section.contact-form-display .container-fluid .form-section form .contact-privacy-status a {
	font-size: 13px;
}

section.contact-form-display .container-fluid .form-section form .submit input {
	line-height: 20px;
}

section.contact-form-display .container-fluid .form-section form .field input,
section.contact-form-display .container-fluid .form-section form .field select,
section.contact-form-display .container-fluid .form-section form .field textarea {
	border-radius: 3px;
	height: 50px;
}

.col-12.field.offerings.required {
	padding-left: 15px !important;
}

.offerings .row {
	height: auto !important;
}

.measure .form-check-label {
	font-weight: normal !important;
}

.checkBox {
	margin-left: 0rem !important;
}

section.contact-form-display .container-fluid .form-section form .field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("../images/select-down-arrow.svg");
	background-position: 96% 50%;
	background-repeat: no-repeat;
	background-size: 12px 7px;
	cursor: pointer;
	padding-right: 35px;
}

/***-----***/
.video_cls {
	margin-top: -5px;
	padding-top: 33.7916%;
}

.video_tag {
	position: relative;
}

.line-height {
	line-height: 0.5;
}

.job-content h3 {
	margin: 25px 0px 6px 0px;
}

.job-content p {
	margin: 0px;
}

.blog_single li {
	margin-top: 10px !important;
}

.blog_double li {
	margin-top: 20px !important;
}

.contact-us-text li {
	margin-top: 20px;
}

/* About page : Leaderpage section */
.about {
	padding-bottom: 0px;
}

section.team {
	padding-bottom: 20px;
	padding-top: 35px;
}

section.abt_team {
	padding-bottom: 35px;
	padding-top: 0px;
}

section.team .column {
	float: left;
	padding: 15px 5px 15px 5px;
	width: 33.33%;
}

.leader {
	color: #515151;
	font-size: 24pt;
	/*margin-left: -15px;*/
	padding-bottom: 20px;
}

section.team .row {
	padding-top: 15px;
	;
}

/* Clearfix (clear floats) */
section.team .row::after {
	clear: both;
	content: "";
	display: table;
}

section.team .leadership-width {
	margin-left: 15px;
}

section.team .leadershipItem_name {
	background-image: none;
	color: #3078f0;
	font-family: "Lato", helvetica;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 25px;
	margin: 0;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-top: 17px;
	text-align: center;
}

section.team .leadershipItem_role {
	background-image: none;
	color: #b2b2b2;
	font-family: "Lato", helvetica;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin: 0 0 -6px;
	margin-bottom: 0;
	padding-bottom: 25px;
	padding-top: 3px;
	text-align: center;
}

section.team .leader_photo {
	height: 238px;
	width: 96%;
	width: 238px;
}

/*////////about us page //////*/
.diversity_title {
	color: #515151;
	font-size: 24pt;
	padding-bottom: 30px;
}

.ml-7 {
	margin-left: 7rem !important;
}

.ml-17 {
	margin-left: 17rem !important;
}

.ml-25 {
	margin-left: 25rem !important;
}

section.values .leadership {
	margin-bottom: 20px;
}

section.values .title {
	color: #4F83FF;
	font-family: Lato;
	font-size: 24px;
	padding-top: 18px;
}

section.values .desc {
	color: #515150;
	font-family: Lato;
	font-size: 16px;
	margin-bottom: 40px;
	margin-top: 15px;
}

.about_vision {
	color: #3078f0 !important;
	display: table-cell;
	display: table-cell;
	font-size: 46px;
	height: 500px;
	vertical-align: middle;
	vertical-align: middle;
	width: 100%;
	width: 100%;
}

.our_vision_data {
	height: 50px;
	width: 50px;
}

section.about_blurbs_mobile {
	display: none;
	height: unset;
}

.desktop_disp {
	display: block;
}

.perviewcontact {
	margin-top: 45px;
}

.padding_zero {
	padding: 0px;
}

.about_team_photo {
	height: auto;
	width: 100%;
}

/**** New change ***/
.row-spacing {
	margin-bottom: 60px;
}

.button-bottom-space {
	margin-bottom: 25px;
}

.desc-bottom-spacing {
	margin-bottom: 100px;
	margin-top: 60px;
}

/* About Us Page - Award Section */
.awardsection {
	padding: 60px 40px 0px 20px;
}


@media (max-width: 590px) {
	.btn-two-wrapper a.button {
		display: block;
		max-width: 100%;
	}

	.btn-two-wrapper a.button+a.button {
		margin-left: 0px;
		margin-top: 15px;
	}

	.nav-margin {
		margin-left: 0px;
	}
}

nav.navbar .container-fluid .navbar-collapse .nav-section .nav-margin {
	margin-left: 75px;
}

nav.navbar .container-fluid .navbar-collapse .nav-section .nav-margin .nav_links {
	margin: auto;
	text-align: center;
	width: 100%;
}

/*contact form alignment*/
.updated_contact_data .field {
	padding-left: 0 !important;
	padding-right: 15px !important;
}

.col-12.field.message {
	padding-left: 15px !important;
	padding-top: 20px !important;
}

/* Markets & Partners - Cass */
.international-gallery {
	margin-left: -40px;
}

/* Dynamic Creative - Cass */
#creative-title h2 .first-letter {
	bottom: 0px;
}

.key-features h3 {
	color: #4F83FF;
	margin-bottom: 50px;
}

.key-features img {
	height: 28.45px;
	margin-bottom: 20px;
}

/* Publisher Portal - Cass */
.features-title h3 {
	margin-bottom: 61px;
}

.key-features h4 {
	color: #4F83FF;
}

#portal_button {
	margin-top: 60.55px;
}

/* PDFs - Cass */
.PDF-mb {
	display: none;
	margin-bottom: 75px;
	text-align: center;
}

/* Mobile - Cass */
@media (max-width: 590px) {
	.us-canada-row {
		margin-bottom: 15px;
	}

	.international-gallery {
		margin-left: -15px;
	}

	.features-title h3 {
		margin-bottom: 10px;
	}

	.key-features h3 {
		margin-bottom: 0px;
	}

	.key-features .col-sm {
		padding-top: 30px;
	}

	.key-features img {
		margin-bottom: 10px;
	}

	.key-features .col-sm h4 {
		font-size: 15px;
	}

	a.mb-link-wrap {
		display: inline;
	}

	.PDF-row iframe {
		display: none;
	}

	.PDF-mb {
		display: block;
	}
}