.header-section {
	background-color: #c70000;
  position: fixed;
  z-index: 1;
  width: 100% !important;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 10px;
  line-height: normal;
  text-decoration: none;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a:hover {
	text-decoration: none;
}
.header-section .hs-menu-flow-horizontal {
	line-height: 0;
  text-align: center;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children > a:after {
  content: '';
	display: inline-block !important;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  padding: 0;
  cursor: pointer;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	background-color: #c70000;
  min-width: 160px;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	border-bottom: 1px solid #EFEFEF;
  padding: 10px 10px;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
  opacity: unset;
  visibility: unset;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	opacity: 1;
  visibility: visible;
  display: none;
}
.header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper.active {
	display: block;
}

.blog .custom-banner-image {
	margin-top: 60px;
}

/*----- footer ----*/
.footer-section {
  background-color: #333333;
  color: #fff;
}
.footer-section .text-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /*max-width: 490px;
  margin: 0 auto;*/
}
.footer-section .text-right:after {
  content: "";
  display: table;
  clear: both;
}
.footer-section .text-right > .add-to-calendar {
	padding: 12px 0;
  font-size: 14px;
  /*float: left;*/
}
.footer-section .text-right .add-to-calendar a {
	font-size: 14px;
  color: #fff;
  border-right: 1px solid #fff;
  padding: 0 3px 0 5px;
  background-color: transparent;
}
.footer-section .text-right .add-to-calendar a:hover {
	background-color: transparent;
}
.footer-section .text-right .add-to-calendar a:last-child {
	border: none;
}
.footer-section .footer-logo-wrapper {
	margin-left: 20px;
  padding: 12px 0;
  /*float: right;*/
}
.footer-section .footer-logo-wrapper .link-button {
	background-color: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.footer-section .footer-logo-wrapper .link-button:hover {
	text-decoration: underline;
  background-color: transparent;
}


@media (min-width: 768px){  /*  used to be 961 - need to change back? */

  a.mobile-trigger-new, a.child-trigger-new {
      display: none !important; /* Hide button on Desktop */
  }
  .header-text-for-mobile {
  	display: none !important;
  }

}
@media (max-width: 767px){   /* used to be 960 - need to change back?  */

  /* Variables
     ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */
    /* Toggle Button
     ========================================================================== */
  .header-section .hs-menu-flow-horizontal {
  	display: none;
    min-height: 300px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  }
  a.mobile-trigger-new {
      display: inline-block !important; /* Hide button on Desktop */
      cursor: pointer; /* Mouse pointer type on hover */
      position: absolute; /*******************************************/
      top: 19px;          /* Position Button at top right of screen  */
      right: 15px;        /*******************************************/
      width: 34px; /* Button width */
      height: auto; /* Button height */      
      padding: 0;
      background: transparent; /* Background color */
      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-transition:color .2s ease-in; 
      -moz-transition:color .2s ease-in;
      transition:color .2s ease-in;
      border: 0px solid #E2E2E2;
  }

  a.mobile-trigger-new:hover {
      text-decoration: none; /* Removes link text underline on button */
      color: #E2E2E2;
      border-color: #E2E2E2 !important;
  }

  a.mobile-trigger-new span{
      display: inline;
  }

  a.mobile-trigger-new span:before{
      position: absolute;
      content: 'Menu'; /* Change the text on the closed toggle button */
      display: none;
  }

  a.mobile-trigger-new span:after{
      position: relative;
      right: 2px;
      content: 'Close'; /* Change the text on the open toggle button */
      background-color: #000;
      opacity: 0;
      transition: opacity .4s ease-in-out;
      -moz-transition: opacity .4s ease-in-out;
      -webkit-transition: opacity .4s ease-in-out; 
      display: none
}

  /* Change button when menu is open */
  .mobile-open a.mobile-trigger-new{
      -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-new span:after{
     opacity: 1; 
  }


  /* Toggle Button Icon & Animations
     ========================================================================== */

  a.mobile-trigger-new i {
      display: inline;
      position: relative;
      top: -5px;
      margin-left: 5px;
      -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-new  i:before, a.mobile-trigger-new i:after {
      position: absolute;
      content: '';
  }
  a.mobile-trigger-new  i, a.mobile-trigger-new  i:before, a.mobile-trigger-new  i:after {
      width: 22px; /* Icon line width */
      height: 2px; /* Icon line height */
      background-color: #fff; /* Icon color */
      display: inline-block;
  }
  a.mobile-trigger-new  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-new  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-new 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-new i:before {
      margin-top: 0;
      -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-new i:after {
      margin-top: 0;
      -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-new {
      display: block !important; 
      cursor: pointer; 
      position: absolute;
      top: 0px;
      right: 0px;
      width: 55px !important;
      min-width: 55px !important;
      height: 45px !important; / 
      padding: 0 !important;
      border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  a.child-trigger-new:hover {
      text-decoration: none;
  }*/


  /* Child Toggle Button Icon & Animations
     ========================================================================== */

  /*a.child-trigger-new span {
      position: relative;
      top: 50%; 
      margin: 0 auto !important;
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger-new span:after {
      position: absolute;
      content: '';
  }
  a.child-trigger-new span, a.child-trigger-new span:after {
      width: 10px; 
      height: 1px; 
      background-color: #E2E2E2; 
      display: block;
  }
  a.child-trigger-new 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-new.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-new.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;
  }*/
  .header-text-for-mobile a {
  	color: #fff;
    font-size: 18px;
    line-height: 20px;
  }
  .header-text-for-mobile {
  	padding: 19px 0;
  }
  .header-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    font-size: 14px;
    padding: 14px 11px;
  }
  .header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children > a.child-trigger-new:after, 
  .header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children > a.child-trigger-new {
  	display: none !important;
  }
  .header-section .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children > a span {
  	display: inline;
  }
  .footer-section .text-right {
    flex-direction: column;
  }
  .footer-section .footer-logo-wrapper, .footer-section .text-right > .add-to-calendar {
  	/*float: none;*/
    text-align: center;
    padding: 0;
  }
  .footer-section .text-right > .add-to-calendar span.add-to-calendar {
  	display: block;
  }
  .footer-section {
  	padding: 18px 0;
  }
}