/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/****************************************/
/* Includes
/****************************************/





/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.header-container-wrapper {
position: fixed;
display: block;
width: 100%;
z-index: 500;
}

.header {
  border-bottom: 1px solid #DC2C1F;
  background-color: #0A0A0A;
  padding: 12px 0;
}

@media (max-width: 1024px){

  
    .header {
      overflow: hidden;
      position: relative;
      padding: 13px 0;
      height: 70px;
    }

    .mobile-open .header {
      position: static;
      overflow: visible;
    }
  
  
}

.hs-menu-wrapper {
  display: inline-block;
}


.menu a {

  display: inline-block;
  position: relative;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #FFF;
   transition: color .1s ease-out,background .1s ease-out,border .1s ease-out,height .35s ease,line-height .35s ease;
  -webkit-transition: color .1s ease-out,background .1s ease-out,border .1s ease-out,height .35s ease,line-height .35s ease;

}

.menu a:after {

  content: "";
  display: block;
  width: 100%;
  height: 2px;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform-origin: left center;
  transition: all .15s ease-out;
  filter: alpha(opacity=@opacity * 100);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;

}

.menu a:hover:after {
	opacity: 1;
  background-color: #DC2C1F;
  filter: alpha(opacity=@opacity * 100);
  -moz-opacity: 100;
  -khtml-opacity: 100;
  opacity: 100;
  opacity: 1;
  -webkit-transform: scale(1,1);
  -ms-transform: scale(1,1);
  transform: scale(1,1);
}

.menu a.button {

  color: white;
  display: inline-block;
  margin-left: 15px;
  
}


@media (max-width: 900px){

  .main-menu .logo img {
		max-width: 160px;
  }
  
}

.main-menu .hs-menu-depth-1 > a {

  font-size: 0.9375rem;
  text-transform: uppercase;
  
}

.hs-item-has-children {
	position: relative;
}

.hs-item-has-children:hover .hs-menu-children-wrapper {

  visibility: visible;
  opacity: 1;

}

.hs-menu-children-wrapper {

  position: absolute !important;
  width: 260px;
  background-color: black;
  box-shadow: 0 0 4px rgba(0,0,0,.2);
  visibility: hidden;
  z-index: 200;
  top: 100%;
  left: 0;
  opacity: 0;
  
}

.hs-menu-children-wrapper li {

  padding: 0 10px;
  width: 100%;
  
}

.hs-menu-children-wrapper li:first-child {
	padding-top: 10px;
}

.hs-menu-children-wrapper li:last-child {
	padding-bottom: 10px;
}

.hs-menu-children-wrapper a {
  display: block;
	font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 10px;
}

.menu ul li{
  margin-left: 0;
}

/* ==========================================================================
   Custom Menu Primary
========================================================================== */


/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:1025px) {
  
  .custom-menu-primary {
  	display: none;
  }
  
  .custom-menu-primary .hs-menu-wrapper { 
    display: inline-block !important;
  }
  
  .mobile-trigger, .child-trigger{
      display: none; /* Hide button on Desktop */
  }
  
}


/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
========================================================================== */


@media (max-width: 1080px){
  
  .header-container-wrapper {
  position: unset;
}
  
  .menu > span,
  .menu .button {
  	display: none !important;
  }
  
  /* 
    * 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 .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a {
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: white;
    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: 100%;
    line-height: 1;  
    text-decoration: none;
    text-indent: 0px;
    text-align: left;  
  }
  
  .custom-menu-primary.js-enabled {
    display: none;
     
  -webkit-transition: right .25s ease;
  -moz-transition: right .25s ease;
  -o-transition: right .25s ease;
  -ms-transition: right .25s ease;
  transition: right .25s ease;
;
  }
  
  .mobile-open .custom-menu-primary.js-enabled {
    display: block;
  }


  /* Toggle Button
     ========================================================================== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer;
    position: absolute; 
    top: 18px;
    right: 20px;
    width: 35px;
    height: 35px;
    padding: 4px 6px 5px 7px;
    background: transparent; /* Background color */
    border: none;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    color: white; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color: #DC2C1F;
    background-color: transparent; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color: white;
    background-color: transparent; 
    border-color: transparent;
    z-index: 11;
  }


  /* Toggle Button Icon
     ========================================================================== */

    .mobile-trigger i {
      display: inline;
      position: relative;
      top: -4px;
      transform: none;
    }
  
    .mobile-trigger i:before, .mobile-trigger i:after{
      position: absolute;
      content: '';
    }
  
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 21px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: white; /* Icon color */
    display: inline-block;
    opacity: 1;
    transform: none;
  }
  .mobile-trigger i:before{
    top: -6px; /* Position top line */
  }
  .mobile-trigger i:after{
    top: 6px; /* Position bottom line */
  }
  
  .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after,  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
      background-color: white; /* Icon color */
  }
  
  .mobile-open .mobile-trigger i {
    top: -4px;
    transform: rotate(-45deg);
    transition: ease .3s transform;
  }
  
  .mobile-open .mobile-trigger i:before {
    opacity: 0;
  }

  .mobile-open .mobile-trigger i:before, 
  .mobile-open .mobile-trigger i:after {
    top: 0px;
    transform: rotate(90deg);
  }


  /* Child Toggle Button
     ========================================================================== */

  .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);
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color:#DC2C1F; /* Icon color */
    display: block;

  }
  .child-trigger i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trigger.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .child-trigger.child-open i{
  }

    
  /* Menu Styles on Mobile Devices
     ========================================================================== */  
     
   .custom-menu-primary.js-enabled {
     z-index: 20;
     position: relative;
     top: 16px;
   }

 
  /* 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;
  }

  .custom-menu-primary .hs-menu-wrapper {
    background-color:; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }
 
  
  .custom-menu-primary > span:first-child .hs-menu-wrapper ul {
  	padding-bottom: 0;
  }
  
  .custom-menu-primary > span:last-child .hs-menu-wrapper ul {
  	padding-top: 0;
    text-align: center;
  }
  
  .custom-menu-primary > span:last-child .hs-menu-wrapper ul li {
  }

   /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a {
    font-size: 14px; /* Font size of top level list items */
    font-weight: 600;
    line-height: 1.1;
    overflow: visible;
    padding: 1rem 0;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-bottom: 1px solid rgba(128,128,128,.2); /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    color: #333333;
    display: block;
    padding: 15px 20px;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:#DC2C1F; /* link hover color set by global mobile-aColorHover variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
  }

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