/* this stylesheet holds just the header styles */
/* this is to attach it to the other bjc pages that are not on the framework */


 
 
/* =========================================================== */
/* ============ General Styles Neeeded ============ */
/* =========================================================== */
 .topBorder-t1 {
    border-top: 1px solid #7f97a9;
}
.top-padding {
    padding-top: 40px;
}
.bottom-padding {
    padding-bottom: 40px;
}
.center-align {
    text-align: center;
}
.right-align {
    text-align: right;
}
.left-align {
    text-align: left;
}
main {
    padding-top: 77px;
}
.blue-header h1, .blue-header h1 span, .blue-header h1 a,
.blue-header h2, .blue-header h2 span, .blue-header h2 a, 
.blue-header h3, .blue-header h3 span, .blue-header h3 a, 
.blue-header h4, .blue-header h4 span, .blue-header h4 a, 
.blue-header h5, .blue-header h5 span, .blue-header h5 a, 
.blue-header h6, .blue-header h6 span, .blue-header h6 a {
  color: #2874cc;
}

@media(max-width: 767px){ 
    .left-padding {
        padding-left: 0;
    }
    .right-padding {
        padding: 0;
    }
    .mobile-hide {
        display: none !important;
    }
    .mobile-center {
        text-align: center;
    }
    .mobile-top-padding {
        padding-top: 20px;
    }
    .mobile-bottom-padding {
        padding-bottom: 20px;
    }
}


/* =========================================================== */
/* ============ Styles from Styles ============ */
/* =========================================================== */

.nav-wrapper {
    padding: 0 40px;
    position: fixed;
    width: 100% !important;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    z-index:99;
}
.nav-wrapper .dark-logo {
    display: none;
}
.nav-wrapper .logo {
    padding: 10px 0;
}
.nav-wrapper.scroll, 
.solid-nav .nav-wrapper {
   background-color: #fff;
   box-shadow: 4px 0 12px rgba(0,0,0,.25);
}
.nav-wrapper.scroll .dark-logo, 
.solid-nav .nav-wrapper .dark-logo {
    display: block;
}
.nav-wrapper.scroll .white-logo,
.solid-nav .nav-wrapper .white-logo {
    display: none;
}
.global-sticky-header-offset, 
.solid-nav .body-container-wrapper {
    margin-top: 43px;
}



@media(max-width: 950px) {
    .nav-wrapper {
        background: #fff;
        position: initial;
        padding: 0 10px;
    }
    .nav-wrapper .white-logo {
        display: none;
    }
    .nav-wrapper .dark-logo {
        display: block;
    }
    .global-sticky-header-offset, 
    .solid-nav .body-container-wrapper {
        margin-top: 0;
    }
}

/* ============== Menu ================= */
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal {
    float: right;
}
 
.hs-menu-wrapper {}

/* Primary menu link text color */
.hs-menu-wrapper a {}
.hs-menu-wrapper a:hover {}

/* Drop down background color */
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul {}

/* Menu link font family and basic padding including drop down links */
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li {
    padding: 0;
    margin: 0;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    border-top: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-decoration: none;
    max-width: 250px;
    padding: 15px 20px;
    margin: 5px 0 0;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a:hover,
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
    border-top: 3px solid #fff;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible;
    text-overflow: clip;
    width: 100%;
    max-width: 250px;
    color: #fff;
    background: #E5E9ED;
    text-align: left;
    padding: 15px 15px;
    margin: 0;
}

.nav-wrapper.scroll .hs-menu-wrapper.hs-menu-flow-horizontal ul li a, 
.solid-nav .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a {
    color: #fff;
}
.nav-wrapper.hs-menu-wrapper.hs-menu-flow-horizontal ul li a:hover,
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
    border-top: 3px solid #2874cc;
}




/* =========================================================== */
/* ========= Styles from Core ========== */
/* =========================================================== */

/* ============== Mobile Menu ================= */
/**
 * Special Note
 *
 * When the menu is open, a class of .mobile-open is applied to the body. You can 
 * use this for custom styling on any element when the menu is in the open position.                     
 */
@media (min-width: 951px){
  a.mobile-trigger, a.child-trigger {
      display: none !important; /* Hide button on Desktop */
  }
}

@media (max-width: 950px){
  /* Menu Reset - Remove styling from desktop version of custom-menu-primary */
  /* Place any additional CSS you want removed from the mobile menu in this reset */
  .custom-menu-primary, .custom-menu-primary *{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1.75em;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
  }

  /* Toggle Button
     ========================================================================== */
  a.mobile-trigger {
      display: inline-block !important; /* Hide button on Desktop */
      cursor: pointer; /* Mouse pointer type on hover */
      position: absolute; /*******************************************/
      top: 0px;          /* Position Button at top right of screen  */
      right: 10px;        /*******************************************/
      width: auto; /* Button width */
      height: auto; /* Button height */      
      padding: 12px 10px;
      z-index: 99999999999; /* Z-index to keep button on top of other layers */
      -webkit-transition: background-color 0.2s linear; /* Button color transition effect */
      font-size: 16px;
      font-weight: normal;
      text-align: left;
      text-transform: uppercase;
      -webkit-border-bottom-right-radius: 6px;
      -webkit-border-bottom-left-radius: 6px;
      -moz-border-radius-bottomright: 6px;
      -moz-border-radius-bottomleft: 6px;
      border-bottom-right-radius: 6px;
      border-bottom-left-radius: 6px;
      -webkit-transition:color .2s ease-in; 
      -moz-transition:color .2s ease-in;
      transition:color .2s ease-in;
      background: #2874cc; /* Background color */
  }
  a.mobile-trigger:hover {
      text-decoration: none; /* Removes link text underline on button */
      color: #fe7b2b;
  }
  a.mobile-trigger span{
      display: inline;
  }
  a.mobile-trigger span:before{
      position: absolute;
      content: ''; /* Change the text on the closed toggle button */
  }
  a.mobile-trigger span:after{
      position: relative;
      right: 2px;
      content: ''; /* Change the text on the open toggle button */
      background-color: #fff;
      opacity: 0;
      transition: opacity .4s ease-in-out;
      -moz-transition: opacity .4s ease-in-out;
      -webkit-transition: opacity .4s ease-in-out; 
  }

  /* Change button when menu is open */
  .mobile-open a.mobile-trigger{
      -webkit-transition:background-color 0.2s linear; /* Button color transition effect */
      -moz-transition:background-color 0.2s linear; /* Button color transition effect */
      transition:background-color 0.2s linear; /* Button color transition effect */
      background: transparent; /* Changes button background to be slightly darker than open menu color */  
  }
  .mobile-open a.mobile-trigger span:after{
     opacity: 1; 
  }
  
  /* Toggle Button Icon & Animations
     ========================================================================== */
  a.mobile-trigger i {
      display: inline;
      position: relative;
      top: -5px;
      margin-left: 0;
      -webkit-transition-duration: 0s;
      -webkit-transition-delay: .2s;
      -moz-transition-duration: 0s;
      -moz-transition-delay: .2s;
      transition-duration: 0s;
      transition-delay: .2s;
  }
  a.mobile-trigger  i:before, a.mobile-trigger i:after {
      position: absolute;
      content: '';
  }
  a.mobile-trigger  i, a.mobile-trigger  i:before, a.mobile-trigger  i:after {
      width: 15px; /* Icon line width */
      height: 2px; /* Icon line height */
      background-color: #fff; /* Icon color */
      display: inline-block;
  }
  a.mobile-trigger  i:before {
      margin-top: -6px; /* Position top line */
      -webkit-transition-property: margin, -webkit-transform;
      -webkit-transition-duration: .2s;
      -webkit-transition-delay: .2s, 0;
  }
  a.mobile-trigger  i:after {
      margin-top: 6px; /* Position bottom line */
      -webkit-transition-property: margin, -webkit-transform;
      -webkit-transition-duration: .2s;
      -webkit-transition-delay: .2s, 0;
  }
  .mobile-open a.mobile-trigger i {
      background-color: rgba(0,0,0,0.0);
      -webkit-transition-delay: .2s;
      -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
      -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
      box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }
  .mobile-open a.mobile-trigger i:before {
      margin-top: 0;
      background-color: #2874cc;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition-delay: 0, .2s;
      -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
      -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
      box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }
  .mobile-open a.mobile-trigger i:after {
      margin-top: 0;
      background-color: #2874cc;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition-delay: 0, .2s;
      -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
      -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
      box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }

  /* Child Toggle Button
     ========================================================================== */
  a.child-trigger {
      display: block !important; /* Hide button on Desktop */
      cursor: pointer; /* Mouse pointer type on hover */
      position: absolute;
      top: 0px;
      right: 0px;
      width: 55px !important; /* Button width */
      min-width: 55px !important;
      height: 45px !important; /* Button height */  
      padding: 0 !important;
      border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  a.child-trigger:hover {
      text-decoration: none;
  }

  /* Child Toggle Button Icon & Animations
     ========================================================================== */
  a.child-trigger span {
      position: relative;
      top: 50%; /* Centers icon inside button */
      margin: 0 auto !important;
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger span:after {
      position: absolute;
      content: '';
  }
  a.child-trigger span, a.child-trigger span:after {
      width: 10px; /* Icon line width */
      height: 1px; /* Icon line height */
      background-color: #2874cc; /* Icon color */
      display: block;
  }
  a.child-trigger span:after {
      -webkit-transform: rotate(-90deg);
       -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
       -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger.child-open span:after {
      -webkit-transform: rotate(-180deg);
       -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
       -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger.child-open span {
      -webkit-transform: rotate(180deg);
       -ms-transform: rotate(180deg);
      transform: rotate(180deg);
       -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
      transition-duration: .2s;
  }

  /* Menu Styles on Mobile Devices
     ========================================================================== */  
  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-flow-horizontal,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
      display: none;
  }  
  
    .custom-menu-primary.js-enabled {
        min-height: 0px !important;
    }

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper {
      visibility: visible !important;
      opacity: 1 !important;
      position: static !important;
      display: none;
  }

  /* Mobile Menu Styles */
  .custom-menu-primary.js-enabled .hs-menu-flow-horizontal{
      position: absolute; /**************************************************************/
      top: -15px;             /* Positions the menu to drop from the very top of the screen */
      left: 0px;          /**************************************************************/                                              
      width: 100%;   
      -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.65);
      -moz-box-shadow:    0px 5px 5px 0px rgba(0, 0, 0, 0.65);
      box-shadow:         0px 5px 5px 0px rgba(0, 0, 0, 0.65);
      background: transparent;
  }
  .custom-menu-primary .hs-menu-flow-horizontal{
      padding: 85px 0 0 0; /* Padding to add room for close button */
      background-color: ; /* Menu background color set off global mobile-menuColor variable */
      width: 100%; /* Full screen width */
      z-index: 8888;
  }

   /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li{
      position: relative;
   }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li a{
      font-size: 22px; /* Font size of top level list items */
      line-height: 45px;
      overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal ul {
      background: #fff;
  }
  .custom-menu-primary .hs-menu-flow-horizontal ul li{}
  .custom-menu-primary .hs-menu-flow-horizontal ul li a{
      color: #2874cc;
      padding: 10px 15px;
      margin: 0;
  }
  .custom-menu-primary .hs-menu-flow-horizontal ul li a:hover{
      color: #2874cc;
      background: none;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul {
      float: none;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a, 
  .nav-wrapper.scroll .hs-menu-wrapper.hs-menu-flow-horizontal ul li a, 
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
      color: #2874cc;
      padding: 0 20px;
      border-top: 0;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a:hover, 
  .nav-wrapper.scroll .hs-menu-wrapper.hs-menu-flow-horizontal ul li a:hover, 
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
      border-top: 0;
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul li{
     background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul li a{
      text-indent: 10px; /* Indent Child lists */
      font-size: 20px; /* Font size of child lists */
      color: #2874cc; 
      border-top: 0;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul li a:hover{
      color: #2874cc; 
      border-top: 0;
  }
  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
      background-color: transparent;
      max-width: 100%;
  }

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul ul li a{
      text-indent: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul ul ul li a{
      text-indent: 50px; /* Indent Child lists */
  }
}


/* =========================================================== */
/* =========== Styles from the Theme ============= */
/* =========================================================== */


 .solid-nav .body-container-wrapper {
    margin-top: 89px;
}
.global-sticky-header-offset {
  margin-top: 0;
}
.nav-wrapper {
    padding: 0;
}
.nav-wrapper .main-header {
    background: #2874cc;
    padding: 0 40px;
}
.nav-wrapper .mini-header{
    background-color: #2c489a;
    padding: 0 40px;
}
.nav-wrapper .logo {
    padding: 20px 0px
}
.nav-wrapper .widget-type-cta {
    padding: 12px 0;
}
.nav-wrapper .mini-header .header-text{
    padding: 2px 10px 0px 0px;
}
.nav-wrapper .mini-header .header-text.span2{
    margin-left: 0px!important;
}
.nav-wrapper .mini-header .header-text span{
    color: #fff;
    font-weight: 300;
    padding: 2px 0px 0px;
    margin: 0px;
}
.nav-wrapper .mini-header .header-text-icon{
    padding-left: 20px;
}
.nav-wrapper .mini-header .header-text-icon .fa {
    padding: 7px 10px 0;
    color: #fff;
}
.nav-wrapper .main-header .custom-menu-primary {
  padding: 0;
  color: #fff;
}
.nav-wrapper .mini-header p {
  padding: 0;
}
@media (max-width: 1100px) {
    .nav-wrapper .header-space.span5{
        width: 38%;
    }
    .nav-wrapper .mini-header .header-text-icon.span7{
        width:38%;
    }
    .nav-wrapper .mini-header .header-text.span5{
        width:49%;
    }
}

@media(max-width: 950px) {
    .global-sticky-header-offset, .solid-nav .body-container-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 850px) {
    .nav-wrapper .header-space.span5{
        width: 38%;
    }
    .nav-wrapper .mini-header .header-text-icon.span7{
        width:35%;
    }
    .nav-wrapper .mini-header .header-text.span5{
        width:55%;
    }
}
@media (max-width: 767px) {
    .nav-wrapper .mini-header .header-text-icon.span7{
        width:37%;
        float:left;
        text-align: right;
    }
    .nav-wrapper .mini-header .header-text.span5{
        width:62%;
        float:right;
    }
    .nav-wrapper .logo {
        padding: 20px 0 0;
    }
    .nav-wrapper .header-space {
        display: none !important;
    }
}

/* ================ Menu ================ */
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    float: right;
    padding: 0;
    margin: 0;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
    padding: 0;
    margin: 0;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    display: inline-block;
  	font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    width: 100%;
    max-width: 250px;
    padding: 20px 10px 20px;
    margin: 0 0 -3px;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover {
    border-bottom: 3px solid #2874cc;
  	border-top: 3px solid #2874cc;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible;
    text-overflow: clip;
    background-color: #2874cc;
    width: 100%;
    max-width: 300px;
    text-align: left;
    padding: 10px 15px;
    margin: 0;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    z-index: 1000;
    padding: 0;
}
.nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  margin-bottom: 0;
}
.mini-header-menu ul li {
  line-height: 1em;
  padding-top: 3px !important;
}
.mini-header-menu ul li a {
  padding: 5px 15px !important;
  border: 0 !important;
}
.main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1 {
  padding: 15px 0 0;
}
.mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  padding: 6px 0 0;
}



/* =========================================================== */
/* =========== Header Styles from the Child ============ */
/* =========================================================== */

/* Header Styles  */
.mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  background: none;
  padding: 6px 0 0;
}
.nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a:hover {
  color: #fe7b2b;
}
.nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  font-size: 15px
}
.nav-wrapper .mini-header p {
  margin: 0;
}
.nav-wrapper .mini-header .header-text {
  padding: 7px 0;
}
.nav-wrapper .mini-header .header-text a {
	font-size: 15px;
  text-decoration: none;
}
.nav-wrapper .mini-header .header-text a:hover {
  color: #fe7b2b;
}
.mini-header-menu ul li ul li {
  padding-top: 0 !important;
}

.nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  background-color: #2c489a;
}
.nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
  color: #fe7b2b;
}
.nav-wrapper .main-header {
  padding: 0 0 0 40px;
}
.nav-wrapper .logo {
  padding: 5px 0;
}
.main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1 {
	padding: 0;
}

.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  padding: 22px 12px 12px;
  border-top: 0;
  border-bottom: 2px solid transparent;
  width: auto;
  text-align: center;
  margin-bottom: 5px;
  -webkit-font-smoothing: auto;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover {
  border-top: 0;
  border-bottom: 2px solid #fff;
}
.main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child {
 	margin: 0 0 0 20px;
 	padding: 0;
 	border-radius: 0;
 	background: #fe7b2b;
 	transition: .3s ease;
  border-top: 0;
  border-bottom: 0;
}
.main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child:hover {
  background: #01BFA5;
	color: #2874cc;
  border-bottom: 0;
  border-top: 0;
}
.main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child:hover a, 
.main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child a{
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 7px;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  border-top: 0;
  border-bottom: 2px solid transparent;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
  border-top: 0;
  border-bottom: 2px solid #fff;
}
.mini-header .group-exercise ul {
  margin: 0 !important;
}
.mini-header .group-exercise a {
  margin: 1px 0 0;
}
.mini-header .group-exercise {
  background: #2874cc;
  transition: .3s ease;
}
.mini-header .group-exercise:hover {
  background: #fe7b2b;
}

.nav-wrapper .mini-header {
  padding: 0 0 0 40px;
}
.mini-header-menu ul li a {
  padding: 2px 15px !important;
}

@media(max-width: 1160px) {
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  	padding: 30px 7px 10px;
    font-size: 14px;
  }
}

@media(max-width: 962px) {
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  	padding: 31px 7px 11px;
    font-size: 13px;
  }
}

@media(max-width: 1000px) {
  .mini-header-menu ul li a {
    padding: 5px 10px !important;
  }
}

@media(max-width: 950px) {
  .nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    line-height: 1em !important;
  }
  .mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  	padding: 8px 10px 0 0;
	}
  .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child {
    margin: 0;
    height: 50px;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a:hover,
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    border-top: 0;
    border-bottom: 0;
    padding: 0 15px;
    line-height: 2em;
    color: #fff;
    font-size: 16px;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    max-width: unset;
    background: #2874cc;
    color: #fff;
  }
  a.child-trigger {
    height: 35px !important;
  }
  .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child {
    background-color: unset;
    height: unset;
  }
  .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child a, 
  .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child:hover a {
    margin-bottom: 0;
    color: #fff;
    padding: 0 15px;
  }
  .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child:hover  {
    background-color: unset;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
    border-bottom: 2px solid transparent;
	}
  .mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a, 
  .mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a:hover  {
    border-top: 0;
    border-bottom: 0;
    margin: 0;
    line-height: 1em !important;
  }
  .mini-header .search, .mini-header .mini-menu, .mini-header .header-text, 
  .mini-header .mini-header-menu {
    width: 100% !important;
    margin-left: 0 !important;
    text-align: center;
  }
  .nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal, 
  .nav-wrapper .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    float: none;
    text-align: center;
  }
  .mini-header-menu .search {
    padding: 0 15% 10px;
  }
  .mini-header .group-exercise {
    display: none;
  }
}
  
  
  
  
@media(max-width: 767px) {
  .nav-wrapper .mini-header-menu {
    display: inline-block;
  }
  .nav-wrapper .logo {
    padding: 10px 0;
  }
  .mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    padding: 4px 0 0;
    text-align: center
  }
  .mini-header .mini-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul li {
		float: none !important;
    text-align: center;
    width: auto;
    display: inline-block;
  }
  .mini-header .header-text p {
    margin: 0;
  }
  .nav-wrapper .mini-header .header-text {
    padding: 0;
    text-align: center;
  }
  .nav-wrapper .main-header {
    padding: 0 10px;
  }
  .mini-header-menu .search {
    padding: 0 10px;
  }
}
@media(max-width: 568px) {
  .mini-header .hs-menu-wrapper, .mini-header .hs-menu-wrapper * {
    width: unset;
  }
}


/* === Search ==== */
.hs-search-field input {
  margin: 5px 0 !important;
  font-size: 13px !important;
  line-height: 1em !important;
  padding: 3px 6px !important;
  color: #002E50;
}
.hs-search-field__suggestions {
  display: none !important;
}


.tablet-show {
  display: none !important;
}
@media(max-width: 950px) {
  .tablet-hide {
    display: none !important;
	}
  .tablet-show {
    display: block !important;
  }
}


.white-text h1, .white-text h2, .white-text h3, .white-text h4,
.white-text h5, .white-text h6, .white-text p, .white-text a,
.white-text div, .white-text span {
    color: #fff;
}


/* =========================================================== */
/* =========================================================== */
/* ================ Footer Styles ================ */
/* =========================================================== */
/* =========================================================== */


/* =========================================================== */
/* ================ Footer Styles from Styles ================ */
/* =========================================================== */
.footer-background {
    background-color: #ffffff;
}
.footer-background .page-center {
    padding: 40px 15px;
}
.footer-background h6, .footer-background h6 a {
    color: #002E50;
    margin-top: 20px;
}
.footer-background h6 a:hover {
    color: ;
}
.footer-background p, .footer-background a {
    line-height: 1.15em;
    color: #999;
    padding: 8px 0;
    margin: 0;
    -webkit-font-smoothing: auto;
}
.footer-background a:hover {
    text-decoration: none;
    color: #2874cc;
}
.footer-background .lp-logo{
    padding-top: 10px;
}
.footer-subscribe-form {
    margin-top: -6px;
    padding: 0;
}
.footer-background .footer-social-icons {
    margin: 0 !important;
    padding: 15px;
}
.footer-background .footer-social-icons .fa{
    padding: 30px 10px 10px;
}
.footer-background .footer-social-icons img {
    margin: 0 10px;
}
.footer-background .widget-type-simple_menu .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
    padding: 5px 0;
    font-weight: 300;
}
.footer-social-icons a {
    text-decoration: none;
}
.footer-background .fa {
    color: ;
}
.footer-row-2{
    border-top: 1px solid #002E50;
    margin-top: 20px;
    padding-top: 20px;
}
.footer-row-2 .copyright{
    padding-top: 40px;
}
.footer-row-2 .copyright p{
    padding: 5px 0;
    font-weight: 300;
    font-size: 14px;
    color: ;
}
@media (max-width: 775px) {
    .footer-background .lp-logo{
        padding-top: 20px!important;
    }
    .footer-subscribe-form .hs-button.primary.large{
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .footer-background{
        text-align: center;
    }
    .footer-subscribe-form {
        padding: 0 30px;
    }
    
}


/* =========================================================== */
/* ================ Footer Styles from Theme ================ */
/* =========================================================== */

.footer-background {
    background-color: ;
}
.footer-background .page-center {
    padding: 45px 15px 5%;
}
.footer-background p, .footer-background a {
    line-height: 1.15em;
    color: #002E50;
    border-bottom: 3px solid transparent;
    padding: 5px 0;
    margin: 0;
    text-decoration: none;
}
.footer-background p {
  font-weight: 300;
}
.footer-background .link-section p, .footer-background .link-section p a {
  font-size: 16px;
  font-weight: 400;
}
.footer-background a:hover {
    text-decoration: none;
    /*border-bottom: 3px solid #2874cc;*/
}
.copyright-background {
    background-color: #ffffff;
}
.copyright-background .page-center  {
    padding: 13px 0 5px;
}
.copyright-background span {
    font-weight: 300;
    color: #fff;
    font-size: 14px;
}
.footer-background .logo {
    padding-bottom: 5%;
}
.fa-circle {
    color: #fff;
} 
.footer-background .fa-footer-links a {
    text-decoration: none;
}
.footer-background .fa-footer-links {
  text-align: right;
}
.footer-background.footer-padding {
  padding: 5% 40px;
}
.footer-background .fa-footer-links a:hover {
    text-decoration: none;
    border-bottom: 0;
}
.footer-background .fa-stack-1x {
    color: #2874cc;
}
.footer-background .hs-menu-wrapper.hs-menu-flow-vertical > ul li a {
  padding: 0 20px !important;
}
.footer-background .hs-menu-wrapper.hs-menu-flow-vertical > ul li {
  padding: 2px 0 !important;
}
@media(max-width: 1000px) {
  .footer-background .footer-content {
    width: 100%;
  }
}
@media(max-width: 767px) {
    .footer-background .logo img {
        max-width: 200px;
    }
  .footer-background .fa-footer-links {
    text-align: center;
}
}




/* =========================================================== */
/* ================ Footer Styles from Child ================ */
/* =========================================================== */

.footer-background.footer-padding {
  padding: 5% 40px 20px;
}
.footer-background .hs-menu-wrapper.hs-menu-flow-vertical > ul li a {
  font-size: 16px;
  padding: 0 7px !important;
	font-weight: 400;
}
.footer-background p, .footer-background a {
  font-size: 16px;
  font-weight: 300;
}
.footer-background .link-section p, .footer-background .link-section p a {
  font-weight: 300;
}
.footer-background h4 {
  margin: 0;
  padding: 0 0 5px;
}
.footer-background h4 a {
  font-size: 18px;
}
.footer-background .link-section {
  padding-top: 2.5px;
}
.footer-background .copyright-text span {
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: auto;
}
.footer-background .logo {
  padding-bottom: 40px;
}
.footer-background .fa-footer-links {
  padding-top: 10px;
}

.footer-background .fa-footer-links .fa:hover {
  color: #fe7b2b
}


@media(max-width: 815px) {
  .footer-background .hs-menu-wrapper.hs-menu-flow-vertical > ul li a {
    font-size: 15px;
  }
}


/* ======= Site Styles ========== */
.education-feed.latest-posts {
  margin-top: 27px;
}

@media(max-width: 950px) {
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    background-color: #2874cc;
  }
  a.child-trigger span, a.child-trigger span:after {
    background-color: #fff;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 {
    float: left !important;
  }
}

@media(max-width: 767px) {
  main {
    padding-top: 0;
  }
  .mini-header-menu .search {
    padding: 0 50px;
  }
  .education-feed.latest-posts {
    margin-top: 0;
  }
}
 

/* Updated Styles */
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child {
 	margin: 0 0 0 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(1) {
 	margin: 0 0 0 0;
 	padding: 0;
 	border-radius: 0;
 	background: #fe7b2b;
 	transition: .3s ease;
  border-top: 0;
  border-bottom: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(1):hover {
  background: #e83a00;
	color: #2874cc;
  border-bottom: 0;
  border-top: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(1):hover a, 
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(1) a{
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 7px;
  padding: 21px 20px 12px;
  font-weight: 600;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(2) {
 	margin: 0 0 0 0;
 	padding: 0;
 	border-radius: 0;
 	background: #A9D887;
 	transition: .3s ease;
  border-top: 0;
  border-bottom: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(2):hover {
  background: #67b90e;
	color: #2874cc;
  border-bottom: 0;
  border-top: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(2):hover a, 
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(2) a{
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 7px;
  padding: 21px 20px 12px;
  font-weight: 600;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(3) {
 	margin: 0 0 0 0;
 	padding: 0;
 	border-radius: 0;
 	background: #7657d6;
 	transition: .3s ease;
  border-top: 0;
  border-bottom: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(3):hover {
  background: #2874cc;
	color: #2874cc;
  border-bottom: 0;
  border-top: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(3):hover a, 
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(3) a{
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 7px;
  padding: 21px 20px 12px;
  font-weight: 600;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(4) {
 	margin: 0 0 0 0;
 	padding: 0;
 	border-radius: 0;
 	background: #0e3848;
 	transition: .3s ease;
  border-top: 0;
  border-bottom: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(4):hover {
  background: #4b7ea2;
	color: #2874cc;
  border-bottom: 0;
  border-top: 0;
}
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(4):hover a, 
.apr-2020 .main-header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:nth-child(4) a{
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 7px;
  padding: 21px 20px 12px;
  font-weight: 600;
}