.boot-header-outer-wrap {
  padding: 20px 0px;
}
.boot-header-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.boot-logo {
  flex: 0 30%;
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-menu-outer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 70%;
  justify-content: flex-end;
}
.boot-menu-list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.boot-menu-list ul li {
  font-size: 16px;
  list-style: none;
}
.boot-menu-list ul li a {
  text-decoration: none;
  padding: 10px;
  line-height: 19px;
  font-weight:600;
  margin:0 5px;
  text-transform:uppercase;
}


/* Add styles for the header button within the mobile menu */
.header-menu ul li:last-child a {
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  padding: 12px 16px !important;
  border-radius: 4px;
}
.desktop{
  display:block;
}
.mobile{
  display:none;
}




/* ==========================================================================
Custom Menu Primary
========================================================================== */
/* Set ul background color */
/* Set li background Color */
/* Set link Color */
/* Set link Hover Color */
/* Parent List */

/* Child List */

/* Override max width on menu links */

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:1025px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}
/* ==========================================================================
Mobile Menu - Hubspot Standard Toggle 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.                     
*/
.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}
/*************** *****************/
.mobile-wrapper {
  display: none !important;
}
@media (max-width: 1025px){
  .desktop-wrapper {
    display: none !important;   
  }
  .mobile-wrapper {
    display: block !important;
  }
  li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:after {
    content:none;
  }
}
@media (max-width: 1025px){
  /* Variables
  ========================================================================== */
  /* Set Mobile Menu Background Color */
  /* Set Link Color */
  /* Set Link Hover Color */
  /* 
  * 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 
  */

  /* Toggle Button
  ========================================================================== */
  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: 0px;          /* Position Button at right of screen  */
    right: 10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #000000; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#ffffff;
    border-color: transparent;
  }
  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:#ffffff;
    border-color: transparent;
  }
  /* Toggle Button Icon
  ========================================================================== */
  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 22px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    display: inline-block;
    z-index:999999999;
  }
  .mobile-trigger i:before{
    top: -8px; /* Position top line */
  }
  .mobile-trigger i:after{
    top: 8px; /* Position bottom line */
    width: 14px;
    left: 8px;
  }
  .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: #ffffff; /* Icon color */ */
  }
  body.mobile-open .mobile-trigger i:before{
    transform: rotate(87deg);
    bottom: 0px;
    top: 0px;
  }
  body.mobile-open .mobile-trigger i{
    transform: rotate(-45deg);
  }
  body.mobile-open .mobile-trigger i:after{
    width:0px;
    height:0px;
  }
  /* 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:#058bbe; /* 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{
    // position: relative;
    padding-top: 44px; /* Makes room for button */
    margin: 10px 0 10px 0;
  }
  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  
  /* 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-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }
  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    overflow: visible;
  }
  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    padding-top:20px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul li:nth-child(5){
    padding-bottom:20px;
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 0px;
    color:#ffffff; /* link color set by global mobile-aColor 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 */
  }
  .menu-wrap.custom-menu-primary.js-enabled {
    margin: 0px;
    padding: 0px;
    min-height: 0px !important;
    width: 100% !important;
    float: none !important;
  }
  .mobile-menu-wrapper {
    padding: 20px;
  }
  .menu-wrap .mobile-trigger {
    right: 40px;
    top: 39px;
    border: none !important;
    color: #A6D5FF !important;
  }
  .menu-wrap.custom-menu-primary.js-enabled .hs-menu-wrapper {
    position: absolute;
    /*     top: 68px; */
    background-color: #046FF1;
    z-index: 999;
    width: 100%;
    margin: 0  !important;
    float: none !important;
    left: 0;
    right: 0;
    padding-top: 100px;
    padding-left: 20px;
    height:100vh;
  }
  .mobile-trigger i,.mobile-trigger i:before,.mobile-trigger i:after {
    background-color: #A6D5FF !important;
  }

  .menu-wrap .mobile-trigger i,/*.menu-wrap .mobile-trigger i:after,.menu-wrap .mobile-trigger i:before*/ { 
    background-color: #fff !important;
  } 
  .menu-wrap .mobile-trigger i{

  }
  .menu-wrap li:last-child {
    border: none !important;
  }

  .menu-wrap a {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 35px;
  }
  .header-wrapper {
    padding: 20px 10px;
  }
  .menu-wrap a {
    font-size: 14px;
    color: #fff;
    padding: 10px ;
    line-height: 30px;
    z-index: 99999;
  }
  .header-logo img {
    width: 180px !important;
  }
  .header-wrapper ul.active-branch {
/*     background: #fff none repeat scroll 0 0; */
    width: 100%;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header-wrapper {
    position: relative;
  }
  .menu-wrap ul.hs-menu-children-wrapper {
    width: 100%;
    border-bottom: 1px solid #e4eaf3;

  }
  .custom-menu-primary .hs-menu-wrapper > ul li a {
    padding: 0 0px ;
    color: #ffffff ;
  }
  .header-outer {
    display: block;
  }

  .header-wrapper .pagecenter {
    padding: 0px;
  }
}

@media(max-width:1025px){
  .boot-menu-list ul{
    display:flex;
    flex-direction:column !important;
    position: absolute;
    bottom: 70px;
  }
  .boot-menu-list ul li a{
    font-size:32px !important;
    line-height:40px !important;
    color:#fff;
    font-weight:800;
  }
  .header-menu ul li:last-child a {
    padding: 12px 16px;
    color: #1252BA;
    font-size: 24px !important;
    line-height: 29px !important;
  }
  .header-menu-outer {
    flex: 0 10%;
  }
  .boot-logo {
    flex: 0 80%;
  }
  .header-menu.desktop{
    display:none;
  }
  .header-menu.mobile{
    display:block;
  }

}
@media(max-width:768px){
  .menu-wrap .mobile-trigger{
    top: 28px;
  }
  .boot-logo {
    flex: 0 65%;
}
}

/* ------------------------------MediaQuery---------------------------------- */
@media only screen and (max-width:1191px) {
  .boot-header-outer-wrap {
    padding: 20px 0px 30px;
  }

 
}
