


.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;
}

.hs-menu-item ul li a:hover{color:red !important;}

header.header .lower-header .main-menu .hs-menu-wrapper ul li ul li a:hover{color:#2e396b !important;}

@media screen and (min-width:992px) {
	
	
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}




.mobile-trigger, .child-trigger{
  display: none; 
}

@media (max-width: 991px){


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

  {% set menuColorMobile = "#000000" %}   /* Set Mobile Menu Background Color */
  {% set aColorMobile = "#ffffff" %}      /* Set Link Color */
  {% set aColorHoverMobile = "#ffffff" %} /* 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 
  */

  .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: 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;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:;
  }


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

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: -50px;          /* Position Button at right of screen  */
    right: 10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: transparent; /* Background color */
    border: 1px solid #002c6b;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: ; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:;
    background-color: ; 
    border-color: #002c6b;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:;
    background-color: ; 
    border-color: #002c6b;
  }


  /* 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;
    color: #002c6b;
    background-color: #002c6b;
    display: inline-block;
  }
  .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:#002c6b; /* Icon color */
  }


  /* 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: 100% !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:; /* 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: 0; /* Makes room for button */
    margin: 0 0 0 0;
    width:100%;
  }

  /* 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: auto;
    position: absolute; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: -16px;          /**************************************************************/
    padding: 0;
    right:-16px;

  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color:; /* 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{
    font-size: 18px; /* Font size of top level list items */
    line-height: 28px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px dotted rgba(255, 255, 255, .35); /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 16px;
    color:; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:; /* 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 */
  }
}
/* =============== */
header.header .header-sec { width: 100%; display: inline-block; }
header.header { position: fixed; left: 0; right: 0; top: 0; width: 100%; display: inline-block; z-index: 99; background-color: transparent; }
header.header .header-sec .top { width: 100%; display: inline-block; background-color: #fff; vertical-align: top; padding: 6px 0; }
header.header .upper-header { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
header.header .logo { width: fit-content; display: inline-block; line-height: 0; }
header.header .upper-header .icon-menu { display: flex; gap: 60px; align-items: center; padding: 0; margin: 0; }
header.header .upper-header .icon-menu li { display: inline-block; }
header.header .upper-header .icon-menu li a { display: flex; align-items: center; font-size: 18px; color: #707070; gap: 8px; text-decoration: none; }
header.header .upper-header .icon-menu li a .menu-text { font-family: "Cabin", sans-serif; font-size: 15px; line-height: normal; }
header.header .icon { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; }
header.header .lower-header { padding: 20px 0; width: 100%; display: inline-block; vertical-align: top; }
header.header .lower-header .main-menu .hs-menu-wrapper ul { display: flex; align-items: center; justify-content: center !important; gap: 60px !important; }
header.header .lower-header .main-menu .hs-menu-wrapper ul li a { color: #fff; text-decoration: none; }
header.header .logo a { display: inline-block; width: fit-content; }
header.header .logo img { max-width: 102px; width: 100%; display: block; height: 61px; margin:10px 0; }
header.header .upper-header .icon-menu li a .icon img { height: 100%; width: 100%; }
header.header .lower-header .main-menu { display: flex; gap: 30px; justify-content: center; align-items: center; }
header.header .lower-header .main-menu .logo { display: none; }
header.header .lower-header .main-menu .hs-menu-wrapper ul { justify-content: flex-end !important; }
header.header .lower-header .main-menu .hs-menu-wrapper ul li { line-height: normal; display: inline-block; width: fit-content; }
@media(min-width:992px) {
    .header-sec.sticky .lower-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; -webkit-animation: slideDown 0.3s ease-out; animation: slideDown 0.3s ease-out; background-color: #fff; padding: 6px 0; filter: drop-shadow(0px 0px 4.5px rgba(0, 0, 0, 0.13)); }
    @-webkit-keyframes slideDown {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }
    @keyframes slideDown {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }
    header.header .header-sec.sticky .lower-header .main-menu .header_menu { flex: 1; }
}
header.header .header-sec.sticky .top { display: none; }
header.header .header-sec.sticky .main-menu .hs-menu-wrapper ul li a { color: #2e396b; }
header.header .header-sec.sticky .logo { display: block; }
header.header .header-sec.sticky .lower-header .main-menu { justify-content: space-between; }
header.header .header-sec.sticky .lower-header .main-menu .header_menu { display: inline-block; }
header.header .lower-header .main-menu .hs-menu-wrapper ul li.hs-menu-item.hs-item-has-children > a { position: relative; padding-right: 20px; display: flex; align-items: center; }
header.header .lower-header .main-menu .hs-menu-wrapper ul li.hs-menu-item.hs-item-has-children > a:after { content: ''; position: absolute; width: 10px; height: 10px; background: transparent; text-indent: -9999px; border-top: 2px solid #ffffff; border-left: 2px solid #ffffff; transition: all 250ms ease-in-out; text-decoration: none; transform: rotate(-135deg); right: 0; margin: 0; display: inline-block; top: 5px; z-index: 2; }
header.header .lower-header .main-menu .hs-menu-wrapper ul li.hs-menu-item.hs-item-has-children:hover > a:after { transform: rotate(45deg); top: 10px; }
header.header .header-sec.sticky .lower-header .main-menu .hs-menu-wrapper ul li.hs-menu-item.hs-item-has-children > a:after { border-top: 2px solid #2e396b; border-left: 2px solid #2e396b; }
header.header .lower-header .main-menu .hs-menu-wrapper ul ul { gap: 4px !important; width: 100%; }
@media(max-width:1199px) {
    header.header .upper-header .icon-menu { gap: 30px; }
    header.header .lower-header .main-menu .hs-menu-wrapper ul { gap: 30px !important; }
}
@media(max-width:991px) {
    body .mobile-trigger i { -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
    body.mobile-open .mobile-trigger i { background-color: transparent; }
    body.mobile-open .mobile-trigger i::before, body.mobile-open .mobile-trigger i::after { content: ""; display: block; position: absolute; width: 100%; height: 2px; background-color: currentColor; transition: transform 0.3s ease-in-out; }
    body.mobile-open .mobile-trigger i::before { -webkit-transform: translateY(6px) rotate(45deg); -ms-transform: translateY(6px) rotate(45deg); -o-transform: translateY(6px) rotate(45deg); transform: translateY(6px) rotate(45deg); }
    body.mobile-open .mobile-trigger i::after { -webkit-transform: translateY(-6px) rotate(-45deg); -ms-transform: translateY(-6px) rotate(-45deg); -o-transform: translateY(-6px) rotate(-45deg); transform: translateY(-6px) rotate(-45deg); }
    header.header .header-sec .top { display: none; }
    header.header .lower-header .main-menu .logo { display: block; }
    header.header .lower-header { background-color: #fff; padding: 6px 0; position: relative; }
    header.header .header-sec .main-menu .hs-menu-wrapper ul li a { display: flex; align-items: center; gap: 10px; }
    header.header .lower-header .main-menu .hs-menu-wrapper ul { background-color: #fff; flex-direction: column; padding: 20px 0; align-items: flex-start; gap: 10px !important; justify-content: flex-start !important; }
    header.header .header-sec.sticky .lower-header .main-menu { justify-content: flex-start; }
    header.header .lower-header .main-menu { flex-wrap: wrap; justify-content: flex-start; gap: 0; }
    header.header .header-sec .main-menu .hs-menu-wrapper ul li a { text-transform: uppercase;color: #2e396b; }
}



.hover-links a{font-size:15px !important;}
@media(min-width:1080px){
	/* ============= */
.menuTop{background:#afcb37; padding:20px; z-index:4; position:relative; color:white 
	!important; }

.menuTop:hover{background:#219d82;}

.menuTop a{color:white !important; }
.menuTop a:hover{color:#2e396b !important; }
	
	ul .hs-menu-item ul{background:#afcb37; padding:20px; display:flex; flex-direction:column; min-width:216px; width:100%; transition: background 0.2s ease, border-radius 0.1s ease;}
	
	
	ul .hs-menu-item ul:hover{border-radius:10px; background:#219d82;}
		ul .hs-menu-item ul:hover li a{color:White !important;}

	
	
		ul .hs-menu-item ul li{display:flex;}

	.menuLibros .hover-links{position:absolute;}
}


@media(max-width:680px){
	li a .icon img, li a .icon img{display:none !important;}
}