.holders-mega-menu__main-items{   
  display: flex;
  margin-bottom: 0;
}

@media (max-width: 1024px) { 
  .holders-mega-menu__main-items{ 
    display: none;
  }
}

.holders-mega-menu__item{
  list-style: none;
}

.holders-mega-menu__item:hover > a {
  color: #008DCD;
}

.holders-mega-menu__item--arrow > a{
  align-items: center;
  display: flex;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.holders-mega-menu__item--arrow > a::after{
  border-right: 2px solid;
  border-top: 2px solid;
  content: "";
  display: block;
  height: 8px;
  margin: -5px 0 0 10px;
  transform: rotate(135deg);
  transition: transform .3s;
  width: 8px;
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) > a::after{
  transform: translateY(4px) rotate(-45deg);
}

.holders-mega-menu__item > a{
  color: #5a5a5b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.holders-mega-menu__item > a:hover{
  text-decoration: none;
}

.holders-mega-menu__dropdown {
  background-color: #ffffff;
  border-bottom: 1px solid #edeeec;
  border-top: 1px solid #edeeec;
  visibility: hidden;
  opacity: 0;  
  left: 0;
  padding: 30px 64px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: -10;
  transition: opacity 0.3s ease-in-out;
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) .holders-mega-menu__dropdown{
  visibility: visible;
  opacity: 1; 
  z-index: 10;
}

{# ****** STYLES DESCRIPTION CARDS  ******#}
.holders-mega-menu__card-button {
  color: #5a5a5b;
  padding: 30px 20px;
  transition: background 0.3s linear, transform 0.5s ease, opacity 0.5s ease;
  width: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) .holders-mega-menu__dropdown > .holders-mega-menu__cards > .holders-mega-menu__card-button {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); 
}

.holders-mega-menu__card-button:hover,
.holders-mega-menu__card-button:focus,
.holders-mega-menu__card-button:active{
  background: #f7f8f6;
  color: #5a5a5b;
  text-decoration: none;
}

.holders-mega-menu__card-button svg{
  margin-top: 34px;
}

{# ****** END STYLES DESCRIPTION CARDS  ******#}



{# ****** TABS STYLES ******#}
.holders-mega-menu__tabs{
  column-gap: 40px;  
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: fit-content;
}

.holders-mega-menu__tabs-wrapper{
  width: 90%;
  min-height: 350px;
}

@media (max-width: 1700px) { 
  .holders-mega-menu__tabs-wrapper{
    width: 90%;
  }
}

@media (max-width: 1300px) { 
  .holders-mega-menu__tabs-wrapper{
    width: 60%;
  }
}

.holders-mega-menu__tab-button {
  border-bottom: 2px solid transparent;
  color: #5a5a5b;
  cursor: pointer;
  font-size: 22px;
  font-size: 24px;
  line-height: 110%;
  padding: 0 0 5px;
  opacity: 0;
  transform: translateY(50%);
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) .holders-mega-menu__dropdown .holders-mega-menu__tab-button {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 1s ease-out;
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) .holders-mega-menu__dropdown .holders-mega-menu__tab-button:nth-child(1) {
  transition-delay: 0.15s;
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) .holders-mega-menu__dropdown .holders-mega-menu__tab-button:nth-child(2) {
  transition-delay: 0.3s;
}

.holders-mega-menu__item:has(.holders-mega-menu__dropdown-toggle input:checked) .holders-mega-menu__dropdown .holders-mega-menu__tab-button:nth-child(3) {
  transition-delay: 0.45s;
}

.holders-mega-menu__tab-button:hover{
  border-bottom: 2px solid rgba(239,139,18,.2);
  color: #ef8b12;
}

.holders-mega-menu__tab-button--active{
  border-bottom: 2px solid #ef8b12;
  color: #fd7e14;
  font-weight: 700;
}

.holders-mega-menu__tab-content{
  width: 100%;
  display: block;
  visibility: visible;
  opacity: 1;
  margin-top: 25px;
  position: absolute;
  top: 30px;
  left: 0;
}

.holders-mega-menu__tab-content--hidden {
  visibility: hidden;
  opacity: 0;
}

.holders-mega-menu__tab-menu{
  padding-left: 0;
  pointer-events: none;
}

.holders-mega-menu__tab-menu.open {
  pointer-events: auto;
}

.holders-mega-menu__tab-menu > li {
  align-items: center;
  display: flex;    
  padding: 10px 0;
  width: 100%;
  opacity: 0;  
  transition: opacity .3s ease;
}

.holders-mega-menu__tab-menu.open > li {
  opacity: 1;  
}

.holders-mega-menu__tab-menu.open > li:nth-child(1) {
  transition-delay: .5s;  
}

.holders-mega-menu__tab-menu > li:has(ul.holders-mega-menu__tab-sub-menu--open)::after,
.holders-mega-menu__tab-menu > .holders-mega-menu__tab-menu-link--arrow:hover::after{
  border-right: 2px solid #5a5a5b;
  border-top: 2px solid #5a5a5b;
  content: "";
  display: block;
  height: 12px;
  margin-left: auto;
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  transition: .3s;
  width: 12px;
}

.holders-mega-menu__tab-menu-link {
  background-color: transparent;
  color: #333;
  cursor: pointer;  
  display: inline-block;  
  font-size: 20px;
  text-decoration: none;    
  width: 100%;
}

.holders-mega-menu__tab-menu-link:hover{
  color: #008dcd;
  text-decoration: none;  
}

.holders-mega-menu__tab-sub-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
  left: 100%; 
  margin-top: 10px;
  position: absolute;  
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: .3s;
}

.holders-mega-menu__tab-sub-menu li {
  list-style: none;
  width: 40%;
}

.holders-mega-menu__tab-sub-menu--open {
  display: flex;
}

.holders-mega-menu__tab-menu > li:hover .holders-mega-menu__tab-sub-menu{
  {# Change #}
  margin-top: 0.75em;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.holders-mega-menu__tab-sub-menu-link{
  color: #5a5a5b;
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;  
}

.holders-mega-menu__tab-sub-menu-link:hover{
  color: #ef8b12;
  text-decoration: none;
}


{# ****** CARD BUTTON STYLES ******#}

.holders-mega-menu__card-tabs{
  min-height: 320px;
  position: absolute;
  right: 64px;
  top: 100px;  
  width: 250px;
}

.holders-mega-menu__card-tabs:hover{
  filter: brightness(0.8); 
}

.holders-mega-menu__card-tabs > div{
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 20px;
  position: absolute;
  row-gap: 10px;
  text-decoration: none;
}

.holders-mega-menu__card-tabs a:hover{  
  text-decoration: none;
}

.holders-mega-menu__card-title{
  color: #fff;
  font-size: calc(((100vw - 374px) * .00442) + 20px);
  font-weight: 700;
  max-width: 155px;
}

.holders-mega-menu__button{
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNyAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjA0IDAuNjM0NzY2TDguNjMgMi4wNDQ3N0wxMi41OCA1Ljk5NDc3SDBWNy45OTQ3N0gxMi41OUw4LjY0IDExLjk0NDhMMTAuMDYgMTMuMzY0OEwxNi40MSA3LjAwNDc3TDEwLjA0IDAuNjM0NzY2WiIgZmlsbD0iI0VGOEIxMiIvPgo8L3N2Zz4K) 87% no-repeat;
  color: #ef8b12;
  font-weight: 700;
  padding-right: 30px;
}

.holders-mega-menu__button:hover{  
  background-position: center right 15%;
  color: #ee7715;
}
{# ****** END CARD BUTTON STYLES ******#}



{# ****** TOGGLE BUTTON  ******#}

.holders-mega-menu__toggle{
  align-items: center;
  background: #008dcd;
  border-radius: 40px;
  color: #fff;
  display: none;
  font-family: HelveticaLTWXX-Bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Arial,Noto Sans,sans-serif;
  line-height: 1.2;
  padding: 10px 22px;
  position: relative;
}

@media (max-width: 1024px) { 
  .holders-mega-menu__toggle{
    display: inline-flex;
    min-height: 47px;
    z-index: 10;
  }
}

.holders-mega-menu__toggle:has(input:checked){
  background-color: #fff;
  color: #008dcd;  
}

.holders-mega-menu__toggle:has(input:checked) svg{
  fill: #008dcd;
}

.holders-mega-menu__toggle:has(input:checked) svg path{
  stroke: #008dcd;
}

.holders-mega-menu__toggle input{
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}


.holders-mega-menu__hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 10px;
}

.holders-mega-menu__hamburger span {
  display: block;
  height: 2px;
  width: 20px;
  margin-bottom: 4px;
  position: relative;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s;
  margin: 0;
  background: #FFFFFF;
}

.holders-mega-menu__hamburger span:nth-child(1) {
  transform-origin: 0% 0%;
}

.holders-mega-menu__hamburger span:nth-child(2) {
  opacity: 1;
  transform-origin: 0% 50%;
}

.holders-mega-menu__hamburger span:nth-child(3) {
  transform-origin: 0% 100%;
}

.holders-mega-menu__toggle:has(input:checked) .holders-mega-menu__hamburger span:nth-child(1) {
  transform: rotate(40deg);
  background: #008dcd;
}

.holders-mega-menu__toggle:has(input:checked) .holders-mega-menu__hamburger span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.holders-mega-menu__toggle:has(input:checked) .holders-mega-menu__hamburger span:nth-child(3) {
  transform: rotate(-40deg);
  background: #008dcd;
}


.holders-mega-menu__open-icon{
  display: inline-block;
}

.holders-mega-menu__toggle:has(input:checked) .holders-mega-menu__open-icon path:nth-child(1) {
  display: block;
}


.holders-mega-menu__dropdown-toggle{
  margin-top: -17px;
  position: relative;
  width: 100%;
}

.holders-mega-menu__dropdown-toggle input{
  cursor: pointer;
  display: block !important;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}


{# ****** MOBILE STYLES  ******#}

@media (max-width: 1150px) { 
  .holders-mega-menu-mobile {
    transform: translateY(-50%);
  }
}

.holders-mega-menu-mobile {
  background: #008dcd;
  height: 100vh;
  left: 0;    
  padding-top: 60px;
  position: absolute;
  width: 100%;
  opacity: 0;  
  pointer-events: none;
  transition: .6s;
  overflow: hidden;
}

/* Mobile Container */
.header__container:has(.header__navigation .holders-mega-menu .holders-mega-menu__toggle input:checked) .holders-mega-menu-mobile{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.holders-mega-menu-mobile ul {  
  background: #008dcd;
  transform: translateX(100%);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;  
  visibility: hidden;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;  
  transition: .3s;
}

.holders-mega-menu-mobile ul.active {
  display: block;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  overflow: hidden;
}

.holders-mega-menu-mobile__menu-level-0{
  padding: 0 20px;
  z-index: 1;
}

.holders-mega-menu-mobile__menu-level-0 > li + li{
  border-top: 1px solid hsla(0,0%,100%,.3);
}

.holders-mega-menu-mobile__item-level-0{
  list-style: none;
}

.holders-mega-menu-mobile__item-level-0 a{ 
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: calc(((100vw - 374px) * .00442) + 28px);
  font-weight: 700;
  padding: 20px 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.holders-mega-menu-mobile__item-level-0 a:active,
.holders-mega-menu-mobile__item-level-0 a: focus{ 
  background-color: transparent;
}



.holders-mega-menu-mobile__item-level-0--arrow{
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgNiA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC4yMjY1NjIgMS40NEwzLjI3OTkgNC41TDAuMjI2NTYyIDcuNTZMMS4xNjY1NiA4LjVMNS4xNjY1NiA0LjVMMS4xNjY1NiAwLjVMMC4yMjY1NjIgMS40NFoiIGZpbGw9IiNGRkYiLz4KPC9zdmc+Cg==) center right 0 no-repeat;
  background-size: 10px;
  padding-right: 30px;  
}

.holders-mega-menu-mobile__menu-level-1{
  padding: 0 20px;
  z-index: 3;
}

.holders-mega-menu-mobile__menu-level-1--tab > li + li{
  border-top: 1px solid hsla(0,0%,100%,.3);
}

.holders-mega-menu-mobile__item-level-1{
  list-style: none;
}

.holders-mega-menu-mobile__item-level-1 .holders-mega-menu-mobile__tab{
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgNiA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC4yMjY1NjIgMS40NEwzLjI3OTkgNC41TDAuMjI2NTYyIDcuNTZMMS4xNjY1NiA4LjVMNS4xNjY1NiA0LjVMMS4xNjY1NiAwLjVMMC4yMjY1NjIgMS40NFoiIGZpbGw9IiNGRkYiLz4KPC9zdmc+Cg==);
  background-position: 100% 50%;  
  background-repeat: no-repeat;
  background-size: 10px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: calc(((100vw - 374px) * .00442) + 28px);
  font-weight: 700;
  line-height: 120%;
  padding: 40px 0;
}

.holders-mega-menu-mobile__tab:hover{
  text-decoration: underline;  
}

.holders-mega-menu-mobile__menu-level-2{
  max-height: 375px;
  overflow: scroll;
  padding: 0 20px;
  z-index: 4;
}

.holders-mega-menu-mobile__item-level-2{
  list-style: none;
}

.holders-mega-menu-mobile__item-level-2 a{
  color: #fff;
  cursor: pointer;
  font-size: calc(((100vw - 374px) * .00221) + 18px);
  font-weight: 700;
  line-height: 140%;
  padding: 15px 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.holders-mega-menu-mobile__item-level-2--arrow{
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgNiA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC4yMjY1NjIgMS40NEwzLjI3OTkgNC41TDAuMjI2NTYyIDcuNTZMMS4xNjY1NiA4LjVMNS4xNjY1NiA0LjVMMS4xNjY1NiAwLjVMMC4yMjY1NjIgMS40NFoiIGZpbGw9IiNGRkYiLz4KPC9zdmc+Cg==) center right 0 no-repeat;
  background-size: 10px;
}

.holders-mega-menu-mobile__menu-level-3{
  padding: 0 20px;
  z-index: 5;
}

.holders-mega-menu-mobile__menu-level-3 li{
  list-style: none;
}

.holders-mega-menu-mobile__menu-level-3 > li + li{
  border-top: 1px solid hsla(0,0%,100%,.3);
}

.holders-mega-menu-mobile__menu-level-3 li a{
  color: #fff;
  cursor: pointer;
  font-size: calc(((100vw - 374px) * .00221) + 14px);
  line-height: 140%;
  padding: 15px 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.holders-mega-menu-mobile__back-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 20px;  
  transform: translateX(0);
  opacity: 1;
  transition: .3s;
}

.holders-mega-menu-mobile__back-wrapper:has(.holders-mega-menu-mobile__back-btn[data-level="0"]) {
  transform: translateX(100%);
  opacity: 0;
  cursor: pointer;
  transition: .3s;
  padding: 0;
  height: 0;
}

.holders-mega-menu-mobile__back-btn{
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA2IDkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYgOTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNS4yLDcuNkwyLjEsNC41bDMuMS0zLjFMNC4yLDAuNWwtNCw0bDQsNEw1LjIsNy42eiIvPgo8L3N2Zz4K) 0 no-repeat;
  background-size: 10px;
  color: #ffffff;
  font-size: calc(((100vw - 374px) * .00221) + 16px);
  font-weight: 700;
  padding-left: 25px;
}

.holders-mega-menu-mobile__current-menu{
  color: #ffffff;
  font-size: calc(((100vw - 374px) * .00221) + 16px);
  font-weight: 700;  
}


.holders-mega-menu-mobile__bottom{
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 25px;
  position: fixed;
  bottom: 0;
  row-gap: 15px;
  width: 100%;
  z-index: 2;
}

.holders-mega-menu-mobile__contact-link{
  display: flex;
  column-gap: 15px;
}

.holders-mega-menu-mobile__contact-link span,
.holders-mega-menu-mobile__contact-link a{
  color: #008dcd;
  font-size: calc(((100vw - 374px) * .00221) + 12px);
  font-weight: 700;
}

.holders-mega-menu-mobile__button{
  margin-top: 20px;
}


{# ****** STYLES CARDS DROPDOWN  ******#}
.holders-mega-menu__cards{
  display: flex;
  flex-wrap: wrap;  
}

.holders-mega-menu__cards h3{
  margin-bottom: 34px;
}

.holders-mega-menu-mobile__item-level-1--card{
  border: none;  
}

.holders-mega-menu-mobile__item-level-1--card a{
  color: #fff;
  display: block;
  font-size: calc(((100vw - 374px) * .00221) + 18px);
  font-weight: 400;
  line-height: 140%;
  padding: 10px 0;
}
{# ****** END STYLES CARDS DROPDOWN  ******#}

{# ****** END MOBILE STYLES  ******#}