/* 
Theme Name:    Quadsimia Child Theme
Description:   Bento theme customization by Quadsimia
Author:        Rob Perry, Creative Director / Senior Web Developer, Quadsimia
Author URI:    http://www.quadsimia.com/
Template:      bento
Version:       1.0.1
Text Domain:   Bento-child
-------------------------------------------------------------- */
/* TABLE OF CONTENTS
 1: FONTS
 2: GENERAL STYLES
    2a: Structural
    2b: Typography
    2c: Links/CTAs
    2d: Lists
    2e: Tables
    2f: Grids/Columns
    2g: Flex
    2h: Images
    2i: Videos
    2j: Forms
    2k: Formatting
 3: HEADER
    3a: Headerov
    3b: Header - Sticky
    3c: Alert Bar
    3d: Top Nav Bar
    3e: Logo
 4: NAV
    4a: Nav Menu
    4b: Nav Menu - Position
    4c: Nav Menu - Full Background
    4d: Mobile Nav Menu
    4e: Mobile MeanMenu
 5: BODY/CONTENT
    5a: Breadcrumbs
    5b: Homepage
    5c: Interior
 6: SIDEBAR
    6a: Aside
 7: FOOTER
    7a: Footer Content
    7b: Copyright
    7c: Return to Top Button
    7d: Google Recaptcha Badge
 8: ANIMATION/FX
    8a: Grid Effects
    8b: Owl Carousel
    8c: Parallax Images - Using Simple Parallax JS
    8d: Animate.css - See /styles/animate/animate.css
 9: RESPONSIVE
 10: CMS
    10a: QDYNAMO
      QD1: HEADER
      QD2: NAV
      QD3: BODY/CONTENT
      QD4: SIDEBAR
      QD5: FOOTER
      QD6: MODULES
        QD6a: Popup
    10b: WORDPRESS
      WP1: HEADER
      WP2: NAV
      WP3: BODY/CONTENT
      WP4: SIDEBAR
      WP5: FOOTER
      WP6: PLUGINS
        WP6a: Breadcrumbs NavXT
        WP6b: Sticky Header by ThematoSoup
        WP6c: W2DC Directory
`11: CUSTOM CSS
-------------------------------------------------------------- */

/* 1: FONTS */
/* Add fonts and all customizations to your screen.css file */
/*@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--clr--primary--lightblue: #0f74bb;
	--clr--primary--darkblue: #0f74bb;
	--clr--accent--skyblue: #E0F7FF;
	--clr--jet: #333333;
	/*Shades*/
		/*Darks*/
	--clr--primary--lightblue--d1:#152A63;
	--clr--primary--lightblue--d2:#152A63;
	--clr--primary--darkblue--d1:#152A63;
	--clr--primary--darkblue--d2:#152A63;
		/*Lights*/
	--clr--primary--lightblue--l1:#1ab6f1;
	--clr--primary--lightblue--l2:#33bef2;
	--clr--primary--darkblue--l1:#152A63;
	--clr--primary--darkblue--l2:#152A63;
}

/*------------------------------------------------------------ */
/* 2: GENERAL STYLES */

/* -- 2a: Structural ----------------------------------------- */
html{scroll-behavior:smooth;}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
body{position:relative;width:100%;padding:0;margin:0;background-color:#fff;}
main{position:relative;margin:0;padding:0;}
section{position:relative;margin:0;padding:2em 0;}
.container{position:relative;width:100%;max-width:1440px;margin:0 auto;padding:0 1.25em;}
.container:after{content:"";display:table;clear:both;}

/* -- 2b: Typography ----------------------------------------- */
body{font:normal 1em/1.45em 'Open Sans', 'Helvetica Neue', Helvetica, Arial, 'sans-serif';text-rendering: optimizeLegibility;-webkit-font-smoothing:antialiased;}
h1,h2,h3,h4,h5,h6{margin:0.65em 0 0.35em 0;font-weight:normal;text-rendering:optimizeLegibility;line-height:normal;}
h1{font-size:3em;}
h2{font-size:2.25em;}
h3{font-size:2em;}
h4{font-size:1.75em;}
h5{font-size:1.5em;}
h6{font-size:1.25em;}
p{margin:0.8em 0;}
blockquote{margin:1em 1em 1em 0;padding:0 0 0 0.5em;font-size:1.5em;line-height:1.5em;font-style:italic;border-left:1px solid #ccc;}
blockquote span{font-size:0.7em;display:block;}
hr{margin:1em 0;border-bottom:1px solid #f1f1f1;border-left:none;border-right:none;border-top:none;}
address{display:block;margin:0 0 0.75em;}
sub,sup{font-size:50%;margin-left:0.1em;margin-right:0.1em;line-height:0;position:relative;}
sup{top:0;vertical-align:super;}
sub{bottom:0;vertical-align:sub;}

abbr, acronym{
  border-bottom: 1px dotted #ccc;
  cursor: help;}
hgroup{margin-bottom: 0.75em;}
del{color: #595959;}
cite{
   background-color: #fff;
   padding: 0.5em 1.5em;
   margin: 0.25em auto;
   display: table;
   font-size: 1.4em;}
cite:before {
  content: '\2014 \00A0'; }
figure figcaption{
   font-size: 0.8em;
   line-height: 1.3em;}

@media screen and (max-width:680px){
  h1{font-size:2.5em;}
  h2{font-size:1.75em;}
  h3{font-size:1.5em;}
  h4{font-size:1.25em;}
  h5{font-size:1.125em;}
  h6{font-size:0.95em;}
}
/* type helpers */
.nowrap{white-space: nowrap;}

/* -- 2c: Links/CTAs ----------------------------------------- */
a{transition:all 0.3s ease;}
a{color:var(--clr--primary--lightblue);text-decoration:none;}
a:hover{color:var(--clr--primary--darkblue);}
a:active{color:var(--clr--primary--darkblue);}
a:focus,:focus{outline:3px solid #c1e0fe;outline:3px solid rgba(131,192,253,0.5);outline-offset:1px;/* added for accessibility enhancement */}
.cta{display:inline-block;margin:0 0.125em;padding:0.5em 1.125em;background-color:#0085CA;color:#fff;border-radius:2em;font-weight:bold;vertical-align: middle;}
.cta:hover{background-color:#551A8B;color:#fff;}
.cta.outline{background-color:transparent;border:3px solid #fff;color:#fff;}
.cta.outline:hover{border:3px solid #fbe06d;color:#fbe06d;}
/* Secondary color */
.cta.secondary{background-color:#009739;color:#000;}
.cta.secondary:hover{background-color:#009739;color:#fff;}
.cta.outline.secondary{padding:0.3em 1.125em;background-color:transparent;border:3px solid #6CC24A;color:#6CC24A;}
.cta.outline.secondary:hover{border:3px solid #009739;color:#009739;}
/* Contact color */
.cta.contact{background-color:#ffdb4d;color:#fff;}
.cta.contact:hover{background-color:#f64cab;color:#fff;}
.cta.outline.contact{padding:0.3em 1.125em;background-color:transparent;border:3px solid #D60078;color:#D60078;}
.cta.outline.contact:hover{border:3px solid #f64cab;color:#f64cab;}
/* CTA Sizes */
.cta.large{
  font-size:1.5em;
  min-width:200px;}
/* CTA Widths */
.cta{width:auto;}
.card .cta{width:100%;}
.cta.full, .card .cta.full{width:100%;}
.cta.half, .card .cta.half{width:50%;}
.cta.thirds, .card .cta-thirds{width:33.333%;}
.cta.quarter, .card .cta.quarter{width:25%;}

@media screen and (max-width:680px){
  .cta, .card .cta,
  .cta.full, .card .cta.full,
  .cta.half, .card .cta.half,
  .cta.thirds, .card .cta-thirds,
  .cta.quarter, .card .cta.quarter{width:100%;}
  .card .cta,
  .card .cta.full,
  .card .cta.half,
  .card .cta-thirds,
  .card .cta.quarter{width:100%;}
}

/* -- 2d: Lists ---------------------------------------------- */
ul,ol{}
li{margin:0;padding:0.25em 0;}
ul.inline,ol.inline{padding:0;}
ul.inline li,ol.inline li{display:inline-block;}
ul.nobull{list-style-type:none;padding-left:0;}
ul.icons li{list-style-type:none;/*list with icons*/}
ul.icons li:before{padding-right:0.5em;font-family:"Font Awesome 5 Free";font-weight:900;content:"\f0da";}
dl{/* definition list */}
dt{clear:both;float:left;padding:0 1em 0.25em 0;width:150px;font-weight:bold;}
dd{float:left;}

/* -- 2e: Tables --------------------------------------------- */
table{border:1px solid #ccc;margin:1em 0;padding:0;width:100%;border-collapse:collapse;border-spacing:0;text-align:left;background-color:#fff;}
th{border-bottom:1px solid #ccc;padding:0.75em;font-weight:bold;background-color:#f1f1f1;}
td{border-bottom:1px solid #ccc;padding:0.75em;}
tr,th,td{vertical-align:middle;}
table.striped tr:nth-child(even){background-color:#f1f1f1;}

/* -- 2f: Grids/Columns -------------------------------------- */
.group:before,.group:after{content:"";display:table;}
.group:after{clear:both;}
.group{zoom:1;/* For IE 6/7 */}
.col{display:block;float:left;margin:1% 0 1% 1.6%;}
.col:first-child{margin-left:0;}
.span1{width:6.86%;}.span2{width:15.33%;}.span3{width:23.8%;}.span4{width:32.26%;}.span5{width:40.73%;}.span6{width:49.2%;}.span7{width:57.66%;}.span8{width:66.13%;}.span9{width:74.6%;}.span10{width:83.06%;}.span11{width:91.53%;}.span12{width:100%;}
.grid-example .col{padding:0.5em;background-color:#f1f1f1;border:1px dotted #ccc;}
/* column handling */
.col.span6:nth-child(2n+1){margin-left:0; /* 2 column */}
.col.span4:nth-child(3n+1){margin-left:0; /* 3 column */}
.col.span3:nth-child(4n+1){margin-left:0; /* 4 column */}
.col.span2:nth-child(6n+1){margin-left:0; /* 6 column */}
@media screen and (max-width:840px){
  .span1{width:6.86%;}.span2{width:15.33%;}.span3{width:23.8%;}.span4{width:32.26%;}.span5{width:40.73%;}.span6{width:49.2%;}.span7{width:57.66%;}.span8{width:66.13%;}.span9{width:74.6%;}.span10{width:83.06%;}.span11{width:91.53%;}.span12{width:100%;}
}
@media screen and (max-width:680px){
  .col{margin:1% 0;}
  .span1{width:100%;}.span2{width:100%;}.span3{width:100%;}.span4{width:100%;}.span5{width:100%;}.span6{width:100%;}.span7{width:100%;}.span8{width:100%;}.span9{width:100%;}.span10{width:100%;}.span11{width:100%;}.span12{width:100%;}
}

.content-single-post .entry-content img, .entry-content img.alignright, .entry-content img.alignleft{width:32.26%;} /* equal to span4 */
.content-single-post .entry-content img.full, .content-single-post .entry-content img.aligncenter{width:100%;}
@media screen and (max-width:840px){
  .content-single-post .entry-content img, .entry-content img.alignright, .entry-content img.alignleft{width:32.26%;} /* equal to span4 */
  .content-single-post .entry-content img.full{width:100%;}
}
@media screen and (max-width:680px){
  .content-single-post .entry-content img, .content-single-post .entry-content img.full, .content-single-post .entry-content img.aligncenter, .entry-content img.alignright, .entry-content img.alignleft{width:100%;}
}

/* -- 2g: Flex ----------------------------------------------- */
@media screen and (min-width:681px){
  .flex{display:-webkit-flex;display:flex;flex-wrap:wrap;}
  .flex.center{align-items:center;}
  .flex.stretch{align-items:stretch;}
  .flex.space-between{justify-content:space-between;}
  .flex.space-around{justify-content:space-around;}
  .flex.space-evenly{justify-content:space-evenly;}
}

/* -- 2h: Images --------------------------------------------- */
img{margin:0;width:100%;max-width:100%;height:auto;}
img.left{float:left;margin:0 0.5em 0.5em 0;}
img.right{float:right;margin:0 0 0.5em 0.5em;}

/* -- 2i: Videos --------------------------------------------- */

/* -- 2j: Forms ---------------------------------------------- */
form{position:relative;margin:0 auto;padding:0;max-width:100%;}
form .group{margin:0;padding:0;}
form .col{margin:0 0 0 1.6%;padding:0;}
fieldset{position:relative;margin:0 0 0.75em 0;padding:0.75em;border:1px solid #f1f1f1;background:rgba(255,255,255,0.3);-moz-border-radius:0.1875em;-webkit-border-radius:0.1875em;border-radius:0.1875em;}
legend{position:relative;display:block;margin:0;padding:0.25em 0.75em;border:1px solid #ccc;background:#f5f5f5;-moz-border-radius:0.1875em;-webkit-border-radius:0.1875em;border-radius:0.1875em;}
/*IE ONLY - I know, this is a stop gap*//*.msie fieldset{padding-top:25px;}.msie legend{position:absolute;top:-0.7em;left:10px;}*/
label{position:relative;display:block;margin:0 0 0.3em 0;padding:0;vertical-align:middle;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;zoom:1;}
label.inline{display:inline;/* used next to checkbox and radio box */}
label span{color:#999;font-size:0.9em;}
input,input[type="email"],input[type="number"],input[type="password"],input[type="search"],input[type="tel"],input[type="text"],input[type="url"],input[type="color"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="time"],input[type="week"],textarea,select{position:relative;display:block;margin:0 0 0.75em 0;padding:0.75em;width:100%;height:2.5em;vertical-align:middle;font-size:1em;background:#fff;border:1px solid #ccc;-moz-border-radius:0.1875em;-webkit-border-radius:0.1875em;border-radius:0.1875em;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.06);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.06);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.06);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;zoom:1;}
input::-webkit-input-placeholder,input:-moz-placeholder,.placeholder{color:#bbb;}
input::-moz-focus-inner{border:0;}
input.checkbox,input[type="checkbox"],input.radio,input[type="radio"]{display:inline;margin:0 0.375em 0 0;padding:0;width:auto;height:auto;border:0;background:none;vertical-align:baseline;}
input.file,input[type="file"]{display:block;margin:0;padding:0;width:auto;height:auto;background:transparent;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;border:none;}
select{padding:0.3em;}
select[multiple],textarea{height:auto;}
/* DISABLED */
label.disabled{color:#ccc;}
input[disabled="disabled"],input.disabled{color:#999;background:#f5f5f5;-moz-box-shadow:inset 0 0 2px #ccc;-webkit-box-shadow:inset 0 1px 2px #ccc;box-shadow:inset 0 1px 2px #ccc;}
select[disabled="disabled"],select.disabled{color:#999;background:#f5f5f5;-moz-box-shadow:inset 0 0 2px #ccc;-webkit-box-shadow:inset 0 1px 2px #ccc;box-shadow:inset 0 1px 2px #ccc;}
/* FOCUS STATES */
textarea:focus,input,input[type="email"]:focus,input[type="number"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="text"]:focus,input[type="url"]:focus,input[type="color"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="radio"]:focus,input.radio:focus,input[type="checkbox"]:focus,input.checkbox:focus,input[type="file"]:focus,input.file:focus,select:focus,button:focus{border-color:#477dca;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.06),0 0 1px rgba(55, 112, 192, 0.7);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.06),0 0 1px rgba(55, 112, 192, 0.7);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.06),0 0 1px rgba(55, 112, 192, 0.7);outline:none;}
/* TRANSITION */
textarea,input,input[type="email"],input[type="number"],input[type="password"],input[type="search"],input[type="tel"],input[type="text"],input[type="url"],input[type="color"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="time"],input[type="week"],input[type="radio"],input.radio,input[type="checkbox"],input.checkbox,input[type="file"],input.file,select,button{-moz-transition:-moz-box-shadow 0.25s,border 0.25s,background 0.25s;-webkit-transition:-webkit-box-shadow 0.25s,border 0.25s,background 0.25s;-o-transition:box-shadow 0.25s,border 0.25s,background 0.25s;transition:box-shadow 0.25s,border 0.25s,background 0.25s;}
/* SUBMIT BUTTON */
button, input[type="submit"]{position:relative;display:block;margin:0;padding:0.75em 1.5em;width:auto;font-size:1.15em;font-weight:bold;/*background:#4CAF50;border-color:#388e3c;*/color:#fff;text-decoration:none;/*text-shadow:0 -1px 1px #388e3c,1px 0 1px #388e3c,0 1px 1px #388e3c,-1px 0 1px #388e3c;transition:all 0.25s ease;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;*/vertical-align:middle;white-space:nowrap;-moz-border-radius:0.1875em;-webkit-border-radius:0.1875em;border-radius:0.1875em;}
button:hover{/*background:#5cc661;border-color:#4CAF50;color:#fff;*/text-decoration:none;/*text-shadow:0 -1px 1px #4CAF50,1px 0 1px #4CAF50,0 1px 1px #4CAF50,-1px 0 1px #4CAF50;*/}
/* INLINE FORM // Example: A header search bar */
form.inline label,form.inline input{display:inline-block;width:auto;margin:0 0.5em 0 0;vertical-align:middle;}
form.inline button{display:inline-block;width:auto;margin:0;padding:0.45em 0.45em;vertical-align:middle;}
/* FORM VALIDATION */
label.error{color:red;}
input.error,select.error{border:1px solid red;}
/* NOTICES */
.notice{
border:1px solid gold;
background:lightyellow;
padding:10px 20px 10px 40px;
margin:10px 0;
-moz-border-radius:0.1875em;
-webkit-border-radius:0.1875em;
border-radius:0.1875em;
color:#DEAE00;
line-height:120%;
vertical-align: center;
text-shadow:0px 1px rgba(255,255,255,0.5);
position:relative;
top:0;
left:0;
clear:both;}

	.notice.warning{}/*default*/
	.notice.error{border:1px solid red;background:pink;color:red;}
	.notice.success{border:1px solid green;background:lightgreen;color:green;}
	.notice i.fas{position:absolute;top:50%;left:0.8em;margin-top:-0.6em;}
	.notice a.fa-remove,.notice a.fa-remove:active,.notice a.fa-remove:visited{text-decoration:none;font-size:12px;position:absolute;top:5px;right:5px;color:inherit;margin-top:0;left:auto;}

/* -- 2k: Formatting ----------------------------------------- */
/* Display */
@media screen and (min-width:681px){
  .mobile{display:none;}
  .desktop{display:block;}
}
@media screen and (max-width:680px){
  .mobile{display:block;}
  .desktop{display:none;}
}
/* Positioning */
.clear{clear:both;}
.left{float:left;}
.right{float:right;}
.center{margin-left:auto;margin-right:auto;}
.textleft{text-align:left;}
.textcenter{text-align:center;}
.textright{text-align:right;}
/* Shading */
.shadow{-webkit-box-shadow:0px 2px 8px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0px 2px 8px 2px rgba(0, 0, 0, 0.05);box-shadow:0px 2px 8px 2px rgba(0, 0, 0, 0.05);transition: all 0.3s ease;}
.shadow:hover{-webkit-box-shadow:0px 2px 15px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0px 2px 15px 2px rgba(0, 0, 0, 0.05);box-shadow:0px 2px 15px 2px rgba(0, 0, 0, 0.15);}
.highlight{-webkit-box-shadow:0px 2px 8px 2px rgba(255, 255, 255, 0.05);-moz-box-shadow:0px 2px 8px 2px rgba(255, 255, 255, 0.05);box-shadow:0px 2px 8px 2px rgba(255, 255, 255, 0.05);transition: all 0.3s ease;}
.highlight:hover{-webkit-box-shadow:0px 2px 15px 2px rgba(255, 255, 255, 1);-moz-box-shadow:0px 2px 15px 2px rgba(255, 255, 255, 1);box-shadow:0px 2px 15px 2px rgba(255, 255, 255, 1);}
/* Borders */
.square{border-radius:0;}
.rounded-less{border-radius:4px;}
.rounded{border-radius:8px;}
.rounded-more{border-radius:12px;}
.circle, .widget img.circle{border-radius:50%;}
/* Card */
.card{position:relative;overflow:hidden;padding-bottom:3em;background:rgba(255,255,255,1);border-radius:0.35em;-webkit-box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1);box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1);}
.card.left{min-width:300px;margin-right:1.25em;margin-bottom:1.25em;}
.card figure{position:relative;margin:0;padding:0;}
.card figure img{display:block;object-fit:cover;height:200px;}
.card figure img.short{height:115px;}
.card figure img.tall{height:300px;}
.card .container{padding-bottom:1.5em;}
.card p{font-size:0.95em}
.card h4.fullwidth{margin-left:-1.25em;margin-right:-1.25em;padding-left:1.25em;padding-right:-1.25em;background-color:#f1f1f1;}
.card .more{position:absolute;width:100%;margin-bottom:0;bottom:0;font-size:1.2em;}
.card .more .cta{margin:0;padding-left:0;padding-right:0;text-align:center;border-radius:0;min-width:auto;}
/* Profile Card */
.card figure.profile img{width:180px;height:180px;margin-top:-90px;border:6px solid #fff;background:#fff;-webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.1);-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.1);}
/* Video Card */
.card.video{padding:0;background: rgba(241,241,241,0.35);}
.card.video a{border-bottom:1px solid #ccc;display:block;margin:0;padding:0;position:relative;font-size:3.75em;background:rgba(0,0,0,1);}
.card.video a:before{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);font-family:"Font Awesome 5 Free";font-weight:700;content:"\f144";font-size:135%;color:#fff;opacity:0.75;text-shadow:0px 0px 30px rgba(0, 0, 0, 0.8);transition:all 0.2s ease;z-index:1;}
.card.video a:hover:before{opacity:0.5;font-size:150%;}
.card.video a img{display:block;opacity: 0.8;transition:all 0.3s ease;}
.card.video a:hover img{opacity: 1;}
.card.video .card-text{margin:0 0.5em 0.5em 0.5em;padding:0.55em 0.55em 0 0.55em;min-height:45px;font-size:0.95em;line-height:1.35em;color:#333;}
.card.short-card {
	font-size:1.6rem;
	padding-bottom:.5em !important;
}

.card .card-p {
	font-size:1em !important;
	color:#333;
	padding:0 2em;
	/*margin:0;*/
	/*width:fit-content;
	margin-left:auto;
	margin-right:auto;*/
}

.card hr {
	padding: .2rem;
	color:black;
}


.cta-banner .more{
  /*position: absolute;
  bottom: 2em;
  
  padding-left: 2.75em;
  z-index:1;*/}
.cta-banner .more .cta{
  /*font-size:1.25em;
  background:rgba(0,68,106,0.75);*/}
.cta-banner .interactive-maps .more .cta{
  /*background:rgba(84,185,72,0.75);*/}

/*------------------------------------------------------------ */
/* 3: HEADER */

/* -- 3a: Header --------------------------------------------- */
header{position: relative;width:100%;top:0;background:rgba(255,255,255,1);z-index:1000;}
header .main-header{height:105px;}

/* -- 3b: Header - Sticky ------------------------------------ */
body.has-globalStickyHeader header{position:fixed;}
body.has-globalStickyHeader{padding-top:105px;} /* Same height as header. Add so page content doesn't get covered */
/* alert bar height */
body.has-globalAlertBar.has-globalStickyHeader{padding-top: calc(105px + 53px);} /* Same height as header. Add so page content doesn't get covered */
/* top nav bar height */
body.has-globalTopNav.has-globalStickyHeader{padding-top: calc(105px + 65px);}
/* alert bar height + top nav height */
body.has-globalAlertBar.has-globalTopNav.has-globalStickyHeader{padding-top: calc(105px + 108px);}
/* hide alert from sticky header */
body.no-header header .alert{display: none;}
body.no-header header .globalAlertBarSticky{display: block;}
/* hide top nav from sticky header */
body.no-header header .topnav{display: none;}
body.no-header header .globalTopNavSticky{display: block;}
/* sticky header content */
body.no-header header{font-size:0.8em;-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.35);-moz-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.35);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.35);}
body.no-header header .main-header{height:65px;} /* adjust height to your logo and navigation height */
/* OFFSET ANCHOR LINKS: Anchored text no longer covered by sticky header */
.anchor{position:relative;display:block;width:1px;border:1px solid transparent;/* pure css anchor link offset */
  height:calc(65px + 10px); /* same height as sticky header */
  margin-top: calc(-65px - 10px); /* negative of height */}

/* -- 3c: Alert Bar ------------------------------------------ */
.alert{padding:0.35em 0;font-size:1.1em;text-align:center;}
.alert, .alert.general{color:#fff;background:#75bedb;}
.alert.warning{color:#333;background:#f4d78d;}
.alert.error{color:#fff;background:#ed5f59;}
.alert.success{color:#fff;background:#5cc89d;}
.alert .far, .alert .fas{}
.alert a{font-size:0.9em;}
.alert a:hover{}
.alert.mobile{display:none;}

/* -- 3d: Top Nav Bar ---------------------------------------- */
header .topnav{background-color:#f1f1f1;color:#504e4f;}
header .topnav .col{margin-top:0.5em;margin-bottom:0.5em;}
header .topnav a{margin-left:0.5em;margin-right:0.5em;}

/* -- 3e: Logo ----------------------------------------------- */
.logo, .logo img{-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
body.no-header header .logo img{max-width:200px;}
/* logo round circle */
.logo.round{position:relative;display:block;margin:0;padding:0;border-radius:50%;width:150px;height:150px;vertical-align:middle;text-align:center;}
.logo.round a{position: absolute;top:0;right:0;bottom:0;left:0;}
.logo.round img{position:absolute;width:150px;height:150px;top:50%;left:50%;transform:translate(-50%,-50%);}
body.no-header .logo.round{transform:scale(0.7);}
body.no-header .logo.round img{max-width:auto;}

/*------------------------------------------------------------ */
/* 4: NAV */

/* -- 4a: Nav Menu ------------------------------------------- */
@media screen and (min-width:680px){
  nav{display:block;width:100%;margin:0;padding:0;}
  nav ul{display:table;width:100%;margin:0;padding:0;list-style-type:none;}
  nav li{display:inline;float:left;text-align:left;margin:0;padding:0;}
  nav li > a{position:relative;display:block;padding:0.5em 1em;font-size:1.125em;text-transform:none;color:#1D252D;/* topmenu links */}
  nav li.has-children > a{padding-right:1.75em;}
  nav li:hover > a{color:#006396;}
  nav ul li > ul{display:none;position:absolute;margin:0;padding:0;width:275px;z-index:999;}
  nav ul li:hover > ul{display:block;/* show menu on hover */}
  nav ul li ul > li{position:relative;width:100%;margin:0;padding:0;border-bottom:solid 1px #006396;}
  nav ul li ul li > a{display:block;margin:0;padding:0.75em 3.25em 0.75em 1.25em;font-size:15px;width:100%;/*color:#fff;background-color:#0085CA;*/text-transform:none;/* submenu links */}
  nav ul li ul li:hover > a{color:#fff;background-color:#006396;}
  nav ul li ul li > ul{position:absolute;top:0;left:100%;/* third level menu and so on */}
  nav li > a:after{position:absolute;right:0;width:40px;text-align:center;opacity:0.5;font-family:"Font Awesome 5 Free";font-weight:900;content:"\f0da";-webkit-transition:0.15s linear;-moz-transition:0.15s linear;transition:0.15s linear;transform-origin:50% 50%;/* arrow icon - topmenu */}
  nav li:hover > a:after{-webkit-transform:rotateZ(90deg);-moz-transform:rotateZ(90deg);transform:rotateZ(90deg);/* turn on hover */}
  nav > li > a:after{opacity:0.5;float:right;width:30px;text-align:center;font-family:"Font Awesome 5 Free";font-weight:900;content:"\f0da";-webkit-transition:0.15s linear;-moz-transition:0.15s linear;transition:0.15s linear;transform-origin:50% 50%;/* arrow icon - submenus */}
  nav > li:hover > a:after{-webkit-transform:rotateZ(90deg);-moz-transform:rotateZ(90deg);transform:rotateZ(90deg);/* turn on hover */}
  nav li > a:only-child:after{display:none;content:'';/* no arrow icon when no submenu */}
  nav ul li ul li > a:only-child{display:block;padding:0.75em 1.25em;}
}

/* -- 4b: Nav Menu - Position -------------------------------- */
nav.center ul.nav{width:auto;margin:0 auto;/* center */}
nav.right ul.nav{width:auto;float:right;/* right */}

/* -- 4c: Nav Menu - Full Background ------------------------- */
.navfull{background-color:#6CC24A;}
.navfull .container{padding:0;}
.navfull nav li > a{padding-top:0.75em;padding-bottom:0.75em;color:#fff;/* topmenu links */}
.navfull nav li:hover > a{color:#fff;background-color:#0085CA;}
.navfull nav ul li ul li:hover > a{color:#fff;background-color:#006396;}

/* -- 4d: Mobile Nav Menu ------------------------------------ */
.mean-container a.meanmenu-reveal{/*top:;color:;*/}
.mean-container a.meanmenu-reveal span{/*color:;background:;*/}
.mean-container .mean-bar{/*background:;*/}
.mean-container .mean-nav{/*background:;*/}

.mean-container .mean-nav ul li{padding:0;}
.mean-container .mean-nav ul li a{font-weight:bold;/*color:;*/}
.mean-container .mean-nav ul li a.cta{border-radius:0;}

.mean-container .mean-nav ul li.highlight{display:flex;float:none;margin:0.5em auto;width:90%;border-radius:2em;}
.mean-container .mean-nav ul li.highlight a.cta{text-align:center;font-size:1.25em;border-radius:2em;border:0;}

.mean-container .mean-nav ul li.social a{padding:0.5em 0;text-align:center;color:#fff;font-size:2em;font-weight:normal;}
.mean-container .mean-nav ul li.span12 a{width:100%;}
.mean-container .mean-nav ul li.span6 a{width:50%;}
.mean-container .mean-nav ul li.span4 a{width:33.3%;}
.mean-container .mean-nav ul li.span3 a{width:25%;}
.mean-container .mean-nav ul li.five a{width:20%;}

/* -- 4e: Mobile MeanMenu - See /scripts/meanmenu/meanmenu.css */

.mobmenu-content{
  font-family: 'Aleo', serif;}

.mobmenu-content li.social {
    display: inline-block;
    text-align: center;
    width: 50%;}

#mobmenuleft li.cta.secondary a,
#mobmenuleft li.cta.contact a{
  color:#000 !important;}

/*------------------------------------------------------------ */
/* 5: BODY/CONTENT */

/* -- 5a: Breadcrumbs ---------------------------------------- */
section.breadcrumbs{padding:0;color:#333;background-color:#f9f9f9;}
section.breadcrumbs ul{display:inline-block;list-style-type:none;position:relative;margin:0.5em 0;padding:0;font-size:0.85em;}
section.breadcrumbs ul li{position:relative;display:inline-block;}
section.breadcrumbs ul li:after{opacity:0.15;padding:0 0.5em;color:#333;font-family:"Font Awesome 5 Free";font-weight:900;content:" \f0da";}
section.breadcrumbs ul li:last-child:after{content:"";}
section.breadcrumbs ul a{color:#1D252D;}
section.breadcrumbs ul a:hover{color:#777777;}

/* -- 5b: Homepage ------------------------------------------- */

/* -- 5c: Interior ------------------------------------------- */
section{position:relative;}
/*#main-content section:nth-child(even){background-color:#f1f1f1;}*//* color background for every other section in q_guide sample page */
section#example h2:first-child{border-bottom:2px solid #ccc;padding-bottom: 0.25em;}

/*------------------------------------------------------------ */
/* 6: SIDEBAR */

/* -- 6a: Aside ---------------------------------------------- */

/*------------------------------------------------------------ */
/* 7: FOOTER */

/* -- 7a: Footer Content ------------------------------------- */
footer{margin:0;padding:0;background:rgba(0,0,0,0.05)}
footer section, footer .footer-content{padding:0.35em 0;color:#333;}
footer a{}
footer a:hover{}

/* -- 7b: Copyright ------------------------------------------ */
footer .copyright{padding:1.25em 0;color:#fff;background:rgba(0,0,0,0.3);}
footer .copyright a{color:#fff;}
footer .copyright a:hover{color:#eee;}

/* -- 7c: Return to Top Button ------------------------------- */
#return-to-top{display:none;position:fixed;bottom:1em;left:1em;width:50px;height:50px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;background:rgba(0,0,0,0.35);text-decoration:none;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;transition:all 0.3s ease;z-index:1000;}
#return-to-top i{color:#fff;position:absolute;top:50%;left:50%;transform:translate(-50%,-55%);font-size:1.15em;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;transition:all 0.3s ease;}
#return-to-top:hover{background:rgba(0,0,0,0.75);}
#return-to-top:hover i{transform:translate(-50%,-80%);}

@media screen and (max-width: 680px){
  #return-to-top{
    bottom:90px;
    left:10px;}
}
/* -- 7d: Google Recaptcha Badge ----------------------------- */
.grecaptcha-badge {z-index:999999;}/* Invisible Recaptcha */

/*------------------------------------------------------------ */
/* 8: ANIMATION/FX */

/* -- 8a: Grid Effects --------------------------------------- */

/* -- 8b: Owl Carousel --------------------------------------- */
.owl-carousel .owl-stage {margin: 0 auto;}
.owl-theme .owl-nav [class*=owl-]{
  background: rgba(0, 0, 0, 0.4) !important;}
.owl-theme .owl-nav [class*=owl-]:hover{
  background: rgba(0, 0, 0, 0.6) !important;}
.owl-prev, .owl-next{
  position: absolute;
  top: 40%;
    margin: 0 !important;
    width:auto;
    border-radius:12px !important;}
.owl-prev{left:0;border-top-left-radius:0 !important;border-bottom-left-radius:0 !important;}
.owl-next{right:0;border-top-right-radius:0 !important;border-bottom-right-radius:0 !important;}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{/*box-shadow: none;*/}
.owl-carousel .owl-nav button.owl-next .fa, .owl-carousel .owl-nav button.owl-prev .fa {
  padding: 0.8em 0.5em;
  font-size: 1.5em;
  color: #fff;}
.owl-theme .owl-nav .disabled{opacity: 0 !important;}
.owl-carousel article {
	padding:0;
	margin:0;
}
.owl-carousel {
	/*margin-bottom: 3rem;*/
}

/* -- 8c: Parallax Images - Using Simple Parallax JS --------- */
.parallax-banner{position:relative;margin:0;padding:0;width:100%;/*overflow:hidden;*/}
.parallax-banner .overlay{position:absolute;width:100%;height:100%;background:rgba(0,0,0,0);}
.parallax-banner .simpleParallax{position:absolute;width:100%;height:100%; /* this div is dynamically added by the SimpleParallax script */}
.parallax-banner img.parallax{position:absolute;height:100%;object-fit:cover;/*max-width:100%;height:auto;*/}
.parallax-banner .container{padding:4em 1em;color:#fff;text-shadow:2px 2px 2px rgba(0,0,0,0.15);}
.parallax-banner h1{margin-top:0;}
.parallax-banner h1, .parallax-banner h2, .parallax-banner p{color:#fff;}
  /* WP Enhancement */
  .site-content .parallax-banner h1, .site-content .parallax-banner h2, .site-content .parallax-banner h3, .site-content .parallax-banner h4, .site-content .parallax-banner h5, .site-content .parallax-banner h6{color:#fff;}
.parallax-banner .container .more{margin-top:3em;}
.parallax-banner .container .cta{font-size:1.5em;text-shadow:none;}

/* -- 8d: Animate.css - See /styles/animate/animate.css ------ */

/*------------------------------------------------------------ */
/* 9: RESPONSIVE */
/*@media screen and (max-width:2560px){ /* 4K */
  /*.container{max-width:1440px;}
}

@media screen and (max-width:1440px){ /* Laptop L */
  /*.container{max-width:1440px;}
}

@media screen and (max-width:1024px){ /* Laptop */
  /*.container{max-width:1024px;}
}

@media screen and (max-width:768px){ /* Tablet */
  /*.container{max-width:768px;}
}

@media screen and (max-width:425px){ /* Mobile L */
  /*.container{max-width:425px;}
}

@media screen and (max-width:375px){ /* Mobile M */
  /*.container{max-width:375px;}
}

@media screen and (max-width:320px){ /* Mobile S */
  /*.container{max-width:320px;}
}*/

@media screen and (max-width:680px){
  body.has-globalTopNav.has-globalStickyHeader{padding-top:0;}
  body.has-globalStickyHeader header{position: absolute;background:transparent;}
  header .main-header{height:auto;width:170px;margin:0 auto;}
  header .topnav{display:none;}
  header .logo{max-width:315px;position:absolute;margin:0 auto;}
  .no-js .owl-carousel, .owl-carousel.owl-loaded{display: inline-block !important; /* fixes issue with slider underneath an open MeanMenu on mobile */ }
}

/*------------------------------------------------------------ */
/* 10: CMS */

/*------------------------------------------------------------ */
/* 10a: QDYNAMO */

/* -- QD1: HEADER -------------------------------------------- */

/* -- QD2: NAV ----------------------------------------------- */

/* -- QD3: BODY/CONTENT -------------------------------------- */

/* -- QD4: SIDEBAR ------------------------------------------- */

/* -- QD5: FOOTER -------------------------------------------- */

/* -- QD6: MODULES ------------------------------------------- */

/* -- QD6a: Popups ------------------------------------------- */
/* -- Defaults -- */
.popup-container{display:none;position:fixed;text-align:center;z-index:999999;}
.popup-content{background:#fff;border-radius:25px;padding:15px;position:relative;-webkit-box-shadow:0 0 15px 0 rgb(0 0 0 / 15%);-moz-box-shadow:0 0 15px 0 rgba(0,0,0,0.15);box-shadow:0 0 15px 0 rgb(0 0 0 / 15%);}
.popup-msg{font-size:1.25em;font-weight:bold;color:#000;}
.popup-content button, .popup-content .cta{width:100%;}
/* -- Type  -- */
/* overlay */
.popup-container.type-overlay{text-align:center;width:100%;height:100%;top:0;left:0;}
.popup-container.type-overlay .popup-overlay{position:fixed;width:100%;height:100%;background:#000;opacity:0.45;overflow:hidden;}
.popup-container.type-overlay .popup-content{position:absolute;width:100%;max-width:550px;}
/* notice */
.popup-container.type-notice{text-align:center;width:300px;height:auto;}
.popup-container.type-notice .popup-content{max-width:100%;}
/* -- Position -- */
/* left */
.popup-container.type-overlay.left .popup-content{left:10px;}
.popup-container.type-notice.left{left:10px;}
/* center */
.popup-container.type-overlay.center .popup-content{left:50%;right:50%;margin-left:-275px;}
.popup-container.type-notice.center{left:50%;right:50%;margin-left:-150px;}
/* right */
.popup-container.type-overlay.right .popup-content{right:10px;}
.popup-container.type-notice.right{right:10px;}
/* top */
.popup-container.type-overlay.top .popup-content{top:10px;}
.popup-container.type-notice.top{top:10px;}
/* bottom */
.popup-container.type-overlay.bottom .popup-content{bottom:10px;}
.popup-container.type-notice.bottom{bottom:10px;}
/* middle */
.popup-container.type-overlay.middle .popup-content{top:25%;}
.popup-container.type-notice.middle{top:25%;}

/*------------------------------------------------------------ */
/* 10b: WORDPRESS */

/* -- WP1: HEADER -------------------------------------------- */
/*.site-header{display:none;}
@media screen and (min-width:980px){
  .site-header{display: block;}
}*/

/* -- WP2: NAV ----------------------------------------------- */
.primary-menu .mobile{display: none;}

/* -- WP3: BODY/CONTENT -------------------------------------- */
.site-content header{z-index:inherit;}
.cta:hover, .site-content .cta:hover{text-decoration:none;}

/* archive date */

/* archive date tag */
.date.date-tag{
  position:absolute;
  top:0;
  left:0;
  margin:0;
  padding:0.5em 1.25em;
  color:#fff;
  line-height:1.5em;
  background:rgba(0,0,0,0.45);
  z-index:2;}
.date.date-tag .date-month{
  font-size:0.9em;}
.date.date-tag .date-day{
  display:block;
  font-size:2em;
  font-weight:bold;}
.date.date-tag .date-year{
  font-size:0.9em;}

/* -- WP4: SIDEBAR ------------------------------------------- */
/* blog archive - full width */
.right-sidebar .content, .right-sidebar .content-archive{float:none !important;}
.has-sidebar .content, .has-sidebar .content-archive{width:100% !important;}

/* -- WP5: FOOTER -------------------------------------------- */

/* -- WP6: PLUGINS ------------------------------------------- */

/* -- WP6a: Breadcrumbs NavXT -------------------------------- */

/* -- WP6b: Sticky Header by ThematoSoup --------------------- */
#thsp-sticky-header{z-index:9998;}
#thsp-sticky-header .mobile{display:none;}
#thsp-sticky-header .social{display:inline-block;}
#thsp-sticky-header ul li a,#thsp-sticky-header ul li.cta{transition: all 0.3s ease;}

/* -- WP6c: W2DC Directory ----------------------------------- */

/* search */
.w2dc-content.w2dc-search-form{
  background:rgba(0,68,106,1) !important;}

.w2dc-search-form{
  border:0;
  border-radius:0.35em;}

/* listings */
.w2dc-listings-block .w2dc-listing{
  margin-bottom:1.75em;}

.w2dc-listings-block .w2dc-listing div, .w2dc-listings-block .card.w2dc-listing div{
  padding-left:1.25em;
  padding-right:1.25em;}

/* listing levels */

.w2dc-listings-block .w2dc-listing.w2dc-listing-level-2 .w2dc-featured-label,
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-3 .w2dc-featured-label,
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-4 .w2dc-featured-label{
  display:none;}

/* platinum */
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-2{
  border:3px solid #1da3c9;}
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-2:before{
  content:'Platinum';
  position:absolute;
  top:0;
  left:0;
  display:block;
  margin:0;
  padding:0.25em 0.8em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size:1em;
  font-weight:800;
  text-transform:uppercase;
  border-radius:2px;
  border-bottom-right-radius:8px;
  color:#fff;
  background:#1da3c9;
  z-index:1;}

/* gold */
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-3{
  border:3px solid gold;}
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-3:before{
  content:'Gold';
  position:absolute;
  top:0;
  left:0;
  display:block;
  margin:0;
  padding:0.25em 0.8em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size:1em;
  font-weight:800;
  text-transform:uppercase;
  border-radius:2px;
  border-bottom-right-radius:8px;
  color:#fff;
  background:gold;
  z-index:1;}

/* silver */
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-4{
  border:3px solid silver;}
.w2dc-listings-block .w2dc-listing.w2dc-listing-level-4:before{
  content:'Silver';
  position:absolute;
  top:0;
  left:0;
  display:block;
  margin:0;
  padding:0.25em 0.8em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size:1em;
  font-weight:800;
  text-transform:uppercase;
  border-radius:2px;
  border-bottom-right-radius:8px;
  color:#fff;
  background:silver;
  z-index:1;}

/* single listing */
ul.w2dc-listing-tabs.w2dc-nav{
  margin-top:0;}

/* tags */
.w2dc-content .w2dc-category-label, .w2dc-content .w2dc-tag-label{
  border:0;
  border-radius:8px;}


/* extras */

header #currentpage {border-bottom: solid 2px #333;}
header #currentpage a {color:#333;}
header .top-nav #currentpage {border-bottom: solid 2px #ccc;}
header .top-nav #currentpage a {color:#ccc;}
header nav ul li#currentpage ul li a {
   width: 230px;
   color:#fff;}
header nav ul li#currentpage ul li a:hover {
   color:#5eb6e4;}
.mean-container .mean-nav ul li .fa{
   display: none;}

/*------------------------------------------------------------ */
/* 11: CUSTOM CSS */

/* fixes smooth scrolling issue on mobile */
body{-webkit-overflow-scrolling:touch !important;}
@media only screen and (max-width:980px){
   html, body{
      overflow-x:auto !important;
      -webkit-overflow-scrolling:touch !important;
      overflow-y:auto !important;}
}
/* accessibility enhancement */
:focus{
   outline:3px solid #c1e0fe;
   outline:3px solid rgba(131,192,253,0.5);
   outline-offset:1px;}

/* HEADER */

/* notification bar */
.admin-bar .mtsnb.mtsnb-fixed.mtsnb-top, #wp-toolbar .mtsnb.mtsnb-fixed.mtsnb-top{
   z-index:99999 !important;}
.mtsnb .mtsnb-button{
   font-size:14px;
   font-weight: bold;
   border-radius: 20px;}

.site-header.site-header-main {
  background-color: #fff;}
.logo{
    /*position: relative;*/
    position: absolute;
    padding: 0 0 !important;}
.logo img{width:100%;}
.mobile-menu-trigger-container, .ham-menu-trigger-container,
.mobile-menu-trigger-stick, .ham-menu-trigger-stick {
   width: 3rem;}
.mobile-menu-trigger-container:after{
   content: "MENU";
   font-size: 0.6em;}
.mobile-menu-trigger{
   width: auto;}
.mobile-menu-trigger, .ham-menu-trigger{
   vertical-align: top;}

#mobmenuleft li.desktop{
   display: none;}
.mobmenu-content li.cta{
  display:block;
  width:90%;
  margin:0.5em 5%;
  padding:0;
  text-align:center;}
#mobmenuleft li.cta a{
   padding:0.15em 0;
   /*font-family:"Work Sans", sans-serif;*/
   text-transform:uppercase;
   font-size:1.5em !important;
   font-weight:bold;}
/*.mobmenu-content li.subscribe-cta{
   background-color:#593586;}
.mobmenu-content li.donate-cta{
   background-color:#2a6db7;}
.mobmenu-content li.phone{
   background-color:#1c536f;}
.mobmenu-content li.social{
   display: inline-block;
   text-align: center;
   width: 25%;}
.mobmenu-content li.social .fab{
   font-size:2em;}*/

.mob-standard-logo{ /* ROB ADDED */
  margin-top:0;
  width:auto;
  max-height:65px;}

@media only screen and (max-width: 980px){
  .mobmenul-container{
    top:0 !important;}
}

nav li:hover > a{
  color:#ff0000;
}

.primary-menu > li > .sub-menu{
  background:transparent;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

.primary-menu .sub-menu{
  width:275px;}

/*.primary-menu .sub-menu li:first-child a{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;}
.primary-menu .sub-menu li:last-child a{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;}*/

.primary-menu .sub-menu li a{
  font-weight:bold;
  font-size: 1.15em;
  text-transform: uppercase;}
.primary-menu > li > .sub-menu {
   border-top-color: transparent !important;}

.primary-menu > li.cta{
  transition: all 400ms ease;
  text-align: center;
  margin-top: -6px;
/*  padding: 0.5em 1.25em;*/
}

.primary-menu > li.cta.outline{
  padding:0;
  transition: all 400ms ease;
  text-align: center;
  margin-top: -9px;
/*  padding: 0.5em 1.25em;*/
}

.primary-menu > li.subscribe-cta{
   margin:0 0 0 0.35em;
   background-color:#593586;}
.primary-menu > li.subscribe-cta:hover{
   background-color:#d61a1a;}

.primary-menu > li.donate-cta{
   margin:0 0 0 0.35em;
   background-color:#2a6db7;}
.primary-menu > li.donate-cta:hover{
   background-color:#d61a1a;}

.primary-menu > li.cta > a{padding:0 0.35em;color:#000 !important;font-weight:900;}
.primary-menu > li.cta > a:hover{color:#000 !important;}

.primary-menu > li.cta.outline{border:0;}

.primary-menu > li.cta.outline > a{padding:0.35em 1.15em;color:var(--clr--primary--lightblue) !important; border:3px solid; border-color:var(--clr--primary--lightblue); border-radius:2em; background:#fff;}
.primary-menu > li.cta.outline > a:hover{color:#d30027 !important; background:#fff; border-color:#d30027;}

.primary-menu > li.cta.secondary.outline > a{padding:0.3em 1.125em;color:var(--clr--primary--darkblue) !important;}
.primary-menu > li.cta.secondary.outline > a:hover{color:#fff !important;}

.primary-menu > li.cta.secondary > a{padding:0 0 0 0.35em;}
.primary-menu > li.cta i{margin-left:0.15em;}

.primary-menu > .menu-item-has-children > a{padding-right:1.25em;}

.mobmenu{z-index: 9997 !important;}

@media screen and (min-width: 10em){
   .site-header.no-fixed-header{
      position: relative !important;}
}
@media screen and (min-width: 650px) {
   .site-header.no-fixed-header{
      /*position: absolute !important;}*/
      -moz-box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
      -webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
      box-shadow: 0px 1px 4px rgba(0,0,0,0.2);}
}

/* NAV */
#nav-primary{padding: 2em 0;}

.primary-menu > li{
  margin: 0 0 0 1.1em;}
.primary-menu > li > a{
  padding: 0 0.5em;
  font-size: 1.1em !important;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.35em;
  -webkit-font-smoothing: antialiased;}
.primary-menu > .menu-item-has-children > a:after{ /* Font Awesome update */
   font-family: 'Font Awesome 5 Free';
  content: "\f054";
  font-weight: 900;
  width:18px;}
.primary-menu > li > .sub-menu{
   border-top-width:5px !important;}

@media (max-width: 780px){
   .site-content .content h2{ /* fix space below content images on mobile */
      margin-top:0;}
}

@media screen and (max-width: 980px){
    .mtsnb {
      position: fixed !important;
      top: 60px;
      z-index: 999;}
    .site-content {padding-top: 5% !important;}
}
@media screen and (max-width: 768px){
  .site-content {padding-top: 7.5% !important;}
}
@media screen and (max-width: 500px){
  .site-content {margin-top: 14%;}
  .mtsnb{
    padding-top: 4%;
    top: 55px;}
  .site-content {padding-top: 0 !important;}
}

@media screen and (min-width: 48em){
   .site-content {padding:0;}
   .entry-content .panel-grid:first-of-type .siteorigin-panels-stretch {margin-top:0;}
}

@media screen and (min-width: 10em){
    .site-content{padding:0;}
}

@media only screen and (max-width: 980px){
    body{padding-top:0 !important;}
}

/* article pagination */
.pagination{
  display:inline-block;
  clear:both;
  margin-top:1em;
  padding:0.5em;
  background:#f1f1f1;
  border-radius:0.5em;}
.pagination .nav-links{
  text-align:center;}
.pagination .page-numbers{
  margin: 0 0.125em;
  border:2px solid;
  border-radius:0.45em;}
.pagination .page-numbers.prev{
  position:absolute;
  left:0;
  margin: 0 0.25em;
  padding: 0.45em 0.5em;}
.pagination .page-numbers.next{
  position:absolute;
  right:0;
  margin: 0 0.25em;
  padding: 0.45em 0.5em;}

/* RESPONSIVE */
@media screen and (max-width: 1480px){
  .primary-menu > li{
    margin-left:0.5em;
    font-size:0.95em;}
}

@media screen and (max-width: 1380px){
  .primary-menu > li{
    margin-left:0.5em;
    font-size:0.95em;}
}

@media screen and (max-width: 1280px){
  .primary-menu > li{
    margin-left:0.25em;
    font-size:0.95em;}
}

@media screen and (max-width: 1180px){
  .primary-menu > li{
    margin-left:0.25em;
    font-size:0.9em;}
}

@media screen and (max-width: 1080px){
  .primary-menu > li{
    margin-left:0.25em;
    font-size:0.9em;}
}

/* ROB CSS CUSTOMIZATIONS */

/* typography */
h1, h2, h3, h4, h5, h6{
  clear:none;
  font-family: 'Aleo', serif;
  font-style: normal;
  font-optical-sizing: auto;}
h1, h2, h4, h6{
  /*text-transform:uppercase;*/
}

.site-content a {
	color:#010ab8 !important;
	transform: color 450ms ease;
}

.site-content a:hover {
	color:#505ac7 !important;
}

.site-content .content h2{
  clear: none;
  font-weight: bold;
  font-size: 2.5em;
  /*text-transform: uppercase;*/
  /*letter-spacing: 0.05em;*/
  color:#545454;}

/*.site-content .content h3{
  font-size: 2.75em;
  font-weight: bold;
  line-height: 1.25em;}*/

.site-content .content h4{
  font-weight: bold;
  font-family: 'Aleo', serif;
  font-size: 1.5em;
  line-height: 1.35em;
  text-transform: none;}

.site-content .content h5{
  font-weight: bold;
  font-size:1.35em;}

.site-content .content p{
   font-size: 1.15em;
   line-height: 1.65em;}
.entry-content ul li, .entry-content ol li, .entry-content .so-widget-sow-editor ul li, .entry-content .so-widget-sow-editor ol li{
   font-size: 1.15em;
   /*line-height: 1.45em;*/}

.entry-content ul li li, .entry-content ol li li, .entry-content .so-widget-sow-editor ul li li, .entry-content .so-widget-sow-editor ol li li{
   font-size: 1em;
   line-height: 1.25em;}

blockquote:before{
  display: block;
  margin: 1em auto 0 auto;
  padding: 0.5em;
  content: '';
  border-top: 2px solid #008c99;
  width: 10%;}
blockquote{
  margin-left:auto;
  margin-right:auto;
  max-width:1000px;
  text-align:center;
  /*font-family: Cinzel, Arial, sans-serif;*/
  color:#008c99;
  border-left:0;}
blockquote q{
  color:#196f7d;}
blockquote cite{
  font-size: 0.85em;
  font-weight: bold;}

.site-content .entry-content{
  margin:0;
  padding:2em 0;}

/* cta */
.cta{background-color:#010ab8;color:#ffffff;font-family: 'Aleo', serif;border-radius:2em; text-transform: uppercase; text-align: center;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 800;}
.site-content .cta{color:#fff !important; margin-top:0.25em; margin-bottom: 0.25em;}
.cta:hover{background-color:#505ac7;color:#ffffff;}
.site-content .cta:hover{color:#fff !important;}
.cta.outline{background-color:transparent;border:3px solid #fff;color:#fff !important;}
.cta.outline:hover{border:3px solid #fbe06d;background:transparent;color:#fbe06d !important;}
/* Secondary color */
.cta.secondary{background-color:#fbe06d;color:#000 !important;}
.cta.secondary:hover{background-color:#ffdb4d;color:#000 !important;}
.cta.outline.secondary{padding:0.3em 1.125em;background-color:transparent;border:3px solid var(--clr--primary--darkblue);color:var(--clr--primary--darkblue);}
.cta.outline.secondary:hover{border:3px solid var(--clr--primary--darkblue);background:var(--clr--primary--darkblue);color:#fff;}
/* Tertiary color */
.cta.tertiary{background-color:#bd1913;color:#fff !important;}
.cta.tertiary:hover{background-color:var(--clr--primary--darkblue--d1);color:#fff;}
.cta.outline.tertiary{padding:0.3em 1.125em;background-color:transparent;border:3px solid var(--clr--bottle--green);color:white;}
.cta.outline.tertiary:hover{border:3px solid var(--clr--primary--darkblue);color:var(--clr--jet);}
/* Contact color */
.cta.contact{background-color:#fdcc00;color:#000 !important;}
.cta.contact:hover{background-color:#ffdb4d;color:#000 !important;}
.cta.outline.contact{padding:0.3em 1.125em;background-color:transparent;border:3px solid var(--clr--primary--lightblue);color:var(--clr--primary--lightblue);}
.cta.outline.contact:hover{background:var(--clr--primary--lightblue); color:#ffffff;}

/* 2k: Formatting */
article.card{
  margin-bottom:1em; /* WP OVERRIDE */
  padding-left:0; /* WP OVERRIDE */
  /*border-radius:6px;*/
  border-radius: 2em;
  /*border-top-left-radius:30px;*/}
/*article.card figure.profile img.circle{
  border-bottom-left-radius:0;
  border-bottom-right-radius:0;}*/
article.card .more .cta{
  padding:0.8em;}

.card .more{
  padding: 0 1em 1em 1em;}
.card .more .cta{
  border-radius:2em;}

.accent{
  /*border-radius:0;
  border-top-left-radius:30px;
  background-color:#e4fcfd;
  padding:1em 2em;
  color:#333;*/
  background: #f7f7f7;
  background: rgba(247,247,247,0.75);
  border: 1px solid #ddd;
  border-radius: 12px;
  /*margin: 0 0 0.75em 0;*/
  padding: 1.25em 2em 2em 2em;
  transition:all 0.3s ease !important;}

.accent:hover{
  /*background:#fafafa;*/
  background:#f6fcfe;
  -webkit-box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 25%);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.25);
  box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 25%);
  transform: scale(1.0125);}

.accent.features i{
  float:left;
  margin-top:-0.25em;
  font-size:2em;
  vertical-align:middle;
  color:#2c6aa3;
  margin-left:-1em;
  margin-right:0.25em;
  background:#fff;
  border-radius:2em;
  padding:0.15em;}
.accent h4 strong, .accent h4 a{
  /*font-family: 'Open Sans', BenchNine, Arial, sans-serif;*/
  /*font-size: 1.6em;*/
  /*text-transform: uppercase;*/
  /*color: #0098DB;*/}

/* HEADER */

#thsp-sticky-header-title img{height: 35px;}
#thsp-sticky-header li{
  font-size:1em;
  font-weight:bold;}
#thsp-sticky-header li a{line-height:1em;}
#thsp-sticky-header li.cta a{color:#000 !important;}
#thsp-sticky-header li a:hover{color:#00aeef !important;}
#thsp-sticky-header li.cta a:hover{color:#000 !important;}
#thsp-sticky-header li.cta.outline a {padding: 0 .5rem;}

/*.topnav{display:none;}*/

@media screen and (min-width: 64em){
  .logo img{
    max-width:225px;
    margin-top:0;
    padding:1em;}
}

#nav-primary{padding: 3em 0;}

.secondary-menu{
  padding-top:0;}
.secondary-menu .cta{
  font-size: 1em;
  border-top-left-radius:0;
  border-top-right-radius:0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;}

.secondary-menu form button.cta{
  border-style: solid;
  border: 0;
  cursor: pointer;
}

/* 5: BODY/CONTENT */

/* homepage */

body.home .site-content .entry-content{
  padding-top:0;}

body.home .card-single .container{
  min-height: 500px;}

/* interior */

h1{color:#0046AD;}

/*.site-content .content h3{
  color: #0098DB;}*/
h3 span{color:var(--clr--primary--lightblue);}
/*h3 span.blue{color:var(--clr--primary--darkblue);}*/

.bg-dark{
  padding:3em 0;
  color:#fff;
  background:#0046AD;}
.bg-dark h3 span{
  display: block;
  color:#fff;}

.bg-dark a{
  color:#EAAB00 !important}
.bg-dark a.cta{
  color:#fff !important}

.bg-light{
  padding:3em 0;
  background:#69cad3;}
.bg-light h3, .site-content .content .bg-light h3{
  color:#0046AD;}
.bg-light h3 span{
  display: block;
  color:#fff;}

.overlay-banner{
  color:#fff;}
.overlay-banner h2{
  color:#fff !important;}
.overlay-banner h4{
  color:#fff !important;}
.overlay-banner p{
  color:#fff;}
.overlay-banner .accent{
  padding:0.25em 0.5em 0.75em 0.5em;
  border:2px solid #fff;}
.overlay-banner .accent h4{
  font-size:1.15em;
  font-weight: bold;
  color:#000 !important;}

.cta-banner{
  /*background:#caafd3;*/
  /*background:#ede4f0;*/
  color:#fff !important;}
.cta-banner h2{
  font-size:2.5em;
  font-weight:bold;
  line-height:1.25em;
  color:#fff;}
.cta-banner h2 span{color:#824BB0;}
.cta-banner .textwidget{
  /* margin:0 auto;
  padding:2em; */
  /*max-width:500px;*/}
.cta-banner p{
  font-size:1.15em;
  line-height:1.55em;
  color:#fff !important;}
.cta-banner .more{margin-top:1.5em;}
.cta-banner .cta{text-align:center;}
.cta-banner img{
  /*border-top-left-radius:75px;*/
  border-radius:0 !important;
  object-fit:cover;
  height:500px !important;
  max-height:500px !important;}
.cta-banner .parallax-banner{
  height:325px;
  overflow: hidden;}
.cta-banner .parallax-banner .container{
  padding:3em;}

/* -- 5a: Breadcrumbs ---------------------------------------- */
section.breadcrumbs{background:transparent;}
section.breadcrumbs ul{/*padding:0.25em 3em;*/font-size:1em;}
section.breadcrumbs i{padding:0 0.35em;opacity:0.15;}

/* Bios */
/*article.card.bio{
  border-top:8px solid #000;
  padding:1em;}
article.card.bio .designation p{
  margin-bottom:0.5em;
  color:#ce2027;
  fonts-size:1.25em;
  font-weight:bold;
  text-transform:uppercase;}
article.card.bio h4{
  margin-bottom:0.15em;}
article.card.bio .excerpt, article.card.bio .excerpt p{
  margin-top:0.15em;
  font-size:1.05em;
  font-weight:normal;
  font-style:italic;}*/

/* Contact */
.accent.contact{
  background:rgba(125,131,147,0.1);
  border:1px solid #c0c3ca;}
  
.icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.15em auto;
  padding: 0;
  width: 45px;
  height: 45px;
  font-size: 0.7em;
  /*border: 2px solid #545454;*/
  /*border: 2px solid #333333;*/
  border: 2px solid #fff;
  /*background: rgba(0,0,0,0.1);*/
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;}
.icon:hover{
  /*border-bottom: 2px solid;*/
  border: 2px solid #fff;
  /*border-color: #d30027;*/
	/*border-color: var(--clr--primary--lightblue);*/
  /*font-size: 0.9em;*/
  transform: scale(1.1);}
  
.icon i{
  padding:0.25em;
  font-size:1.8em;
  /*color:#545454;*/
  color: #fdcc00;}

.icon.num{
  font-size:1.8em;
  font-weight:bold;}

.overlay-banner,
.overlay-banner p,
.overlay-banner h5{
  color:#fff !important;}
.overlay-banner h2{
  font-size:3.5em !important;
  color:#fbe06d !important;
  text-transform: uppercase;}
.overlay-banner .icon{
  font-size:1.25em;
  border:0;
  background:transparent;}

footer .icon{
  background:rgba(255,255,255,0.5);
  border:2px solid #bd1913;}
footer .icon i{
  color:#bd1913;}
footer .icon:hover{
  border:2px solid #ff0000;}

footer .social{
  display:block;
  margin-top:0.5em;
  margin-bottom:0.5em;}
footer .social a.social-icon{
  margin:0.15em;}
footer .social a.fb-icon{
  margin-left:1em;}
footer .social .fa, footer .social .far, footer .social .fas, footer .social .fab{
  /*border: 2px solid;*/
  /*margin:0.2em;
  background:rgba(79,79,81,1);
  border-radius: 2em;
  width: 65px;
  height: 35px;
  text-align: center;
  vertical-align: middle;
  font-size:1.8em;
  font-weight:normal;
  color:#fff;
  padding-top: 6px;
  transition: all 0.4s ease;*/}
footer .social a:hover .fa, footer .social a:hover .far, footer .social a:hover .fas, footer .social a:hover .fab{
  /*background:rgba(206,32,39,1);*/
	/*background:var(--clr--primary--lightblue);*/
}

/* FOOTER */

.stats h3{
  margin-top:1em;
  font-size:1.6em;}
.stats h3 span{
  float: left;
  margin-top: -0.5em;
  margin-right: 0.5em;
  padding: 0.5em 0 0 0;
  height: 180px;
  width: 180px;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  color: #0046AD;
  vertical-align: middle;
  background: #63CECA;
  border-top:8px solid #0046AD;
  border-top-left-radius: 30px;}
.stats.stats1 h3 span{
  color: #fff;
  background: #0046AD;
  border-top:8px solid #63CECA;}
.stats.stats2 h3 span{
  color: #0046AD;
  background: #EAAB00;
  border-top:8px solid #0046AD;}

@media screen and (max-width:680px){
  .stats h3{
    font-size:1.2em;}
}

.sidebar-footer{
  padding-top:2.5em;
  padding-bottom:2.5em;}
.site-footer p{
  font-size:1.15em;
  line-height:1.35em;
  color:#fff;}
.site-footer a{
  font-weight:bold;}
.site-footer a:hover{
	/*color:#ff0000;*/
  color:#fbe06d;
  border-bottom:0;}

.bottom-footer a:hover{
  color:#ffdb4d;
  border-bottom:0;}

.footer-logo img{
  margin-top:-2.5em;
  /*max-width:200px !important;*/}

/*footer article.card figure img{
  max-height:180px;}*/

.bottom-footer-copyright{
  padding: 1.25em 0;
  text-align: center;}
.bottom-footer-copyright p{
  font-size:1.1em;}

footer h3{
  margin:0;
  padding:0;
  font-size:1.5em;
  font-weight:bold;}
footer p{
  margin-top:0.1em;}

footer .cta-info a{
  position: relative;
  display: inline-block;
  margin:0.5em;
  padding: 0 0 0 30px;
  line-height: 50px;
  font-size: 1.15em;
  background: rgba(255,255,255,0.1);
  border-radius: 2em;
  min-width:225px;}
footer .cta-info i{
  position: absolute;
  left:4px;
  display: inline-block;
  margin: 0.25em auto;
  padding: 0.5em 0 0 0;
  width: 40px;
  height: 40px;
  font-size: 1.25em;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;}
footer .cta-info a:hover{
  color:#EAAB00;}

@media screen and (max-width:680px){
  footer{
    text-align:center;}
}

/* mobile footer */
.call-mobile{
  display:none;
  position:fixed;
  bottom:0;
  width:100%;
  left:0;
  right:0;
  height:80px;
  z-index: 10;}
.call-mobile .cta{
  margin:0;
  padding:0.75em 0;
  text-align:center;
  width:50%;
  font-size:1.5em;
  line-height:1.15em;
  border-radius:0;}

@media screen and (max-width: 680px){
  body{padding-bottom:80px;}
  .call-mobile{display:block;}
}

/* -- 8c: Parallax Images - Using Simple Parallax JS --------- */

.intro.parallax-banner .content{
  /*padding-bottom:4.5em;*/
  width:100%;
  padding:10em 0 4em 0;}
.intro.parallax-banner .more{
  /*position: absolute;
  width: 100%;*/
  /*left: 0;
  bottom: 0;*/}
.intro.parallax-banner .more .cta{
  margin: 0;
  padding: 0.8em 1.5em;
  /*width: 100%;*/
  font-size: 1.5em;
  text-align: center;
  /*border-radius: 0;*/}

.intro.parallax-banner .more a {
	color:#000 !important;
}

.parallax-banner{/*background:#69cad3;*//*background:#caafd3;*/}
.parallax-banner .simpleParallax{
  /*width: 98%;
  right: 0;*/
  /*border-top-left-radius:75px;*/
  /*padding-top: 20px;*/}

.parallax-banner .image-container{
  top:0;
  right: 0;
  width: 60%;
  border-top-left-radius: 75px;
  position: absolute;
  height: 100%;
  overflow: hidden;}

.parallax-banner img.parallax{
  /*right: 0;
  width:50%;
  border-top-left-radius:75px;*/}

.parallax-banner .container{
  position: relative;
  max-width: 1320px;
  /*min-height:500px;*/
  padding:0 5%;
  text-shadow:0px 0px 0px rgb(0 0 0 / 0%);}

.parallax-banner .content{
  width:50%;
  /*position:absolute;
  bottom:1.5em;*/
  /*padding:0;*/
  /*padding:8em 0;*/
  padding:12em 0 4em 0;
  /*text-align:center;*/
  text-align:left;
  /*background:#fff;*/
  /*left: 0;*/
  /*border-top-left-radius: 30px;*/
  /*width: 40%;*/
  /*max-width: 465px;*/
  /*max-height: 400px;*/
  /*overflow:hidden;*/}

.parallax-banner .content h1{
  /*font-size: 2.8em;*/
  font-size:4.25em;
  font-weight:bold;
  line-height:1em;
  color:#fff;
  /*letter-spacing: 0.125em;*/
  text-transform: uppercase;
  /*color:var(--clr--primary--lightblue);*/
  display: block;
  /*color:#d30027;*/
  /*color:#9deeff;*/
  /*color:#fff;*/
  color:#fbe06d;
  /*font-family: 'Cinzel', serif;*/
  font-weight: 800;
  /*font-size: 1.75em;*/
  /*line-height: 0.95em;*/
  text-transform: uppercase;
  /*letter-spacing: -0.025em;*/
  /*letter-spacing: 0.0125em;*/}
.parallax-banner .content h1 span{
  /*color:var(--clr--primary--lightblue);*/
  /*display: block;
  /*color:#d30027;*/
  /*color:#9deeff;*/
  /*color:#fff;
  /*font-family: 'Cinzel', serif;*/
  /*font-weight: 800;
  font-size: 1.75em;
  line-height: 0.95em;
  text-transform: uppercase;*/
  /*letter-spacing: -0.025em;*/
  /*letter-spacing: 0.0125em;*/}

@media screen and (max-width: 680px){
  .parallax-banner .content h1 span{/*color:var(--clr--primary--lightblue);*/
    font-size: 1.5em;}
}

.parallax-banner .content h1 span.alt{
  color:#4cda64;}

.parallax-banner .content h1 span.blue {color:var(--clr--primary--darkblue);}
.parallax-banner .content p{
  /*margin: 0 auto;*/
  /*max-width: 1000px;*/
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.5em;
  color: #fff;
  /*text-transform:capitalize;*/
}
.parallax-banner section.breadcrumbs{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  background-color:#EAAB00;}
.parallax-banner section.breadcrumbs ul{
  padding:0.25em 3em;}

.parallax-banner .overlay{
/*background: rgb(0,152,219);
background: -moz-linear-gradient(90deg, rgba(0,152,219,0.9) 25%, rgba(0,152,219,0) 75%);
background: -webkit-linear-gradient(90deg, rgba(0,152,219,0.9) 25%, rgba(0,152,219,0) 75%);
background: linear-gradient(90deg, rgba(0,152,219,0.9) 25%, rgba(0,152,219,0) 75%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0098db",endColorstr="#0098db",GradientType=1);*/
/*background:rgba(0,152,219,0.75);*/

/*background:rgba(0,0,0,0.45);*/

background: rgb(0,0,0);
background: -moz-linear-gradient(70deg, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 70%);
background: -webkit-linear-gradient(70deg, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 70%);
background: linear-gradient(70deg, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 70%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);}

.parallax-banner img.overlay-logo{
  position: absolute;
  max-width: 115px;
  bottom: 0;
  right: 5em;
  margin:0;
  margin-bottom: -0.25em;
  padding: 1em;
  opacity: 1;
  background: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 2;}

.archive .parallax-banner article{
  margin-bottom:0;
  padding-left:0;}

/*body.home .parallax-banner .content h1{
  font-size:2.8em;}*/

/*body.home {
  
}*/

.color-bar{
  position:relative;
  width:100%;}
.color-bar .color{
  display:block;
  float:left;
  margin:0;
  padding:0;
  width:20%;
  height:5px;}
.color-bar .red{background:#be2b41;width:2%;}
.color-bar .orange{background:#f89721;width:3%;}
.color-bar .yellow{background:#fce212;width:5%;}
.color-bar .green{background:#b7d635;width:3%;}
.color-bar .blue{background:#0569a9;width:85%;}
.color-bar .purple{background:#5b409b;width:2%;}

/* events calendar */
.entry-content .datepicker-days table, .entry-content .datepicker-days td, .entry-content .datepicker-days th{border:0;}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container{padding-top:0;padding-bottom:0;}
.tribe-common--breakpoint-medium.tribe-common .tribe-common-form-control-text__input{background:transparent;}

/* Donation Form - Blackbaud */
#bbox-msg-wrapper{ /* correct loading image size */
  width: 50px;
  margin: 0 auto;}

/* Contact */
/*body.contact .footer-bar{display:none;}*/

@media screen and (min-width: 86.625em){
  .parallax-banner .container{
    padding:0;}
}

@media screen and (max-width:1480px){
  .logo img{max-width:225px;}
}

@media screen and (max-width:1380px){
  .logo img{max-width:225px;}
}

@media screen and (max-width:1280px){
  .logo img{max-width:225px;}
}

@media screen and (max-width:1180px){
  .logo img{max-width:225px;}
  /*body.home .card-single .container{
    min-height: 600px;}*/
}

@media screen and (max-width:1080px){
  .logo img{max-width:225px;}
}

@media screen and (max-width:980px){
}

@media screen and (max-width:780px){
  body.home .card-single .container{
    min-height: auto;}
}

@media screen and (max-width:680px){
  .parallax-banner img.parallax{
    /*max-height: 200px;*/
    /*height:50%;*/}
  .parallax-banner img.overlay-logo{
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);}
  .parallax-banner .container{
    /*min-height:350px;*/}
  .parallax-banner .content{
    width:100%;
    min-height: 200px;
    padding: 9em 0 3em 0;
    /*width:90% !important;*/
    /*top: 185px;
    bottom: auto;*/}
  .parallax-banner .content h1{
    font-size:1.5em;
    text-align: center;}
  
  body.home .parallax-banner .content h1{
    text-align: center;}
  
  .parallax-banner .content p{
    font-size:1.2em;
    text-align: center;}
  
  .card .cta.half{width:50%;}
  
  /* collapsible footer start */
  /* collapsible footer buttons */
  footer .links .collapsible{
    margin:0;
    padding:0.5em 1em;
    width:100%;
    color:#fff;
    background-color:#f1f1f1;
    border-radius:0.35em;
    cursor:pointer;}
  footer .links .collapsible:hover{}
  footer .links .active{
    color:#fff;
    background-color:#00456a;
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;}
  footer .links .active a{
    color:#fff !important;}
  footer .links .collapsible:after{
    content:'\002B';
    float:right;
    margin-left:5px;
    color:#00456a;
    font-weight:bold;}
  footer .links .active:after{
    content:"\2212";
    color:#fff;
    border-bottom-left-radius:0.35em;
    border-bottom-right-radius:0.35em;}
  /* collapsible footer content */
  footer .links .content{
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.2s ease-out;
    background-color:#f1f1f1;
    border-bottom-left-radius:0.35em;
    border-bottom-right-radius:0.35em;}
  footer .links .content ul{
    margin:0;
    padding:0;}
  footer .links .content ul li{
    margin:0;
    padding:0;
    border-bottom:1px solid #fff;}
  footer .links .content ul li a{
    display:block;
    margin:0;
    padding:0.75em 1em;
    font-size:1.15em;}
  /* collapsible footer end */
  
}

/* Custom Site CSS */

.nav ul li{
  /*letter-spacing: 0.05em;*/
}

/* Services Page */

.double-panel-text {
  padding: 5% 10%;
	text-align:left;
}

.double-panel-text p {
	/*max-width:50rem;*/
	text-align: left;
  margin-left: auto;
  margin-right: auto;
	font-size:3rem;
	/*color:var(--clr--primary--darkblue);*/
	/*font-weight:normal;
	font-family:'Open Sans';*/
}

.double-panel-text .widget-title {
	/*color:var(--clr--primary--darkblue);*/
	font-size:3.5rem;
	font-weight:normal;
	/*font-family:'Open Sans';*/
}

.double-panel-stretch {
	background:whitesmoke;
}

.double-panel {
	
}

/* Contact Form Button */
.vfbp-form .btn-primary {
	/*background-color:var(--clr--bottle--green);
	border-color:var(--clr--bottle--green);*/
  color: #fff !important;
  font-weight: 700;
  font-size: 1.5em;
  border-radius: 2em;
  padding: 0.25em 1em;
  margin: 0 auto;
  text-align: center;
  display: block;
  text-transform: uppercase;}

.vfbp-form .btn-primary:hover {
	background-color:var(--clr--primary--darkblue);
}

/* About Section */

.about-section h3 {
	font-weight:900;
	font-size:3rem;
}

.about-section p {
	font-weight:500;
	font-size:2rem !important;
}

.about-section h3 span {
	color:var(--clr--primary--lightblue);
}

.about-section h3 span.blue {
	/*color:var(--clr--primary--darkblue);*/
}

.about-section img {
	border-radius:7px;
}

/* Utils */

h1 span.blue {
	/*color: var(--clr--primary--darkblue);*/
}

h1 span.red {
	/*color:var(--clr--celtic--blue);*/
}

p span.red {
	/*color:var(--clr--celtic--blue);*/
}

.widget img {
	border-radius:2px;
}

/* intro */
body.home .intro h2{
  color:#830300 !important;
  line-height: 1.15em;}

/* Double Panel Layout */
body.home .solutions{color:#fff;
  background-color:#e22333;
  background:rgb(226,35,51);
  background:-moz-linear-gradient(180deg, rgba(226,35,51,1) 50%, rgba(179,33,43,1) 100%);
  background:-webkit-linear-gradient(180deg, rgba(226,35,51,1) 50%, rgba(179,33,43,1) 100%);
  background:linear-gradient(180deg, rgba(226,35,51,1) 50%, rgba(179,33,43,1) 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#e22333",endColorstr="#b3212b",GradientType=1);}
/*section.about p{font-size:1.25em;line-height:1.5em;}
section.about h3{font-size:1.8em;}*/

body.home .solutions .imagepanel img{
  max-height: 600px;
  object-fit: cover;}

/* double panel section */
.doublepanel{
  padding:0;
}
.doublepanel .col{
  margin:0;
  padding:0;}
.doublepanel .span6{
  margin:0;}
.doublepanel .container{
  padding-top:1.5em;
  padding-bottom:1.5em;}
.doublepanel .imagepanel figure{
  margin:0;}
.doublepanel .imagepanel figure img{
  display:block;
  min-height:450px;
  object-fit:cover;
  border-radius:0;}
.doublepanel .imagepanel figure img.tall{
  min-height:550px;}
.doublepanel .imagepanel figure img.extratall{
  min-height:750px;}
.doublepanel .more{
  margin-top:1.25em;}
@media screen and (min-width:681px){
  .doublepanel .span6{
    width:50%;}
}

.services-carousel .col{
  /*margin:0;
  padding:0;*/}
.services-carousel .item{
  /*margin:0 !important;
  padding:0 !important;*/
  padding-bottom:3em;}
.services-carousel .item figure{
  /*margin:0 !important;*/}

.caller-verified img{
  margin-top: -40%;
  margin-bottom:3em;
  border-radius: 20px;
  z-index: 1;
  width: 100%;
  max-width: 50% !important;
}

@media (max-width:780px) {
	.caller-verified img {
		max-width:40% !important;
		margin-top:-3em;
		margin-bottom:0.5em;
	}
}

body.home .services .card{
  padding-bottom:0;
  box-shadow:none;
  background:transparent;}
body.home .services .card figure.profile img{
  margin-top:0;}
body.home .services .card h4{
  font-weight: normal;}
body.home .services .card h4 span{
  color:var(--clr--primary--lightblue);}

body.home .services .card a:hover{
  color:#ff3b2f;
  text-decoration: none;}

body.home .services .card a:hover h4, body.home .services .card a:hover h4 span{
  color:#ff3b2f;
  text-decoration: none;}



body.home .solutions h2{
  margin:0;
  padding:0;
  position: absolute;
  width: 100%;
  color:#fff !important;
  border-top: 10px solid #d30027;
  z-index: 2;}
body.home .solutions h2 span{
  background: #d30027;
  padding: 0.25em 1em;
  display: inline-block;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);}

body.home .solutions h3{
  font-size:2.5em;
  color:#fff !important;}
body.home .solutions h3 span{
  color:#d4d4d4 !important;}

body.home .solutions .cta.outline{
  color:#fff !important;
  border-color:#fff !important;}
body.home .solutions .cta.outline:hover{}


.site-content .content p.knowledge-base {
    font-size: 1.4em; 
    float: left; 
    padding-left: 20px;  
}
.site-content .content p.knowledge-base-cta {
	margin-top: 1em;
	float: right;
	padding-right: 20px;
}


.secondary-footer-text {
	/*color:#333333 !important;
	font-weight:400;*/
}


@media screen and (max-width:781px){
  .site-content .content p.knowledge-base {
    margin-left: 20px;
    }
	.site-content .content p.knowledge-base-cta {
		width: 90%;
		margin: 0 auto;
		margin-bottom: 15px;
		float: none;
		margin-left: 25px;
	}
}

/* footer */
section.footer-bar{
  padding:0;}

.site-footer p small{
  line-height:1.25em;}


@media screen and (max-width:1200px){
  .nav ul li{
    letter-spacing:0;
  }
  .primary-menu > li > a{
    padding: 0 0.5em;
  }
}

@media screen and (max-width:1100px){
  .primary-menu > li > a{
    font-size:1em !important;
  }
}

@media screen and (min-width: 980px){
  .header-menu {
    display: table-cell;
  }
}

@media screen and (max-width: 780px){
  .intro.parallax-banner .content{
    width:100%;
    padding: 6em 0 12em 0;
  }
  
  body.home .parallax-banner .content h1{
    font-size:2em;
  }
  

  
  body.home .intro h2{
    font-size:2em;
  }
  
  .doublepanel .imagepanel figure img.tall{
    min-height:250px;
    max-height:250px;
  }
  .doublepanel .container{
    padding:3em;
  } 
}

#footer-logos-container-title h3 {
	font-size: 3.75rem;
    color: var(--clr--jet);
    text-align: center;
    margin-bottom: -50%;
    margin-top: 7rem;
}

@media (max-width:680px) {
	#footer-logos-container-title h3 {
		margin-top:2rem;
		font-size:2.75rem;
	}
}

/* elements */

/*(1) owl-stage box*/
.owl-carousel.services-carousel .owl-stage { display: flex; }
/*(2) the direct div of each element in the owl carousel*/ 
.owl-carousel.services-carousel article { height: 100%; }

.site-content .content h2{
  color:#010ab8;}
.site-content .content h3{
  /*color:#005dab;*/}

img.so-widget-image, .sow-slider-image img{
  border-radius: 20px;}
footer img.so-widget-image, .sow-slider-image img{
  border-radius: 0;}

.sidebar-footer{
  /*background: rgb(255,255,255);
  background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(224,247,255,1) 100%);
  background: -o-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(224,247,255,1) 100%);
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(224,247,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e0f7ff",GradientType=1);*/
  
  /*background: rgb(241,241,241);
  background: linear-gradient(180deg, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 100%);*/}

header .social{
  position: fixed;
  display: block;
  top: 280px;
  right: 10px;
  margin: 0;
  padding: 0.35em 0;
  width: 50px;
  background: #fff;
  border-radius: 2em;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);}
header .social li{
  display:block;
  margin:0;
  padding:0;
  width:100%;
  text-align:center;}
header .social li a{
  margin:0.1em auto;
  padding: 0.25em 0 0 0;
  width: 40px;
  height: 40px;
  font-size: 1.65em !important;
  font-weight: normal;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #010ab8;
  border-radius: 2em !important;
  border: 2px solid #010ab8;
  transition: all 0.4s ease;}
header .social li a:hover{
  color:#fff;
  border-color:#010ab8;}

footer .social{
  position:relative;
  display:block;
  margin:1.25em 0;
  padding:0;
  width:100%;
  text-align:center;}
footer .social li{
  display:inline-block;
  margin:0;padding:0;
  width:auto;
  vertical-align: middle;}
footer .social li a{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0.15em;
  padding:0;
  width:40px;
  height:40px;
  font-size:1.5em;
  font-weight:normal;
  border:2px solid #5681b0;
  color:#fff;
  /*background:rgba(255,255,255,0.5);*/
  background:#00446a;
  border-radius:50%;
  transition:all 0.3s ease;}
footer .social li a i{}
footer .social li a:hover{
  border-bottom: 2px solid;
  color: #fff;
  background:#009dd7;
  border-color: #9deeff;
  font-size:1.5em;
  transform: scale(1.1);}

/* faq enhancements */

.faq-accordion .faq-main{
  background:#f7f7f7;
  border-radius:8px;}
.faq-accordion .faq-main:hover{
  background:#f6fcfe;
  -webkit-box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 25%);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.25);
  box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 25%);}
.faq-accordion .faq-main .faq-content{
  padding-left:1em;
  padding-right:1em;}

/* company logo carousel */
.owl-carousel.company-logo-carousel{
  margin-bottom:0;}

.owl-carousel.company-logo-carousel img{
  transition: all 0.3s ease;}
.owl-carousel.company-logo-carousel img:hover{
  transform: scale(1.05);}

/* color options */
.bg-color{
  padding-top:2em;
  padding-bottom:2em;
  background:#e0f7ff;}
.bg-color.color2{
  background:#f9f7f7;}

/* animation enhancements */
.cta{
  transition: all 0.3s ease;}
.cta:hover{
  transform: scale(1.05);}

.card .cta:hover{
  transform: scale(1.0125);}

.card{
  transition: all 0.3s ease;}
.card:hover{
  transform: scale(1.0125);
  -webkit-box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 25%);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.25);
  box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 25%);}

/* card accent */
.card.accent{
  padding:1.25em 0 3em 0;
  border-radius:2em;}

/* stats */
.site-content .stat{
  text-align:center;}
.site-content .stat h3{
  margin-bottom:0;
  /*font-family: 'Arimo', 'Open Sans', sans-serif;*/
  font-size: 4em;
  font-weight: bold;
  color:#9deeff;}
.site-content .stat h3 .counter-value{
  display:inline;}
.site-content .stat p{
  margin-top:0;
  font-size: 1.5em;
  line-height: 1.35em;
  color:#fff;}

/* double panel */
.about-summary img{
  max-height: 380px;
  object-fit: cover;}
.about-summary{
  color:#fff;}
.about-summary h3{
  padding-bottom:0.25em;
  color:#fff !important;
  border-bottom:2px solid #B9A772;}

/* testimonials slider */

.stories-cta-section i{
  font-size: 4em;
  color: #fff;}

.stories-cta-section article{
  margin:0 auto;}

.stories-cta-section .simpleParallax img{
  opacity: 0.15;}

.stories-cta-section h3{
  /*color:#fff !important;*/
  color:#5681b0 !important;}

.stories-cta-section blockquote{
  /*color: #fff;*/
  color:#5681b0;
  padding: 0;
  margin: 0;
  border-left: 0;}

.stories-cta-section blockquote:before{
  display: none;}

.stories-cta-section blockquote q{
  /*color:#fff;*/
  color:#5681b0;}

.stories-cta-section blockquote p{
  font-size:0.75em;}

.stories-cta-section blockquote cite{
  background:transparent;
  font-size:1em;}

/* career cta banner */
.main-cta-banner .parallax-banner .container {
  padding: 1em 1em 2em 1em;}

.main-cta-banner .parallax-banner h2{
  font-weight: bold;}

/*.main-cta-banner .parallax-banner .overlay{
  background: rgba(6,107,84,0.5);}*/
.main-cta-banner .parallax-banner .container .cta {
  font-size: 1.1em;
  text-shadow: none;
  padding: 0.5em 0.75em;
  margin: 0.5em 0.25em;}

/* callout */
.bg-color{
  background:#ccecfc;}

.callout{
  padding:2em;
  background:#93d0ae;
  border-radius:20px;}
.callout.color1{ /* green */
  background:#93d0ae;}
.callout.color2{ /* light blue */
  background:#89e4e7;}
.callout.color3{ /* orange */
  background:#fec286;}
.callout.color4{ /* pink */
  background:#fe86a1;}
.callout.color5{ /* yellow */
  background:#fffa9e;}
.callout.color6{ /* dark blue */
  color:#fff;
  background:#3d76ab;}

.callout h3{
  font-size:2.25em !important;}
.callout a{
  font-size:1.2em;
  font-weight: bold;
  color:#3d76ab !important;
  text-decoration: none;}
.callout a:hover{
  color:#fff !important;
  text-decoration: none;}
.callout .cta.outline{
  text-align: center;
  color:#3d76ab !important;
  border-color:#456d95;}
.callout .cta.outline:hover{
  color:#fff !important;
  border-color:#fff;}

.callout.left{
  margin-right:-5em;}
.callout.right{
  margin-left:-5em;}

/*.panel-grid-cell:first-child .callout{
  border:20px solid red;}
.panel-grid-cell:last-child .callout{
  border:20px solid green;}*/

@media screen and (max-width:680px){
  .callout.left, .callout.right{
    margin-left:0;
    margin-right:0;}
}

/* fixed footer reveal effect */
/*@media (min-width:1080px){
  body{
    padding-bottom:300px;}
  .site-content, .footer-bar{
    position:relative;
    z-index:1;}
  .site-footer{
    position:fixed;
    bottom:0;
    width:100%;
    z-index:0;}}*/

/* skew */

/*.skew-btm,.skew-btm-right{
  padding:-webkit-calc(10% + 20px) 0 -webkit-calc(7% + 20px);padding:-moz-calc(10% + 20px) 0 -moz-calc(7% + 20px);padding:calc(10% + 20px) 0 calc(7% + 20px);position:relative;z-index:10;}

.skew-btm:after,.skew-btm-right:after{
  content:'';width:100%;height:100%;position:absolute;background:inherit;z-index:-1;bottom:0;left:0;-webkit-transform-origin:right bottom;-moz-transform-origin:right bottom;-ms-transform-origin:right bottom;-o-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:skewY(-2.5deg);-moz-transform:skewY(-2.5deg);-ms-transform:skewY(-2.5deg);-o-transform:skewY(-2.5deg);transform:skewY(-2.5deg);}

.skew-btm.first-section,.skew-btm-right.first-section{
  padding-top:-webkit-calc(3% + 20px);padding-top:-moz-calc(3% + 20px);padding-top:calc(3% + 20px);}

.skew-btm-right:after{
  -webkit-transform-origin:left bottom;-moz-transform-origin:left bottom;-ms-transform-origin:left bottom;-o-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:skewY(2.5deg);-moz-transform:skewY(2.5deg);-ms-transform:skewY(2.5deg);-o-transform:skewY(2.5deg);transform:skewY(2.5deg);}*/

.angled-container{
  margin-top: 100px;
  height: 400px;
  width: 100%;
  position: relative;
}

.angled-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  width: 25%;
  padding: 40px;
  text-align: center;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
}

.angled-top-left{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-top-left:before, .angled-top-left:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-top-left:before{
  top: 0;
  transform-origin: right top;
  transform: skewY(3deg);}

.angled-top-right{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-top-right:before, .angled-top-right:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-top-right:before{
  top: 0;
  transform-origin: left top;
  transform: skewY(-3deg);}

.angled-bottom-left{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-bottom-left:before, .angled-bottom-left:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-bottom-left:after{
  bottom: 0;
  transform-origin: right bottom;
  transform: skewY(-3deg);}

.angled-bottom-right{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-bottom-right:before, .angled-bottom-right:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-bottom-right:after{
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(3deg);}

.angled-both-left{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-both-left:before, .angled-both-left:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-both-left:before{
  top: 0;
  transform-origin: right top;
  transform: skewY(3deg);}
.angled-both-left:after{
  bottom: 0;
  transform-origin: right bottom;
  transform: skewY(-3deg);}

.angled-both-right{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-both-right:before, .angled-both-right:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-both-right:before{
  top: 0;
  transform-origin: left top;
  transform: skewY(-3deg);}
.angled-both-right:after{
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(3deg);}

.angled-both-left-right{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-both-left-right:before, .angled-both-left-right:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-both-left-right:before{
  top: 0;
  transform-origin: right top;
  transform: skewY(3deg);}
.angled-both-left-right:after{
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(3deg);}

.angled-both-right-left{
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #f1e767 0%, #feb645 100%);}
.angled-both-right-left:before, .angled-both-right-left:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  transition: ease all 0.5s;}
.angled-both-right-left:before{
  top: 0;
  transform-origin: left top;
  transform: skewY(-3deg);}
.angled-both-right-left:after{
  bottom: 0;
  transform-origin: right bottom;
  transform: skewY(-3deg);}

/* double panel */

.cta-banner.doublepanel figure img{
  height: 350px !important;
  min-height: auto;
  object-fit: cover;}

/* double panel section */
.doublepanel{
    padding:0;}
  .doublepanel .col{
    margin:0;
    padding:0;}
  .doublepanel .span6{
    margin:0;}
  .doublepanel figure{
    margin:0;}
  .doublepanel figure img{
    display:block;
    min-height:450px;
    object-fit:cover;}
@media screen and (min-width:681px){
  .doublepanel .span6{
    width:50%;}
}
@media screen and (max-width:680px){
  .doublepanel figure img{
    min-height:300px;}
}

/* double panel promos */

/* Double Panel Layout */
.promotions{
  color:#fff !important;
  /*background-color:#e22333;
  background:rgb(226,35,51);
  background:-moz-linear-gradient(180deg, rgba(226,35,51,1) 50%, rgba(170,31,46,1) 100%);
  background:-webkit-linear-gradient(180deg, rgba(226,35,51,1) 50%, rgba(170,31,46,1) 100%);
  background:linear-gradient(180deg, rgba(226,35,51,1) 50%, rgba(170,31,46,1) 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#e22333",endColorstr="#aa1f2e",GradientType=1);*/
  
  background: #1e2c5f;}
/*section.about p{font-size:1.25em;line-height:1.5em;}
section.about h3{font-size:1.8em;}*/

.promotions h2{
  color:#fff !important;}

.promotions h3{
  color: #fbe06d !important;
  font-size:0.9em;}


/* login - hero banner */
article.card.onlinebanking{
  /*position: absolute;
  width:100%;
  max-width:350px;
  top:10%;
  right:2em;
  padding:2em;
  color:#000;
  background:rgba(255,255,255,1);*/

  position: relative;
  margin:0 auto;
    width: 100%;
    max-width: 350px;
    /*min-height: 350px;*/
    /* top: 10%; */
    /* right: 2em; */
    padding: 2em;
    color: #000;
    background: rgba(255,255,255,1);}
article.card.onlinebanking h3{
  margin:0 0 0.5em 0;
  padding:0;
  color:#000;}

article.card.onlinebanking select{
  margin:0 0 0.5em 0;}
article.card.onlinebanking .personal-login,
article.card.onlinebanking .business-login{
  margin:0 0 1em 0;}

article.card.onlinebanking form{
  margin:0 auto;}
article.card.onlinebanking form input{
  font-size:1em;
  margin:0 0 0.5em 0;
  padding:0 10px;
  height:40px;
  color:#aa1f2e;
  background: rgba(0,0,0,0.035);
  border-color: rgba(0,0,0,0.15);
  border-width: 1px;
  border-radius: 4px;}
article.card.onlinebanking form input::placeholder{
  color:#9e9e9e;}

article.card.onlinebanking form button[type=submit],
article.card.onlinebanking form input[type=submit]{
  display:inline;
  vertical-align:top;
  width:100%;
  max-width:100%;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size:1em;
  margin:0;
  padding:0 10px;
  height:48px;
  color:#fff;
  background:#010ab8;
  border-color:rgba(255,255,255,1);
  border-radius:4px;
  border-width: 1px;
  cursor: pointer;}
article.card.onlinebanking form button[type=submit]:hover,
article.card.onlinebanking form input[type=submit]:hover{
  color:#fff;
  background:#505ac7;
  border-color:rgba(255,255,255,0.25);}
article.card.onlinebanking form button .material-symbols-outlined{
  font-size:1em;
  vertical-align:text-bottom;}

article.card.onlinebanking .cta{
  display:inline-block;
  vertical-align:top;
  width:100%;
  max-width:100%;
  font-size:1em;
  margin:0;
  padding:12px 10px;
  height:48px;
  color:#fff;
  background:#aa1f2e;
  border-color:rgba(255,255,255,1);
  border-radius:4px;
  border-width: 1px;
  text-align: center;
  text-transform: capitalize;}
article.card.onlinebanking .cta:hover{
  color:#fff;
  background:#810512;
  border-color:rgba(255,255,255,0.25);}
article.card.onlinebanking .cta .material-symbols-outlined{
  font-size:1em;
  vertical-align:text-bottom;}

article.card.onlinebanking .cta.outline{
  color:#000;
  background:rgba(255,255,255,0);
  border-color:rgba(0,0,0,0.35);}
article.card.onlinebanking .cta.outline:hover{
  color:#000;
  background:rgba(0,0,0,0.25);
  border-color:rgba(255,255,255,0.25);}