@import url("https://use.typekit.net/ubf2uwa.css");

/* ***** ^^^^^^ **************************
 * font import from Adobe CC
 * Neue Haas Grotesk
 * ************************ */

/* *****************************************
Basic CSS file
Author: Thomas Volpe
URL: https://thomasvolpe.com
***************************************** */
:root {
	--gray: #8c8e90;
	--lightgray: #dedfe0;
	--darkblue:#1d1f40;
	--red:#ff0013;
	--white: #ffffff;
	--black: #000000;	
	--darkblue2:#0a1f44;
	--red2: #d32f2f;
	--fontName: "neue-haas-grotesk-display", sans-serif;
	--fontBody: font-weight: 400;
	--fontHeads: font-weight: 700;
	--fontThin: font-weight: 200;
	--fontBold: font-weight: 500;

}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
   * {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ****************************
* basic setup
***************************** */
* {outline: none;
-webkit-overflow-scrolling: touch;}

html, body {overflow-x: clip;}

a {text-underline-position: under;}
a:focus {outline: none;}

/* Fluid scale tuned for ~375px → ~1200px viewports */

/* Keep root stable so rem-based components elsewhere are unaffected */
html {
    font-size: 100%;
	container-type: scroll-state;
	container-name: theWatcher;
	
}

/* Body text: 16px at small screens, up to 20px on large screens */
body {
    font-size: clamp(16px, 14.18px + 0.485vw, 18px);
	font-weight:400;
	
}
@media (max-width:767px) {
	body {font-weight:500;}
}


.stickMe {
	position: sticky;
	top: 110px;
}
/* Paragraphs inherit body size */
p {
    font-size: 1em;

}

@container theWatcher scroll-state(scrollable: top) {
	p { bacground: red;}
}
/* Headings:
   h1: 36px → 60px
   h2: 32px → 48px
   h3: 24px → 32px
   h4: 20px → 24px
   h5: 16px → 18px
   h6: 14px → 16px
*/

h1 {
    font-size: clamp(36px, 25.10px + 2.91vw, 46px);
}

h2 {
    font-size: clamp(32px, 24.73px + 1.94vw, 32px);
}

h3 {
    font-size: clamp(24px, 20.36px + 0.97vw, 23px);
}

h4 {
    font-size: clamp(20px, 18.18px + 0.485vw, 18px);
}

h5 {
    font-size: clamp(16px, 15.09px + 0.242vw, 15px);
}

h6 {
    font-size: clamp(14px, 13.09px + 0.242vw, 15px);
}

/************************************/

.scrollpos {
  background: #ff0000 none repeat scroll 0 0;
  left: 0;
  padding: 10px;
  position: fixed;
  top: 0;
  z-index: 9999999;
  display: none; }

.scroll-watcher {
  height: 5px;
  background-color: #bbc0ff;
  position: fixed;
  width: 100%;
  z-index: 99999;
  top: 0;
  transform-origin: left;
  opacity: 1;
  scale: 0 1;
  animation: scroll-grow linear;
  animation-timeline: scroll();
}
  
html {
  scroll-behavior: smooth;
	scroll-padding:60px;
}

.inner {
  max-width: 1240px;
  margin: 0 auto !important; }

.innerImp {
  max-width: 1240px !important;
  margin: 0 auto !important; }

.innerC600 {
  max-width: 600px;
  margin: 0 auto !important; }

.thinner {
  max-width: 860px;
  margin: 0 auto !important;
  position: relative;
  padding: 0 20px; }

/* Left-aligned text */
.text-left {
  text-align: left;
}

/* Center-aligned text */
.text-center {
  text-align: center;
}

/* Right-aligned text */
.text-right {
  text-align: right;
}

.flexThis {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flexThis.flexCenter {
  align-items: center;
}

.flexThis.flexLeft {
  align-items: left;
}

.flexThis.flexRight {
  align-items: right;
}
.has-filter-grayscale {
    filter: grayscale(1) opacity(0.5);
}


.mediaCard .wp-block-media-text__content {
    box-shadow: 1px 1px 8px 3px rgb(0 0 0 / 30%);
    position: relative;
    z-index: 12;
    background-color: #fff;
    left: -10%;
    padding: 20px !important;
}

@media (max-width: 767px) {
    /*xs*/
	.mediaCard .wp-block-media-text__content {
		box-shadow: 1px 1px 8px 3px rgb(0 0 0 / 30%);
		position: relative;
		z-index: 12;
		background-color: #fff;
		left: 0;
		width: 90%;
		margin: 0 auto;
		top: -20px;
	}
}
.wClient img {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all .4s ease;
}

.wClient img:hover {
    opacity: 1;
    filter: grayscale(0);
}

div.is-position-sticky:has(header),
.z99 {
    z-index: 99;
}
/* ===== Full-screen stacked card sections ===== */

/* Base reset */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* Let the document do the scrolling */
.cards {
  height: auto;
  overflow: visible;
  /* make snap gentle; remove this line if you want zero snapping */
  scroll-snap-type: y proximity;
}

/* Cards */
.card-lg {
  position: sticky;
  top: 0;
  min-height: 100dvh;            /* reliable full-viewport height */
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  transform-origin: center;
  will-change: transform, opacity;
  isolation: isolate;
}



/* Stacking so newer cards sit above older ones */
.card-lg:nth-child(1) { z-index: 1; }
.card-lg:nth-child(2) { z-index: 2; }
.card-lg:nth-child(3) { z-index: 3; }
.card-lg:nth-child(4) { z-index: 4; }
.card-lg:nth-child(5) { z-index: 5; }
.card-lg:nth-child(6) { z-index: 6; }
.card-lg:nth-child(7) { z-index: 7; }
.card-lg:nth-child(8) { z-index: 8; }
.card-lg:nth-child(9) { z-index: 9; }

/* Important: let the last card scroll normally so the footer is reachable */
.card-lg:last-of-type {
  position: relative;
  top: auto;
  min-height: max-content;     /* prevents an overly tall last section */
}


/*========= small screen only ======= */
@media (max-width: 767px) {
	.card-lg, .card-lg-Top {
        min-height: auto;
		overflow: hidden;
        position: relative;
        top: auto;
        padding-bottom: 50px !important;
        padding-top: 50px !important;
    }
	
}
@media(max-width: 1024px) {
	.card-lg, .card-lg-Top {
		min-height:auto;
		position:relative;
		top: auto;
		padding-bottom: 50px;
		padding-top: 50px;
	}
}

/* ===== Scroll-linked animations ===== */

/*
@supports (animation-timeline: view()) {
  .card-lg {
    view-timeline-name: --card;
    view-timeline-axis: block;

    animation:
      cardTransform 1 both ease,
      cardOpacity   1 both linear;
    animation-timeline: --card, --card;

    animation-range:
      entry 0% exit 100%,
      cover 100% exit 80%;
  }

  @keyframes cardTransform {
    0%   { transform: translateY(6vh) scale(1); }
    25%  { transform: translateY(0)   scale(1); }
    70%  { transform: translateY(0)   scale(1); }
    100% { transform: translateY(0)   scale(0.92); }
  }

  @keyframes cardOpacity {
    0%   { opacity: 1; }
    100% { opacity: 0; }
  }
}
*/

/* Fallback where scroll-linked animations are not supported */
/*
@supports not (animation-timeline: view()) {
  .card-lg { transform: none; opacity: 1; }
}
*/

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cards { scroll-snap-type: y proximity; }
  .card-lg {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}



/**************************
* info Cards
* **************************/
.card-container {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 1rem;
}

.card-container.2col {
	grid-template-columns: repeat(auto-fit, minmax(600px, 1fr)) !important;
}

/* Effects */
.card { transition: opacity .2s ease, filter .2s ease; }
.card.out-of-focus { opacity: .5; filter: blur(1px); }
.card.in-focus { opacity: 1; filter: none; }

.card-container .wp-block-columns:nth-child(odd) .wp-block-column:nth-child(even) .card {
    background: #f9f9f9 !important;
}

.card-container .wp-block-columns:nth-child(even) .wp-block-column:nth-child(odd) .card {
    background: #f9f9f9 !important;
}

.card-container .card,
.card-container .cardIcon, 
.card-container .cardTitle,
.card-container .cardInfo,
.card-container .cardLink {width:100%;}

.card-container .card {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1.8rem;
    position: relative;
    top: 0px;
    transition: all .3s ease;
    box-shadow: 0px 0px 0px -10px #00000099;
    overflow: hidden;
    height: 100%;
    /* display: flex;
    flex-direction: column;
    flex-wrap: wrap; */
	display: grid;
		align-content: center;
		justify-content: center;
	margin:0;
	cursor: default;
}
.card-container .cardIcon img {
	max-width: 40px;
	position:relative;
	transform: translateX(0px);
	transition: all .3s ease;
}

.card-container .cardIcon img[src$=".svg"] {max-height:40px;}
.card-container .cardTitle { color: #0a1f44; font-weight:800;}
.card-container .cardInfo {color: var(--wp--preset--color--custom-blue-80); flex-grow: 1;}

.card-container .cardLink a {
	color: #0a1f44;
	position:relative;
	transform: translateX(0px);
	transition: all .3s ease;
	text-decoration: none;
	display:inline-block;
	}

.card-container .card:hover {
	box-shadow:0px 30px 10px -20px #00000066;	
}

.card.cta {
		background-color: #203441;

		.cardTitle {color: #fff;
				   }
		p {color: #fff !important;
				   }
		.cardLink a{ color: #51cdf3;
				  }
}

.outlineRunner:hover .cardIcon img {
    transform: scale(1.4);
    filter: invert(41%) sepia(93%) saturate(1000%) hue-rotate(331deg);
}

/* ******************
 * dark container cards
 * ************/


.card-container.dark { 
	--ccdarkbg: #2b2b2b;
	--txt: #fff;
	--hoverbg: #282a2c;
	--ctabg: #203441;
	--brdrcolor: #354351;
	--link:#c57575;
	--highlight: #00ffff;
	
		
	background-color: var(--ccdarkbg);
	
	.card {
		background-color: var(--ccdarkbg);
		color: var(--txt);
		border-color:var(--brdrcolor);
		background-image: repeating-linear-gradient(135deg, rgba(25, 25, 25, 0.08) 0px, rgba(25, 25, 25, 0.08) 2px, transparent 2px, transparent 4px), linear-gradient(45deg, rgb(27 27 27 / 0%), transparent), linear-gradient(135deg, rgb(27 27 27 / 0%), transparent), linear-gradient(0deg, rgb(27 27 27 / 0%), transparent), linear-gradient(90deg, #00bcd400, #2196f300);
		background-repeat: no-repeat;
		background-size: 0%;
	}
	.outlineRunner {
		background-image:linear-gradient(286deg, var(--highlight) 50%, transparent 50%);
					animation: grotate 3s linear infinite;
			animation-play-state: paused;
	}
	.outlineRunner:hover{
			border: 1px solid transparent;
			background: conic-gradient(from var(--angle), #3f51b500 45%, #00FFFF 60%,  #00FFFF 65%, #3f51b500 76%) border-box;
			animation-play-state:running;
			box-shadow: 0px 0px 0px -7px #00000000;
			transition: all 0.3s ease;
			}
	
	.card:hover{
		background-color: var(--hoverbg) !important;
		background-image: repeating-linear-gradient(135deg, rgba(25,25,25,0.08) 0px, rgba(25,25,25,0.08) 2px,transparent 2px, transparent 4px),linear-gradient(45deg, rgb(27,27,27),transparent),linear-gradient(135deg, rgb(27,27,27),transparent),linear-gradient(0deg, rgb(27,27,27),transparent),linear-gradient(90deg, #00BCD4,#2196F3);
		background-position:center;
		background-size: 500%;
	}
	.card.cta, .outlinerunner:hover .card.cta {
		background-color: var(--ctabg);
	}
	.cardTitle {
		color: var(--txt);
	}
	.cardLink a {
		color: var(--link);
	}
	.card:hover .cardLink a {
		color: var(--highlight);
	}
		.cardIcon.red img[src$=".svg"]{
    filter: invert(41%) sepia(93%) saturate(1352%) hue-rotate(331deg);
    scale: 1.2;
			transform:translateX(0px);
	}
	
	.card:hover .cardIcon.red img[src$=".svg"]{
    filter: invert(41%) sepia(93%) saturate(1352%) hue-rotate(153deg);
    scale: 1.5;
    transform:translateX(5px);
 }

}
@media (max-width:767px) {
	.card-container {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
	}
}

/*********************************
* tech solutoions sections
*******************************/

.tsol-pin-wrap {
  position: relative;
  min-height: 260vh; /* or whatever value you pick inline */
  overflow: hidden;
}

.tsol-pin-inner {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}


.tsol-mainTitleContainer{position:relative;}
.tsol-mainTitle {
	position:relative;
	z-index:2;
}
.tsol-mainTitleBacking {
    content: ' ';
    position: absolute;
    background-color: #1d1f40;
    height: 100%;
    width: 1%;
    left: 50%;
    top: -50%;
}

@keyframes boxGrow {
	from {width:0%;}
	to {width:2%;}
}

.tsol-container {}

.tsol-wrapper {
	min-height: 100dvh;
	margin-top:0
}

.tsol-section{
	display: flex;
	justify-content: center;
	flex-direction: row;
	height: 100dvh;
	align-items: center;
}
.tsol-section div {
	padding: 2dvW;
}

/******
* alternate items
****************/
/*
.tsol-container .tsol-wrapper:nth-child(1n) {
	background:radial-gradient(circle at bottom left, #251884 0, #02061700 50%)
	}
.tsol-container .tsol-wrapper:nth-child(2n) {
	background:radial-gradient(circle at top left, #bd4932 0, #02061700 20%)
	}
.tsol-container .tsol-wrapper:nth-child(3n) {
	background:radial-gradient(circle at top left, #9e8303 20%, #02061700 60%)
	}
.tsol-container .tsol-wrapper:nth-child(4n) {
	background:radial-gradient(circle at top left, #1d4ed8 0, #02061700 60%)
	}

*/
.tsol-container .tsol-wrapper:nth-child(odd) .tsol-section {flex-direction: row-reverse;}
.tsol-container .tsol-wrapper:nth-child(even) .tsol-section {flex-direction: row;}


@media (max-width:768px) {
	.tsol-wrapper {
		min-height:fit-content;
		padding: 2dvW;
	}
	.tsol-section {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.tsol-section div {
		padding: 2dvW;
		flex-basis: 100%;
}
}


/**********************************************
 * float items over images
 * ***********************/
.layerTxt-container {
	position:relative;
	.layerTxt-main{
		position:relative;
		z-index:1
	}

	.layerTxt-br {
		position: absolute;
		z-index: 3;
		bottom: -30px;
		right: 0;
		}
	.layerTxt-bl	{
		position: absolute;
    	z-index: 3;
    	bottom: -30px;
    	left: 0;
	}
	
	.layerTxt-tr {
		position: absolute;
		z-index: 3;
		top: -30px;
		right: 0;
		}
	.layerTxt-tl	{
		position: absolute;
    	z-index: 3;
    	top: -30px;
    	left: 0;
		}

	figure {
		border:3px solid cyan;
		border-radius: 10px;
		overflow:hidden;
		box-shadow: 0px 0px 10px #000;
	}

	.z1 {z-index:1;}
	.z2 {z-index:2; top:-30px;}
	.z3 {z-index:3;}
	.z4 {z-index:4;}
	.z5 {z-index:5;}
}
@media (max-width:768px) {
	.layerTxt-container {
		.img1, .img3, .img4 {
			  position: relative;
			  z-index: 9;
			  transform: translate(60px, 0px) !important;
			  top: 0;
			  display: none;
		}
		.img2 {
		    position: relative;
		    z-index: 10;
		    transform: translate(0px, 20px) !important;
		    top: 0;
		    scale: 1.6 !important;
		    }
	}	
}




/* *****************************************
base fonts  & links
body - font-family: var(--fontBody);
Htags - font-family: var(--fontHeads);

***************************************** */
strong {
    font-weight: 600;
}

.fa {
  font-family: FontAwesome !important; }

.glyphicons, .glyphicon {
  font-family: 'Glyphicons Halflings' !important; }


body {/*font-family: var(--fontName); letter-spacing:3px; */}

H1, h2, h3, h4, h5, h6 { 
	font-family: var(--fontName);
	font-weight:var(--fontHeads);
	letter-spacing: 2px;
}

.undrscr:after
Specificity: (0,1,1)
 {
    content: '';
    display: block;
    width: 80%;
    height: 10px;
    background-color: #d32f2f;
    position: absolute;
    bottom: -20px;
}

/* **************************
padding & margins
****************************** */
.noPad {
  padding: 0 !important; }

.noPadTB0 {
  padding-bottom: 0px !important;
  padding-top: 0 !important; }

.noPadLR0 {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.pad20 {
  padding: 20px; }

.padLR20 {
  padding-right: 20px;
  padding-left: 20px; }

.pad30 {
  padding: 30px; }

.padB30 {
  padding-bottom: 30px; }

.padLR30 {
  padding-right: 30px;
  padding-left: 30px; }

.padL30 {
  padding-left: 30px; }

.padR30 {
  padding-right: 30px; }

.pullUp30 {
  margin-bottom: -30px;
  z-index: 2; }

.marZero {
	margin-top:0 !important;
	margin-bottom: 0 !important;
}
.mZeroB {
  margin-bottom: 0 !important; }

.noFlow {overflow:hidden;}
.noFlowX {overflow-x: hidden;}
.noFlowY {overflow-y: hidden;}

@media (max-width:767px){
	.padFix {padding-left: 0; padding-right:0;}
	.wp-block-buttons>.wp-block-button {width: 100%;}
}

/* *****************************************
logo
***************************************** */
@-webkit-keyframes slideRight {
  from {
    left: -100px;
    opacity: 0; }
  to {
    left: 0px;
    opacity: 1; } }
@keyframes slideRight {
  from {
    left: -100px;
    opacity: 0; }
  to {
    left: 0px;
    opacity: 1; } 
}
@-webkit-keyframes slideLeft {
  from {
    right: -100px;
    opacity: 0; }
  to {
    right: 0px;
    opacity: 1; } }
@keyframes slideLeft {
  from {
    right: -100px;
    opacity: 0; }
  to {
    right: 0px;
    opacity: 1; } 
}

.scale-in-center {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
		animation-timeline:view();
	animation-iteration-count:2;
	animation-direction:alternate;
}


@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}


.Logo {
    z-index: 1000;
    position: relative;
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.logo img {
    max-width: 275px;
	width: 100%;
   /* padding: 10px 0 0;
    position: relative;
    
    transition: all .3s linear;
    transform: scale(1);*/
}

/****************************************
* additional animations
* ************************************ */
.RedLeft {
	animation: RedLeft;
	animation-timeline: view();
	animation-range: 0% 100%;
	
}

@keyframes RedLeft {
	0% {box-shadow:0px 0px 0px var(--red) inset}
	80%	{box-shadow:20px 0px 0px var(--red) inset}
}

.shadowInLeft {
	animation: shadowInLeft;
	animation-timeline: view();
	animation-range: 0% 100%;
	
}

@keyframes shadowInLeft {
	0% {box-shadow:0px 0px 0px var(--darkblue) inset}
	80%	{box-shadow:20px 0px 0px var(--darkblue) inset}
}

@media (max-width:767px) {
	.RedLeft, .shadowInLeft {
		animation: none;
	}
}

.WhiteR {
	animation: whiteRight;
	animation-timeline: view();
	
}

@keyframes whiteRight {
	30% {box-shadow:0px 0px 0px red inset}
	200% {box-shadow:-170px 0px 0px red inset}
}

.focusOut {
	animation: blurOnScroll;
	animation-timeline: view();
	animation-range: 80% 100%;
}

@keyframes blurOnScroll {
	from {filter: blur(0px);}
	to {filter: blur(10px);}
}

.bgAnime {
	animation: bgSpin;
	animation-timeline: view();
	animation-range: 50% 100%;
}

@keyframes bgColor {
	from {background-color: var(--white);}
	to {background-color: var(--darkblue);}
}
@keyframes bgSpin {
	from {transform: scale(1); box-shadow: 0px 0px 0px 0px #4444445c;}
	to {transform: scale(0.2); box-shadow: 0px 0px 10px 10px #99999957;}
}
.notify img {
	animation: bell;
	animation-direction: alternate;
	position: relative;
	animation-timeline: view();
	transform-origin: top center;
}
@keyframes bell {
	from {transform: rotate(25deg);}
	to {transform: rotate(-25deg);}
}

.flipIt {
	animation: flipUp 2s forwards;
	animation-range-start: 0%;
	animation-range-end: 50%;
	animation-play-state: running;
}

@keyframes flipUp {
	from {transform: rotateX(90deg);opacity: 0;}
	to {transform: rotateX(7deg);opacity: 1;}
}


.slideInLeft {
	animation: slideLeft 2s forwards;
	position: relative;
}

.growBar {
	height:3px;
	width:0%;
	animation: growing;
	animation-timeline: view();
	margin: 0 auto;
}

.glowing {
	box-shadow:0 0 20px cyan;
}

@keyframes growing {
	from {width:0%;}
	to {width:100%;}
}

.bgBlur {
    backdrop-filter: blur(10px);
}
/* *****************************************
 * svg animations
 * ***************************************/
.lineBG {
    margin-top: 0px;
    margin-bottom: 0px;
    z-index: 2;
   /* background-image: url(/wp-content/uploads/2025/12/linechart1.svg);*/
	background-image:url(/wp-content/uploads/2026/01/lines-anime-tech.svg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
/* *****************
 * V logo 
 * **************/
svg#Vsvg {
    transform: translate(0px, 10px);
    filter: drop-shadow(1px 1px 3px #05eaf7) drop-shadow(2px 2px 3px #05eaf7);
    overflow: visible;
    display: block;
}
@media (max-width:768px) {
	svg#Vsvg {
		transform: translate(0px, -3px);
		}
}

/* *****************
 * chart line
 * ***************/
@keyframes tmv-draw-line {
  to { stroke-dashoffset: 0; }
}

path.linechart {
  stroke-dasharray: var(--tmv-path-len, 1000);
  stroke-dashoffset: var(--tmv-path-len, 1000);
  animation: none;
  will-change: stroke-dashoffset;
}

svg.is-inview path.linechart {
  animation: tmv-draw-line 1.2s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

/* glow/underlay path, hide it until the draw ends */
path.linechart-glow { opacity: 0; }

@keyframes tmv-fade-in {
  to { opacity: 1; }
}

svg.is-inview path.linechart-glow {
  animation: tmv-fade-in 0.25s ease 1.05s both;
}


@keyframes tmv-mask-reveal {
  to { width: 800px; }
}

#tmv-mask-chart-1 .tmv-mask-rect { width: 0; }
#tmv-mask-chart-1.is-inview .tmv-mask-rect {
  animation: tmv-mask-reveal 1.2s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}




/* ******************************************
 * change header based on scroll and class
 * ************************************/
body:has(.card-lg-Top.gray) #masthead {
	animation: grayFade;
	animation-timeline: scroll();
}

#masthead {
	
}

@keyframes grayFade {
	0% { background-color: var(--lightgray);}
	20% { background-color: var(--white);}
	100% { background-color: var(--white);}
}

/* *************************************
* sticky header #masthead
**************************************** 
body.page-template-default header.wp-block-template-part,
body.page-template-page-no-title header.wp-block-template-part,
body.page-tmeplate-wide-image header.wp-block-template-part,
body.home.page-template-default header.wp-block-template-part,
body.blog header.wp-block-template-part{
    position: sticky;
    top: 0;
    z-index: 2;
} */


.navFixed .Logo {
}

.navFixed .Logo img {
    transition: all .3s linear;
    /* max-width: 50%; */
    margin-bottom: -17px;
    margin-top: -42px;
    transform: scale(0.7);
}

.navFixed #topInfo {
    padding: 0px;
    margin-bottom: -9px;
    line-height: 0;
}

#smallNav {
	position:fixed; 
	width:100%; 
	top:-100px; 
	z-index:30; 
	transition: top .3s linear;
	backdrop-filter: blur(13px);
	    box-shadow: 0 0 8px 0 #000000c9;
}

#smallNav.navUp {
	top:0px; 
}

.navHover li::before {
    content: ' ';
    position: absolute;
    background-color: var(--blue);
    width: 0%;
    height: 1px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
	transition: width .3s ease;
}

.navHover li:hover > a {
    color: var(--wp--preset--color--custom-blue) !important;
}


.navHover li:hover:before, .navHover li.current-menu-item::before {
    width: 50%;
}
.navHover li a:hover {text-decoration:none}


.highlight mark{
	background-color: transparent !important;
}
/******************************************
sub nav
******************************************/
.nav-menu > li:last-child .sub-menu {
  right: 0; }


.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    background-color: #fff;
    border: 0px solid #00000026;
    border-radius: 0px 0px 10px 10px;
    outline: 1px solid #0000005e;
    overflow: hidden !important;
    box-shadow: 0px 10px 30px -20px #000;
}

.wp-block-navigation-submenu li {
	padding: 3px 10px !important;
	border-bottom: 1px solid #00000026;
}

#masthead .wp-block-navigation__container li{
	padding-top:10px;
	padding-bottom:10px;
}


#masthead li.current-menu-item:before {
		background-color: red;
	height: 2px;
	content: ' ';
	width:100%;
	position:absolute;
	bottom: -3px;
	left:50%;
	transform:translate(-50%, -100%);
}

#masthead .wp-block-navigation__container li:hover:before {
    background-color: var(--red);
    height: 2px;
    content: ' ';
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%, -100%);
    animation-name: growing;
    animation-duration: .5s;
}



.wp-block-navigation__container li a {
        text-decoration: none;
    }

#masthead .wp-block-navigation-submenu li.current-menu-item {
    background-color: var(--red);
    color: #FFF;
}

.wp-block-navigation-submenu li a {
    padding: 5px 1px;
    text-transform: none;
    }


.wp-block-navigation-submenu .glass li {
        background-color: transparent;
        padding-left: 10px !important;
    }

li.bttn > a {
    background: #ead452;
    color: #000 !important;
    /* border-radius: 10px; */
    padding: 5px;
    /* margin-left: 3px; */
    /* box-shadow: 2px 9px 10px 0px #0006; */
}


/* **********************
 * nav sizing breakpoints
 * ***********************/
/* Small phones → large phones */
@media (min-width: 480px) {
	ul.wp-block-navigation__container {
		
	}
	ul.wp-block-navigation__container li {
		
	}
	ul.wp-block-navigation__container li a {
		
	}
}

/* Large phones / small phablets */
@media (min-width: 640px) {}

/* Tablets (portrait) */
@media (min-width: 768px) {}

/* Tablets (landscape) / small laptops */
@media (min-width: 1024px) {
	ul.wp-block-navigation__container {
		
	}
	ul.wp-block-navigation__container li {
		
	}
	ul.wp-block-navigation__container li a {
		
	}
}

/* Desktops */
@media (min-width: 1280px) {}

/* Large desktops / 2K */
@media (min-width: 1536px) {}


/********************************
 * hero & headers
 * ****************************/
.heroWhite, .bottomWhite {
    box-shadow: 0px -60px 0px #fff inset;
}

.topWhite {
    box-shadow: 0 60px 0 0 #fff inset;
}

.heroGlow {
	box-shadow: 0px -70px 66px -60px #00bcd4b3 inset, 0px 60px 19px -40px #00000059;
	overflow:hidden;
    position: relative;
    z-index: 1;
}

.imgBgG1 {
    background-image: linear-gradient(45deg, #00000000 20%, #00ffff00 53%, #00000000 80%);
    backdrop-filter: blur(21px);
    padding: 10px;
    border-radius: 20px;
	img {
		filter: drop-shadow(21px -17px 22px #00000066);
	}
}

/****************************
 * value prop section
 * ***************************/

.hpinfoWrap{
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid #ccc;
	border-radius:20px;
	overflow:hidden;
}

.hpinfoWrap > .wp-block-group:first-of-type{
  flex: 1 1 auto;
}

:root{
  --iconbar-h: 110px; 
}

.hpIconBg{
  margin-top: auto;
  height: var(--iconbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--darkblue);
  width: 100%;
}

.hpIcon{
  background-color: var(--darkblue);
  padding: 30px 30px 3px;
  border-radius: 100% 100% 0 0;
  border-top: 8px #fff solid;
  position: relative;
  top: -15px;
	scale: 0.8;
  transition: top .3s ease, padding .4s ease, transform .3s ease;
}

.hpIcon img{ max-width: 100px; }

.hpinfoWrap:hover, .hpinfoWrap:focus{
  border: 1px solid var(--gray);
  box-shadow: 0 0 8px #9f9999f7;
}

.hpinfoWrap:hover .hpIconBg,
.hpinfoWrap:focus .hpIconBg{ background-color: var(--red2); }

.hpinfoWrap:hover .hpIcon,
.hpinfoWrap:focus .hpIcon{
  background-color: var(--red2);
  top: -27px;
}

.hpinfoWrap:hover .hpIcon img,
.hpinfoWrap:focus .hpIcon img{
  transform: scale(1.1);
}

.wp-block-columns{ align-items: stretch; }


.blGrow {
	border-left-width:1px; 
	animation: leftB;
	animation-play-state:running;
	animation-timeline: view();
	animation-iteration-count: 2;
	animation-direction: alternate;
}
.blGrow:hover, .blGrow:focus {}

@keyframes leftB {
	from{border-left-width:1px;}
	to {border-left-width:20px;}
}


.slideL {
    animation-name: slideLft;
    animation-timeline:view();
    position: relative;
    box-shadow: 9px 12px 14px -10px #000;
}

@keyframes slideLft {
    50% {left:0px}
    100% {left:-50px}
}
.moveUp {
    position:relative;
    animation:slideUps;
    animation-iteration-count: 1;
    animation-direction:forwards;
	animation-duration:1s;
    }
@keyframes slideUps {
    from {opacity:1; top:20px;}
    to {opacity:1; top:0px;}
}

.bgColorShift {
	transition: all 0.9s ease;
	outline: 1px #fff solid;
	background-image: linear-gradient(164deg, rgb(255 255 255) 18%, #ff0000 18%, #d32f2f 39%, rgb(255 255 255) 39%);
    background-size: 610%;
    background-position: 60% 50%;
    background-repeat: no-repeat;
	overflow:clip;
	animation-name: bgColorShiftanimeX;
	animation-timeline:view();
	
}

.bgColorShift.bgColorShift2 {
	    background-image: linear-gradient(164deg, rgb(255 255 255) 18%, #ff0000 18%, #731515 39%, rgb(255 255 255) 39%);
}

.bgColorShift:hover {
    outline: 1px #ff0000 solid;
    background-position: 20% 50%;
    background-repeat: no-repeat;
}
@keyframes bgColorShiftanime {
	0% { background-position: 60% 50%;}
	80% {   background-position: 45% 50%;}
}


.glass {
	border-width: 1px;
    border-radius: 30px;
    backdrop-filter: blur(11px);
    background-color: #ffffffb5 !important;
    border-color: #fff;
	height:100%;
}

.mainInfo, .addInfo, .glass2 {
    border-color: rgba(255, 255, 255, 0.27) !important;
    border-width: 1px;
    border-radius: 20px;
	border-style: solid;
    background-image: linear-gradient(rgba(159, 159, 159, 0.74) 15%, transparent 90%);
    text-shadow: rgb(0, 0, 0) 1px 1px 1px;
    background-color: transparent !important;
    color: rgb(255, 255, 255) !important;
	padding:30px;
    backdrop-filter: blur(14px);
}
.mainInfo *, .addInfo *, .glass2 *{z-index:3; position:relative;}

.mainInfo:before, .addInfo:before, .glass2:before{
	content: ' ';
	position: absolute;
	background-color: #ff090924;
	height: 100%;
	width:50%;
	top:0;
	left:0px;
	border-radius:  0 100px 0 0;
	corner-top-right-shape: scoop;
	z-index:0;
	pointer-events:none;
	filter:blur(40px);
	opacity: 0.6;
}

.mainInfo:after, .addInfo:after, .glass2:after{
	content: ' ';
	position: absolute;
	background-color: #ffffff80;
	height: 100%;
	width:20%;
	bottom:0;
	right:0px;
	border-radius: 1000px 0;
	corner-top-left-shape: scoop;
	z-index:0;
	pointer-events:none;
	opacity: 0.6;
	filter:blur(40px);
}

.smallGlass-contianer {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(279px, 1fr)) !important;
	gap: 1rem;

	.glass2{
		        margin-block-start: 5px;
	}
	
}

/****************
buttons
****************/
a.wp-block-button__link {
    top: 0px;
    position: relative;
}

a.wp-block-button__link:hover, a.wp-block-button__link:focus {
    top: -2px;
    transition: all .3s ease;
    box-shadow: 0px 26px 10px -20px #00000085;
	background-color: #5a1f05;
}


.effect1 a{
	border-radius: 0px;
	border: 1px solid transparent;
	background: linear-gradient(90deg, #203441, #385d75) padding-box, conic-gradient(from var(--angle), #fff, #1d1f40, #fff) border-box;
	animation: grotate 3s linear infinite;
	animation-play-state: paused;
	box-shadow: 0px 0px 0px -7px #00000000;
    text-shadow: 1px 1px 4px #420202fa;
	transition: all 0.3s ease;
}

.effect1 a:hover,
.effect1 a:focus{
	border-radius: 20px;
	animation-play-state: running;
	box-shadow: 0px 12px 13px -7px #00000091;
}


.effect2 a {

	border-radius: 0px;
	border: 1px solid transparent;
	/*background: linear-gradient(#d32f2f) padding-box, conic-gradient(from var(--angle), #800a0a, white, #800a0a) border-box;*/
	background: linear-gradient(90deg, #9e0d1a, #eb0010) padding-box, conic-gradient(from var(--angle), #660d0d, white, #680d0d) border-box;
	animation: grotate 3s linear infinite;
	animation-play-state: paused;
	box-shadow: 0px 0px 0px -7px #00000000;
	transition: all 0.3s ease;
	text-shadow: 1px 1px 4px #420202fa;
}

.effect2 a:hover,
.effect2 a:focus {
	border-radius: 20px;
	animation-play-state: running;
	box-shadow: 0px 12px 13px -7px #00000091;
}

@property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: true;
}
@keyframes grotate {
	to {
		--angle: 1turn;
	}
}



/***********************
 * add icon after button text
 * **************************/
[class^="btn-icon-"] .wp-block-button__link::after, [class*=" btn-icon-"] .wp-block-button__link::after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'TMVicons' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transform: translate(4px, 2px);
  display: inline-block;
}

.btn-icon-external-link .wp-block-button__link::after {
  content: "\e900";
}
.btn-icon-office .wp-block-button__link::after {
  content: "\e903";
}
.btn-icon-phone .wp-block-button__link::after {
  content: "\e942";
}
.btn-icon-envelop .wp-block-button__link::after {
  content: "\e945";
}
.btn-icon-sphere .wp-block-button__link::after {
  content: "\e9c9";
}
.btn-icon-earth .wp-block-button__link::after {
  content: "\e9ca";
}
.btn-icon-arrow-up .wp-block-button__link::after{
  content: "\ea32";
}
.btn-icon-arrow-right .wp-block-button__link::after {
  content: "\ea34";
}
.btn-icon-arrow-down .wp-block-button__link::after {
  content: "\ea36";
}
.btn-icon-arrow-left .wp-block-button__link::after {
  content: "\ea38";
}
.btn-icon-arrow-up2 .wp-block-button__link::after {
  content: "\ea3a";
}
.btn-icon-arrow-right2 .wp-block-button__link::after {
  content: "\ea3c";
}
.btn-icon-arrow-down2 .wp-block-button__link::after {
  content: "\ea3e";
}
.btn-icon-arrow-left2 .wp-block-button__link::after {
  content: "\ea40";
}
.btn-icon-circle-up .wp-block-button__link::after {
  content: "\ea41";
}
.btn-icon-circle-right .wp-block-button__link::after {
  content: "\ea42";
}
.btn-icon-circle-down .wp-block-button__link::after {
  content: "\ea43";
}
.btn-icon-circle-left .wp-block-button__link::after {
  content: "\ea44";
}

[class^="btn-icon-"] .wp-block-button__link::after, [class*=" btn-icon-"] .wp-block-button__link::after {
	opacity: 1;
	scale:1;
	transform:translate(4px, 2px);
	transition: all .3s ease;
}

[class^="btn-icon-"]:hover .wp-block-button__link::after, [class*=" btn-icon-"]:hover .wp-block-button__link::after {
	opacity:1;
	scale:1.1;
	transform:translate(10px, 2px);
}
/************
 * footer gap fix
 * ********************/

footer.wp-block-template-part {
    margin-top: 0;
}

/* *************
 * cta banner
 * * *************/

@property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: true;
}
@keyframes rotate {
	to {
		--angle: 1turn;
	}
}


.ctaGrad-spin:before {
  width: 100%;
  height: 100%;
  background-image: conic-gradient(from var(--angle), #420505, #c23434);
 /* background-image: conic-gradient(from var(--angle), #c23434, #5c0528, #000000, #ee077b); */
  z-index:1;
  filter: blur(24px);
      animation: rotate 15s linear infinite;
	position:absolute;
	transform: scale(10);
	top:0;
	left:0;
	content:' ';
	background-color: #000;
		background-position:center;
}
.ctaGrad-spin {
	overflow:hidden;
	backdrop-filter: blur(10px);
		background-color: #000 !important;
	box-shadow:0px 0px 10px #000 inset;
		
	h2, p, div {
	z-index:3;
	position:relative;
	}
}

footer {
	a {
    text-decoration: underline !important;
    text-decoration-color: #000 !important;
    transition: all .3s ease;
    text-underline-offset: 0;
	}

	a:hover {
    color: cyan !important;
    text-decoration: underline;
    text-decoration-color: cyan !important;
    text-underline-offset: 5px;
	}
	
	.fex-a a {
    color: #adadad;
	}
}


.toTop {
    position: fixed;
    bottom: 10px;
    transform: translate(-50%, 0px);
    z-index: 100;
    left: 50%;


}

.toTop img{
	transform: rotate(0deg);
	transition: all .3s ease;
	scale: 0.6;
	filter: drop-shadow(1px 3px 0px black);
}


.toTop:hover, .toTop:focus {

}
.toTop:hover img{
	transform: rotate(180deg);
	scale: 0.6;
}


.toTop a {    
	box-shadow: 0px 0px 10px #00000069; 
	background: #000000bd;
    backdrop-filter: blur(3px);
	padding: 3px 13px;
    border: 1px solid #fff;
    border-radius: 0px 0px 0px 0px;
	transition: all .3s ease,
	line-height:1; 
	text-decoration:none !important;
}

.toTop a:hover, .toTop a:focus {
    color: #00ffff;	
	border: 1px solid #00ffff;
	border-radius:20px;
	text-decoration:none !important;
}

/*******************************************
 * answers / faq
 * **********************************/

.ansfaq-question-item.is-active .ansfaq-question-btn {
    background-color: #f5f5f5;
    box-shadow: none;
    border-radius: 0px;
}


button.ansfaq-question-btn:hover, .ansfaq-question-btn:focus {
    background-color: #fff;
    box-shadow: none;
    text-decoration: underline;
}

button.ansfaq-question-btn {
    background-color: #fff;
    border: none;
}

.ansfaq-back-btn {
    border-radius: 0px;
    background-color: var(--blue);
    color: #fff;
}
.ansfaq-back-btn:hover, .ansfaq-back-btn:focus {
    border-radius: 0px;
    background-color: var(--lightgray);
    color: #000;
}

/*******************************************
 * list styling
 * **********************************/
.liNone {
    padding-left: 0px;
}

.liNone li {
    list-style: none;
	border-bottom: 0px solid #ccc;
}

.liNone li:last-of-type {
	border-bottom: none;
}

.check li {position: relative;padding-left: 32px;}

.check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 26px;
    height: 26px;
    background-image: url("/wp-content/uploads/2026/03/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.check.color li::before {
    filter: invert(41%) sepia(93%) saturate(1352%) hue-rotate(153deg);
}
.noDot {
	list-style: none;
	padding-left: 0px;
}
.noDot a {
	text-decoration: none;
	display: block;
	padding: 4px;
}



/* **********************
posts
********************** */
/* *** post grid *** */
.outlineRunner {
    background-image: linear-gradient(286deg, var(--red2) 50%, transparent 50%);
		border:1px solid transparent;
    border-radius: 11px;
    padding: 1px;
    background-size: 230%;
	background-repeat:no-repeat;
	height:100%;
	margin-top: 0px;
	top: 0px;
    transition: top .3s ease;
	width: 100%;
}

.flexBottom {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: flex-start;
	position: relative;
    top: 0px;
    transition: all .3s ease;
    box-shadow: 0px 0px 0px -10px #00000099;
    overflow: hidden;
    height: 100%;
}

.flexBottom .wp-block-post-title {
    width: 100%;
	transform: translateX(0px);
	transition: all .3s ease;
}

.flexBottom .wp-block-post-excerpt {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.flexBottom .wp-block-post-excerpt__excerpt {
	flex-grow: 1;
}

.flexBottom .wp-block-post-excerpt__more-text a {
    flex-grow: 0;
	color: #0a1f44;
	position:relative;
	transform: translateX(0px);
	transition: all .3s ease;
	text-decoration: none;
	display:inline-block;
}

/******* flexBottom hover *****/
.outlineRunner:hover,
.outlineRunner:focus,
.outlineRunner:focus-within{
	animation: glow 1s ease;
	top:-5px;
}
.flexBottom:hover,
.flexBottom:focus,
.flexBottom:focus-within{
	box-shadow:0px 10px 10px -10px #00000099;
	top:0px;
}
.flexBottom:hover .wp-block-post-title,
.flexBottom:focus .wp-block-post-title,
.flexBottom:focus-within .wp-block-post-title{
	transform: translateX(10px);
}
.flexBottom .wp-block-post-excerpt__more-text a:hover,
.flexBottom .wp-block-post-excerpt__more-text a:focus,
.flexBottom .wp-block-post-excerpt__more-text a:focus-within{
	text-decoration:underline;
	text-underline-position: under;
	transform: translateX(10px);
}

/* glow */
@-webkit-keyframes glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ****************************
 * tab groups
 * ******************************/
.custTabs {
	overflow: hidden;
}
.custTabs .wp-block-ub-tabbed-content *:focus {
    outline: none;
}
.custTabs .wp-block-ub-tabbed-content-tab-title {
    font-size: 1.1rem;
    padding-block-start: 10px;
}
.custTabs .wp-block-ub-tabbed-content-tabs-title {
    background-color: #eee;
    box-shadow: 0px -10px 8px -10px #ccc inset;
}

.custTabs .wp-block-ub-tabbed-content-tab-title-wrap.active {
    background-color: #fff !important;
    border-bottom: none !important;
}

.custTabs .wp-block-ub-tabbed-content-tabs-content {
    border: 0px solid #ccc;
    margin-top: 0px;
}

.custTabs div[role="tabpanel"].active {
	animation-name:animIn;
	animation-duration: 1s;
	animation-iteration-count: 1;
}

@keyframes animIn{
	from {scale: 0.99;opacity:0.4;}
	to { scale:1; opacity:1;}
}

/***********************
 * image stuff
 * ********************/
.m3d {

}
.m3d {
	img{
    transform: matrix3d(2.3, 0, 0, 0, -1, 1, 0, 0, 0, 0, 1, 0, 0.1, 0, 0, 1.7);
    filter: drop-shadow(52px 34px 16px #00000061);
    transition: all .5s ease;
    opacity: 0.7;
    border: 1px solid cyan;
    -webkit-box-reflect: below 30px linear-gradient(#ffffff00 70%, #ffffff 103%);
    border-radius: 0px;
	}
	
	.bgVimg {
    transform: matrix3d(2.3, 0, 0, 0, -1, 1, 0, 0, 0, 0, 1, 0, 0.1, 0, 0, 1.7);
    filter: drop-shadow(52px 34px 16px #00000061);
    transition: all .5s ease;
    opacity: 0.7;
    border: 1px solid #51cdf3;
    -webkit-box-reflect: below 30px linear-gradient(#ffffff00 0%, #ffffff 153%);
    border-radius: 0px;
	}
}

.m3d:hover {
	img {
	transform: matrix(1, 0, 0, 1, 0, 0);
	filter: drop-shadow(2px 4px 6px #00000000);
	border: 1px solid #51cdf3;
	opacity: 1;
	-webkit-box-reflect: below 0px linear-gradient(#ffffff00 84%, #ffffff 127%);
	border-radius: 60px;
		translate: 0px 10px;
	}

	.bgVimg {
	transform: matrix3d(2.3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1.3);
	filter: drop-shadow(2px 4px 6px #00000000);
	border: 1px solid #51cdf300;
	opacity: 1;
	-webkit-box-reflect: below 0px linear-gradient(#ffffff00 104%, #ffffff 127%);
	border-radius: 60px;
	}
}


.colcrd {
    background-color: #f5f5f5b0;
    z-index: 1;
	padding: 30px;
}

.imgOpacity {
    img {opacity:0.5}
    img:hover {opacity: 1 !important;}
}

.imgOpacity figure:has(img) {
	background-color:#ffffff00;
	transition: all .3s ease;
	corner-shape:round;
	border-radius:30px;
	height: auto !important;
	margin: 0 !important;
}

.imgOpacity figure:has(img:hover) {
	background-color:#fff;
	filter: drop-shadow(1px 2px 5px #00000033);
}
/* **********************
forms
********************** */

.gform-theme--foundation .gform_fields {
	row-gap:10px !important;
}


#contact span.gfield_required.gfield_required_text, #contact h2 {
    color: #fff;
}
#contact .gform_validation_errors a {color: #fff !important;}
#contact .gform_validation_errors, #contact .gfield_validation_message {
    background-color: #570000 !important;
    color: #fff !important;
    padding: 5px;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 18px !important;
}

.gform_wrapper .gform_validation_errors>h2 .gform-icon {
    display: none !important;
}

.gform_wrapper h2 {
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
}


.maxH textarea {
  max-height: 285px; }

.gform_wrapper ul li.gfield {
  clear: none !important;
  margin: 0 !important;
  padding-right: 13px !important; }

aside .gform_body input {
  line-height: 1 !important;
  margin: 5px 0 !important;
  padding: 10px 10px !important; }

aside .gform_body div {
  line-height: 1 !important;
  margin: 2px 0 !important; }

aside .gfield {
  clear: none !important; }

aside .datepicker.medium.mdy.datepicker_no_icon.hasDatepicker {
  width: 100% !important; }

.gform_wrapper .datepicker, .votedNoOne .gform_wrapper .datepicker {
  width: 100% !important; }

aside .gform_wrapper .gform_footer {
  margin: 0 !important;
  padding: 0 !important; }

#secondary textarea {
  height: 100px; }

#secondary textarea:focus {
  height: 150px; }



.ui-datepicker-title select {
  width: 32% !important; }

/* Target all placeholder styles with a single selector */
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #000000 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}

/* Style the ui-datepicker element */
.ui-datepicker {
  z-index: 300 !important;
}

.faded {
  opacity: 0; }

/*********************************
 * tables
 * *****************************/


.table-helper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.table {
    width: 100%;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    font-size: .9375rem;
    text-align: left;
    line-height: 1.25;
    padding-bottom: 1rem;
}
.table-striped thead {
    border-bottom: none;
}
.table-striped th {
    border-top: none;
    border-left: none;
    border-right: none;
}
 .table-striped td {
    border: none;
    padding: 1.2rem;
}


.table th,
.table td {
    padding: .5rem;
}

.table-striped th {
    border-bottom: 1px solid var(--lightgray);
    padding-bottom: 1rem;
    text-align: left;
    font-size: 1.5rem;
}

.table tbody tr:first-child td {
    padding-top: 1rem;
}

.table-striped tbody tr:nth-child(even) td {
    position: relative;
}

.table-striped tbody tr:nth-child(even) td:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: .25em;
    bottom: .25em;
    background-color: rgba(36,145,235,.085);
    pointer-events: none;
}
@media (max-width: 767px) {
	table {
    	width: 100%;
		max-width: 50rem;
		margin-left: auto;
		margin-right: auto;
		font-size: .8375rem;
		text-align: left;
		line-height: 1.25;
		padding-bottom: 1rem;
	}
	.table-striped td {
		padding: 10px;
	}
	.table-striped th {
		font-size:1rem;
	}
}
@media (min-width: 992px) {

    .table {
        font-size: 1rem;
    }

    .table th,
    .table td {
        padding: .8125rem .5rem;
    }

}

/***************************
 *  calculator
************************* */

.wp-block-tmv-shares-rebate .tmv-sr-form {
	margin: 0 auto;
}


.calculator {
    text-align: center;
    padding-bottom: 0;
}

.calculator .form {
    width: 100%;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

.calculator select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid var(--gray);
    font-size: 1.3rem;
    text-align: center;
}

.calculator .tmv-sr-input {
    margin-bottom: 2rem;
}

.calculator .tmv-sr-input label {
    display: block;
    text-transform: uppercase;
}

.calculator .tmv-sr-lever {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.calculator .tmv-sr-lever .val {
    flex: 1;
    padding: 0 1rem;
}

.calculator .tmv-sr-lever .min,
.calculator .tmv-sr-lever .max {
    font-size: 1.5rem;
}

.calculator .ui-slider {
    border: 1px solid var(--lightblue);
    border-radius: .5rem;
}

.calculator .ui-slider-range {
    background-color: var(--blue);
    border-radius: inherit;
}

.calculator .ui-slider-handle {
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--blue);
    border: .25rem solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 .1875rem var(--blue);
    outline: none;
}

.calculator .tmv-sr-return {
    font-weight: 900;
}

.calculator .tmv-sr-return .title {
    text-transform: uppercase;
}

.calculator .tmv-sr-return .value {
    font-size: 1.75rem;
}

.calculator .tmv-sr-shares {
    background-size: 1.25rem 1.25rem;
    border-color: rgba(0,0,0,.15);
    padding-top: .125rem;
    padding-bottom: .125rem;
    padding-right: 1.125rem;
    border-radius: .25rem;
    font-size: .9375rem;
    text-align: center;
}

.calculator .tmv-sr-shares:focus {
    border-color: var(--lightblue);
}

@media (min-width: 992px) {

    .calculator {
        padding-top: 4rem;
    }

}

/* Base: always hide */
.hidden { display: none !important; }

/* Bootstrap-like breakpoints (mobile-first) */
@media (max-width: 575.98px) { .hidden-xs { display: none !important; } }                 /* <576px */
@media (min-width: 576px) and (max-width: 767.98px) { .hidden-sm { display: none !important; } } /* 576–767.98px */
@media (min-width: 768px) and (max-width: 991.98px) { .hidden-md { display: none !important; } } /* 768–991.98px */
@media (min-width: 992px) and (max-width: 1199.98px) { .hidden-lg { display: none !important; } }/* 992–1199.98px */
@media (min-width: 1200px) { .hidden-xl { display: none !important; } }   

/* ******************************************
all break points
******************************************** */
@media (max-width: 767px) {
  /*xs*/
	.flipper {
		flex-direction:column-reverse !important;
	}
	.flipper h2 {
		padding-top: 18px;
		text-align: left;
	}
	.flipper p {
		text-align: left;
	}
	

}

@media (min-width: 768px) and (max-width: 991px) {
  /*sm*/
  	.Logo img {
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
  /*md*/
	
	.col-md-fix {
		flex-direction:column;
	}
}

@media (min-width: 1200px) {
  /*lg*/
 
 }
 
 /* ****************************************
bootstrap extras
*************************************** */

@media (max-width: 767px) {
  /** xs **/
  /** Pull left xs **/
  .pull-left-xs {
    float: left; }
  /** Pull right xs **/
  .pull-right-xs {
    float: right; } }

@media (min-width: 768px) {
  /** sm **/
  /** Pull left sm **/
  .pull-left-sm {
    float: left; }
  /** Pull right sm **/
  .pull-right-sm {
    float: right; } }

@media (min-width: 992px) {
  /** md **/
  /** Pull left **/
  .pull-left-md {
    float: left; }
  /** Pull right **/
  .pull-right-md {
    float: right; } }

@media (min-width: 1200px) {
  /** lg **/
  /** Pull left **/
  .pull-left-lg {
    float: left; }
  /** Pull right **/
  .pull-right-lg {
    float: right; } }

.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
  text-align: left; }

.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
  text-align: center; }

.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
  text-align: right; }

.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
  text-align: justify; }

@media (max-width: 767px) {
  .text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
    text-align: inherit; }
  .text-left-xs {
    text-align: left; }
  .text-center-xs {
    text-align: center; }
  .text-right-xs {
    text-align: right; }
  .text-justify-xs {
    text-align: justify; } }

@media (min-width: 768px) and (max-width: 991px) {
  .text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
    text-align: inherit; }
  .text-left-sm {
    text-align: left; }
  .text-center-sm {
    text-align: center; }
  .text-right-sm {
    text-align: right; }
  .text-justify-sm {
    text-align: justify; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
    text-align: inherit; }
    text-align: left; }
  .text-center-md {
    text-align: center; }
  .text-right-md {
    text-align: right; }
  .text-justify-md {
    text-align: justify; } }

@media (min-width: 1200px) {
  .text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
    text-align: inherit; }
  .text-left-lg {
    text-align: left; }
  .text-center-lg {
    text-align: center; }
  .text-right-lg {
    text-align: right; }
  .text-justify-lg {
    text-align: justify; } }