/*
Theme Name: CalQLogic
Author: dystrick design
Author URI: http://dystrick.com
Description: Custom theme for CalQLogic.
Version: 1.0
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Base
-------------------------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

img,
embed,
object,
video {
	max-width: 100%;
}

body {
	background: #fff;
	color: #000;
	font-size: 100%;
	font-family: 'Lato', sans-serif;
}

.clear-fix::after {
  content: " ";
  display: table;
  clear: both;
}

.hvcenter {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.vcenter {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hcenter {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Buttons
-------------------------------------------------------------- */

.btn {
  display: block;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375em;
  padding: 1.333333333333333em;
  text-align: center;
	text-transform: uppercase;
	outline: 0;
	line-height: 1.5;
	font-family: 'Montserrat', sans-serif;
}

.btn-trans {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

/* Button Borders */

.btn-border-white {
  border: 1px solid #fff;
}

/* Button Sizes */

.btn-size-xsm {
  max-width: 200px;
	padding: 1em;
}

.btn-size-sm {
  max-width: 240px;
}

.btn-size-lg {
  max-width: 300px;
}

.btn-size-xlg {
  max-width: 330px;
}

/* Button Color */

.btn-black-opac {
  background: #000;
  background: rgba(0, 0, 0, 0.25);
}

.btn-black-opac:hover {
  background: #000;
  background: rgba(0, 0, 0, 0.5);
}

.btn-purple {
  background: #672c82;
}

.btn-purple:hover {
  background: #532469;
}

.btn-blue {
  background: #1971cd;
}

.btn-blue:hover {
  background: #1561b3;
}

.btn-orange {
  background: #fd9827;
}

.btn-orange:hover {
  background: #e38922;
}

.btn-dark-purple {
  background: #3f1b51;
}

.btn-dark-purple:hover {
  background: #2c1338;
}

/* Button Font */

.btn-light {
  font-weight: 300;
}

.btn-bold {
  font-weight: 700;
}

.btn-reg {
  font-weight: 400;
}

/* Global Width
-------------------------------------------------------------- */

.global-width {
  max-width: 1220px;
  width: 95%;
  margin: 0 auto;
}

/* Nav
-------------------------------------------------------------- */

nav {
	position: fixed;
	background-color: #000;
	background-color: rgba(0,0,0, 0.8);
	height: 75px;
	width: 100%;
	z-index: 1000;
	top: -75px;
	transition: all .4s ease-out;
}

.nav-animate {
	top: 0;
}

nav ul {
	display: inline-block;
	font-size: 0.875em;
	text-transform: uppercase;
	left: 0;
	right: 0;
	text-align: center;
}

nav li {
	display: inline-block;
	vertical-align: middle;
	margin-left: 3.214285714285714em;
}

nav li:first-child {
	margin-left: 0;
}

nav a {
	color: #fff;
	text-decoration: none;
}

.nav-logo {
	width: 125px;
}

.nav-logo a {
	background: url('img/calqlogic_logo.png') no-repeat left top;
	height: 28px;
  display: block;
  background-size: contain;
	text-indent: -9999px;
}

.nav-mobile {
	display: none;
}

/* Marquee
-------------------------------------------------------------- */

.marquee {
  position: relative;
	overflow: hidden;
	background: #000;
	max-height: 1150px;
}

.marquee-scroll {
  bottom: 10px;
  font-size: 3.125em;
  color: #fff;
	position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.marquee video {
	display: block;
	min-width: 100%;
	opacity: 0;
}

.marquee-content-wrapper {
	max-width: 1600px;
	min-height: 350px;
	width: 80%;
	top: 45%;
}

.marquee-content {
  width: 610px;
  float: right;
  color: #fff;
}

.marquee-content h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 3.125em;
  line-height: 1.25;
  margin-bottom: 0.8em;
}

.marquee-content h1 .strong {
  font-size: 1.16em;
  font-weight: 700;
  color: #fcc02f;
  display: block;
}

.marquee-content h2,
.marquee-content h4 {
  font-size: 1.5em;
  margin-bottom: 0.4166666666666667em;
	line-height: 1.5;
}

.marquee-content h3 {
  font-size: 1.3125em;
  font-weight: 300;
  margin-bottom: 2.380952380952381em;
	line-height: 1.5;
}

/* Layout 1
-------------------------------------------------------------- */

.layout-1 {
	background-color: #f5f5f5;
	background-image: url("img/blue-wedge.png");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.layout-1.no-bg-img {
	background-color: #f5f5f5;
	background-image: none;
}

.layout-1 .global-width {
	padding: 50px 0 135px;
}

.layout-1 .global-width.pb-65 {
	padding: 50px 0 0;
}

/* Layout 1 Header */

.layout-1-header {
	text-align: center;
}

.layout-1-header h2 {
	font-family: 'Roboto Slab', serif;
	font-size: 2.625em;
	line-height: 1.25;
	margin-bottom: 0.5952380952380952em;
}

.layout-1-header h2 .strong {
	font-weight: 700;
	display: block;
	color: #3e1a55;
}

.layout-1-header p {
	font-weight: 400;
	font-size: 1.5em;
	line-height: 1.5;
}

/* Three Box */

.three-box-container {
	margin: 65px 0 60px;
}

.three-box-container .box {
	width: 31.47540983606557%;
	margin-left: 02.78688524590164%;
	float: left;
	background: #3e1a55;
	color: #fff;
	padding: 50px 35px;
	text-align: center;
	position: relative;
}

.three-box-container .box:first-child {
	margin-left: 0;
}

.three-box-container .box-icon {
	top: -30px;
	font-size: 3.75em;
}

.three-box-container .box-icon-circle {
	color: #fff;
}

.three-box-container .box-icon-color {
	color: #3e1a55;
}

.three-box-container .box h3 {
	font-size: 1.5em;
	font-weight: 700;
	color: #fcc02f;
	line-height: 1.25;
	margin-bottom: 0.8333333333333333em;
}

.three-box-container .box h3 .intro {
	font-size: 0.8333333333333333em;
	font-weight: 300;
	display: block;
}

.three-box-container .box p {
	font-weight: 400;
	line-height: 1.5;
}

.three-box-container .box ul {
	text-align: left;
}

.three-box-container .box li {
	font-weight: 400;
	margin-bottom: 1.25em;
	line-height: 1.5;
}

.three-box-container .box li:last-child {
	margin-bottom: 0;
}

/* Three Box v2 */

.three-box-container.v2 .box {
  box-shadow: none;
}

.three-box-container.v2 .box:before {
  box-shadow: 0px 5px 8px #a1a1a1;
}

.three-box-container.v2 .box-icon-circle {
  color: #682884;
}

.three-box-container.v2 .box-icon-color {
  color: #fff;
}

.three-box-container.v2.grow-box .box:before {
  background: #fff;
}

.three-box-container.v2 .box h3 {
  color: #682884;
}

.three-box-container.v2 .box ul {
  color: #000;
}

.three-box-container.v2 .box .fa-li {
  color: #fcc02f;
}

/* Layout 1 Footer */

.layout-1-footer-secondary {
	float: left;
	width: 26.63934426229508%;
	padding: 0 03.27868852459016%;
}

.layout-1-footer-secondary h3 {
	font-family: 'Roboto Slab', serif;
	font-size: 1.5em;
	line-height: 1.5;
	color: #3e1a55;
	font-style: italic;
}

.layout-1-footer-primary {
	float: right;
	width: 73.36065573770492%;
	padding: 0 03.27868852459016%;
}

.layout-1-footer-primary p {
	font-weight: 400;
	font-size: 1.125em;
	margin-bottom: 1.388888888888889em;
	line-height: 1.5;
}

.layout-1-footer-primary p:last-child {
	margin-bottom: 0;
}

/* Layout 2
-------------------------------------------------------------- */

.layout-2 {
	background-repeat: no-repeat;
	/*background-position: bottom center;*/
	background-position-x: center !important;
	background-size: cover;
	border-top: 5px solid #fff;
	position: relative;
}

.layout-2 .global-width {
	padding: 50px 0;
}

.layout-2-content {
	float: right;
	width: 40.98360655737705%;
	font-family: 'Montserrat', sans-serif;
}

.layout-2-content blockquote {
	margin-bottom: 50px;
}

.layout-2-content blockquote:last-child {
	margin-bottom: 0;
}

.layout-2-content h3 {
	color: #fcc02f;
	font-size: 2.5em;
	text-transform: uppercase;
	margin-bottom: 0.75em;
}

.layout-2-content blockquote p {
	font-size: 1.375em;
	line-height: 1.5;
	font-weight: 400;
	color: #fff;
	margin-bottom: 1.363636363636364em;
}

.layout-2-content blockquote cite {
	font-size: 1.375em;
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
}

.layout-2-content blockquote cite .title {
	display: block;
	font-weight: 400;
	font-size: 0.8181818181818182em;
}

.layout-2-content blockquote cite a {
	color: #fcc02f;
	text-decoration: none;
}

.parallax-window{
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/* Layout 2 CTA */

.layout-2.cta {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.layout-2.cta .global-width {
	padding: 100px 0;
}

.layout-2.cta .layout-2-content h3 {
	color: #fff;
	font-size: 1.75em;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 0.3571428571428571em;
}

.layout-2.cta .layout-2-content h4 {
	color: #fcc02f;
	font-size: 2.25em;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0.5555555555555556em;
}

/* Layout 3
-------------------------------------------------------------- */

.layout-3 .global-width {
	padding: 50px 0;
}

.layout-3-header {
	margin: 0 0 60px;
}

.layout-3-header-secondary {
	float: left;
	width: 31.55737704918033%;
	padding: 0 02.86885245901639% 0 10.24590163934426%;
	text-align: right;
}

.layout-3-header-secondary h3 {
	font-family: 'Roboto Slab', serif;
	font-size: 2.25em;
	color: #3e1a55;
	line-height: 1.25;
	font-weight: 700;
}

.layout-3-header-secondary h3 .intro {
	font-weight: 400;
	display: block;
}

.layout-3-header-primary {
	float: right;
	width: 68.44262295081967%;
	padding: 0 06.55737704918033% 0 02.86885245901639%;
}

.layout-3-header-primary h4 {
	font-size: 1.375em;
	font-weight: 700;
	margin-bottom: 1.136363636363636em;
}

.layout-3-header-primary p {
	font-size: 1.125em;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 1em;
}

.layout-3-header-primary p:last-child {
	margin-bottom: 0;
}

/* Two Box */

.two-box-container {
	margin: 65px 0;
}

.two-box-container .box {
	width: 50%;
	float: left;
	padding: 0 04.0983606557377% 0 135px;
	margin-top: 60px;
	position: relative;
}

.two-box-container .box:nth-child(-n+2) {
  margin-top: 0;
}

.two-box-container .box-icon {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 5em;
}

.two-box-container .box-icon-circle {
	color: #fd9827;
}

.two-box-container .box-icon-color {
	color: #fff;
}

.two-box-container .box h3 {
	font-size: 1.375em;
	line-height: 1.25;
	margin-bottom: 0.9090909090909091em;
}

.two-box-container .box h3 .strong {
	font-weight: 700;
}

.two-box-container .box p {
	font-weight: 400;
	line-height: 1.5;
}

.two-box-container .box .fa-li {
	color: #fd9827;
}

.two-box-container .box li {
	font-size: 1.125em;
	font-weight: 400;
	margin-bottom: 1.111111111111111em;
	line-height: 1.5;
}

.two-box-container .box li:last-child {
	margin-bottom: 0;
}

/* Layout 3 Footer */

.layout-3-footer {
	max-width: 1085px;
	margin: 0 auto;
}

.layout-3-footer-content {
  width: 77.88018433179724%;
  display: inline-block;
  vertical-align: middle;
  margin-right: -4px;
  padding: 0 35px 0 0;
}

.layout-3-footer-content p {
	font-family: 'Roboto Slab', serif;
  font-size: 1.5em;
  line-height: 1.5;
  color: #3e1a55;
  font-style: italic;
}

.layout-3-footer-cta {
	width: 22.11981566820276%;
	vertical-align: middle;
	display: inline-block;
	margin-right: -4px;
}

/* Layout 4
-------------------------------------------------------------- */

.layout-4 {
	background: #f5f5f5;
}

.layout-4 .global-width {
	padding: 50px 0 0;
}

.layout-4-header {
	margin: 0 0 60px;
}

.layout-4-header-secondary {
	float: left;
	width: 31.55737704918033%;
	padding: 0 02.86885245901639% 0 10.24590163934426%;
	text-align: right;
}

.layout-4-header-secondary h3 {
	font-family: 'Roboto Slab', serif;
	font-size: 2.25em;
	color: #3e1a55;
	line-height: 1.25;
	font-weight: 700;
}

.layout-4-header-secondary h3 .intro {
	font-weight: 400;
	display: block;
}

.layout-4-header-primary {
	float: right;
	width: 68.44262295081967%;
	padding: 0 06.55737704918033% 0 02.86885245901639%;
}

.layout-4-header-primary h4 {
	font-size: 1.375em;
	font-weight: 700;
	margin-bottom: 1.136363636363636em;
}

.layout-4-header-primary p {
	font-size: 1.125em;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 1em;
}

.layout-4-header-primary p:last-child {
	margin-bottom: 0;
}

/* Four Box */

.four-box-container {
	margin: 65px 0 60px;
}

.four-box-container .box {
	width: 24.50819672131148%;
	margin-left: 00.65573770491803%;
	float: left;
	text-align: center;
	background: #fff;
}

.four-box-container .box:first-child {
	margin-left: 0;
}

.four-box-container .box-content {
	padding: 30px 20px;
}

.four-box-container .box h3 {
	font-size: 1.125em;
	font-weight: 700;
	line-height: 1.5;
	color: #3e1a55;
}

.four-box-container .box h4 {
	font-size: 1.125em;
	line-height: 1.5;
	margin-bottom: 0.5555555555555556em;
	color: #3e1a55;
}

.four-box-container .box p {
	font-weight: 400;
	line-height: 1.5;
}

/* Layout 5
-------------------------------------------------------------- */

.layout-5 {
	background-image: url(img/bg-right-blue-wedge.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.layout-5 .global-width {
	padding: 50px 0 100px;
}

.layout-5-header {
	text-align: center;
}

.layout-5-header h2 {
	font-family: 'Roboto Slab', serif;
  font-size: 2.625em;
  line-height: 1.25;
  margin-bottom: 0.5952380952380952em;
}

.layout-5-header h2 .strong {
  font-weight: 700;
  display: block;
  color: #3e1a55;
}

.layout-5-top {
	margin: 50px 0;
}

.layout-5-top-primary {
	float: left;
	width: 62.04918032786885%;
	background: #f3f3f3;
	padding: 35px;
}

.layout-5-top-primary h3 {
	font-size: 1.25em;
	line-height: 1.5;
	margin-bottom: 1em;
}

.layout-5-top-primary p {
	font-size: 1.125em;
	line-height: 1.5;
	margin-bottom: 1em;
	font-weight: 400;
}

.layout-5-top-primary p:last-child {
	margin-bottom: 0;
}

.layout-5-top-secondary {
	float: right;
	width: 37.95081967213115%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}

/* One Box */

.one-box-container {
	margin: 85px 0 0;
}

.one-box-container .box {
	padding: 0 04.0983606557377% 0 175px;
	margin: 50px 0;
	position: relative;
}

.one-box-container .box-icon {
	position: absolute;
	top: 0;
	left: 0;
}

.one-box-container .box h3 {
	font-size: 1.375em;
	line-height: 1.25;
	margin-bottom: 0.4545454545454545em;
	font-weight: 900;
}

.one-box-container .box h4 {
	font-size: 1.25em;
	font-weight: 700;
	font-style: italic;
	color: #fd9827;
	margin-bottom: 1em;
}

.one-box-container .box p {
	font-weight: 400;
	line-height: 1.5;
}

.one-box-container .box .fa-li {
	color: #444241;
}

.one-box-container .box li {
	font-size: 1.125em;
	font-weight: 400;
	margin-bottom: 1.111111111111111em;
	line-height: 1.5;
}

.one-box-container .box li:last-child {
	margin-bottom: 0;
}

/* Layout 6
-------------------------------------------------------------- */

.layout-6 {
	background: #f5f5f5;
	border-top: 5px solid #fff;
}

.layout-6 .global-width {
	padding: 60px 0;
}

/* Layout 6 Header */

.layout-6-header {
	margin: 0 0 50px;
	text-align: center;
}

.layout-6-header h2 {
	font-family: 'Roboto Slab', serif;
	font-size: 2.625em;
	line-height: 1.25;
	margin-bottom: 0.5952380952380952em;
}

.layout-6-header h2 .strong {
	font-weight: 700;
	display: block;
	color: #3e1a55;
}

.layout-6-header p {
	font-weight: 400;
	font-size: 1.5em;
	line-height: 1.5;
}

/* Layout 6 Img-Content */

.layout-6 .img-content {
	margin: 50px 0;
}

.layout-6 .img-content-primary {
	float: right;
	width: 49.91803278688525%;
	background: #fff;
	padding: 35px;
}

.layout-6 .img-content-primary li {
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 0.8333333333333333em;
  line-height: 1.5;
}

.layout-6 .img-content-primary li:last-child {
  margin-bottom: 0;
}

.layout-6 .img-content-primary .fa-li {
  color: #3e1a55;
}

.layout-6 .img-content-secondary {
	float: left;
	width: 50.08196721311475%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}

/* Layout 6 CTA */

.layout-6 .cta {
	margin: 60px 0 0;
}

.layout-6 .cta-content {
	margin: 50px auto;
	max-width: 1000px;
}

.layout-6 .cta-content h3 {
	font-size: 1.375em;
	color: #672c82;
	text-align: center;
	font-weight: 700;
	margin-bottom: 0.4545454545454545em;
}

.layout-6 .cta-content p {
	font-size: 1.125em;
	text-align: center;
	font-weight: 400;
	margin-bottom: 1em;
	line-height: 1.5;
}

.layout-6 .cta-content p:last-child {
	margin-bottom: 0;
}

.layout-6 .cta-buttons {
	text-align: center;
}

.layout-6 .cta-buttons-list {
	display: inline-block;
}

.layout-6 .cta-buttons-list li {
	float: left;
	width: 280px;
	margin-left: 25px;
}

.layout-6 .cta-buttons-list li:first-child {
	margin-left: 0;
}

/* Layout 7
-------------------------------------------------------------- */

.layout-7 {
	background: #f5f5f5;
	border-top: 5px solid #fff;
}

.layout-7 .global-width {
	padding: 50px 0;
}

/* Layout 7 Header */

.layout-7-header {
	text-align: center;
}

.layout-7-header h2, .layout-7-header h1 {
	font-family: 'Roboto Slab', serif;
	font-size: 2.625em;
	line-height: 1.25;
	margin-bottom: 0.5952380952380952em;
}

.layout-7-header h2 .strong, .layout-7-header h1 .strong {
	font-weight: 700;
	display: block;
	color: #3e1a55;
}

.layout-7-header p {
	font-weight: 400;
	font-size: 1.5em;
	line-height: 1.5;
}

/* Layout 7 List */

.layout-7-list {
	position: relative;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.layout-7-list::after {
	top: 0;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(245, 245, 245, 0);
	border-top-color: #f5f5f5;
	border-width: 30px;
	margin-left: -30px;
}

/* Layout 7 list Content */

.layout-7-list-content .primary {
	float: left;
	width: 69.0983606557377%;
}

.layout-7-list-content .primary .img {
	float: right;
	width: 55.27876631079478%;
	background-clip: content-box;
	padding: 0 5px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.layout-7-list-content .primary .content {
	float: left;
	width: 44.72123368920522%;
	background: #fff;
	padding: 35px 15px;
}

.layout-7-list-content .secondary {
	float: right;
	width: 30.9016393442623%;
	background: #fff;
	padding: 35px 15px;
}

.layout-7-list-content li {
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 0.8333333333333333em;
  line-height: 1.5;
}

.layout-7-list-content li:last-child {
  margin-bottom: 0;
}

.layout-7-list-content .fa-li {
  color: #3e1a55;
	left: -1.5em;
  width: 1em;
}

.layout-7-list-content .fa-ul {
  margin-left: 1.5em;
}

/* Layout 7 CTA */

.layout-7 .cta-content {
	margin: 0 auto 50px;
	max-width: 1000px;
}

.layout-7 .cta-content h3 {
	font-size: 1.375em;
	color: #672c82;
	text-align: center;
	font-weight: 700;
	margin-bottom: 0.4545454545454545em;
}

.layout-7 .cta-content p {
	font-size: 1.125em;
	text-align: center;
	font-weight: 400;
	margin-bottom: 1em;
	line-height: 1.5;
}

.layout-7 .cta-content p:last-child {
	margin-bottom: 0;
}

.layout-7 .cta-buttons {
	text-align: center;
}

.layout-7 .cta-buttons-list {
	display: inline-block;
}

.layout-7 .cta-buttons-list li {
	float: left;
	width: 300px;
	margin-left: 25px;
}

.layout-7 .cta-buttons-list li:first-child {
	margin-left: 0;
}

/* Back to Top
-------------------------------------------------------------- */

.back-to-top-button {
	position: absolute;
	right: 25px;
	bottom: 16px;
}

.back-to-top-button a {
	font-size: 2em;
	color: #fff;
}

/* Contact Form 7
-------------------------------------------------------------- */

.use-floating-validation-tip span.wpcf7-not-valid-tip {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1em;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	border: none;
	background: #fff;
	white-space: nowrap;
}

div.wpcf7-validation-errors {
	border: none;
	color: #ff0000;
	font-size: 1em;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-align: center;
}

div.wpcf7-mail-sent-ok {
	border: none;
	font-size: 1.5em;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	text-align: center;
	margin: 0;
  padding: 0;
}

.trial div.wpcf7-mail-sent-ok {
	color: #672c82;
}

.free-demo div.wpcf7-mail-sent-ok {
	color: #1971cd;
}

.kb div.wpcf7-mail-sent-ok,
.contact div.wpcf7-mail-sent-ok {
	color: #fd9827;
}

.kb div.wpcf7-mail-sent-ok::after {
	content: 'An email with a link to download the whitepaper "The TriggerWare Business Case" has been sent to the email address you provided. Please check your spam folder if you did not receive the email.';
	display: block;
	font-size: .75em;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
	color: #000;
	margin-top: 20px;
}

.modal form.sent .fields {
  display: none;
}

.modal.form-success h2,
.modal.form-success h3,
.modal.form-success p {
	display: none;
}

.modal form.sent {
  margin: 0 auto;
	max-width: 700px;
}

.modal form .textarea {
  position: relative;
}

.modal form .textarea .wpcf7-form-control-wrap {
  position: static;
}

/* Modal Large
-------------------------------------------------------------- */

.modal.modal-lg {
  width: 95%;
  max-width: 1600px;
}

.modal.modal-lg h2 {
  margin-bottom: 1em;
}

.modal.modal-lg p {
  font-weight: 300;
  font-size: 1em;
  line-height: 1.5;
  text-align: left;
	margin-bottom: 1em;
}

.modal.modal-lg p:last-child {
	margin-bottom: 0;
}

.modal.modal-lg p strong {
  font-weight: 700;
}

.modal.modal-lg ul {
  margin: 1em 0 1em 18px;
  font-size: 1em;
}

.modal.modal-lg li {
  list-style: disc;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1em;
}

.modal.modal-lg a {
	color: #672c82;
	text-decoration: none;
	word-wrap: break-word;
}



/* Logo */


.marquee-logo {
  position: absolute;
  top: 25px;
  right: 40px;
  z-index: 5;
}

.marquee-logo img {
  max-height: 200px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-static-logo {
	  max-height: 100px;
	  width: auto;
	  display: block;
}