ul.semantic-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Menu */

.menu--desktop {
  display: block;
}
{#
  .menu--mobile {
/*   display: none; */
/*   opacity: 0; */
position: fixed;
/*   background-color: #ffffff; */
right: -100%;
top: 0;
width: 100%;
bottom: 0;
z-index: 1001;
transition: right .6s ease-in-out,width .4s ease-in-out;
/*   display: flex;
  flex-direction: row; */
}
#}
.menu--mobile {
  position: fixed;
  right: -100%;
  top: 0;
/*   width: 100%; */
bottom: 0;
z-index: 1001;
transition: right .6s ease-in-out, width .4s ease-in-out;
}

.menu--mobile.active {
  opacity: 1;
  transition: right .6s ease-in-out, width .4s ease-in-out;
  right: 0;
}
.menu--mobile .menu-box {
  width: 100vw;
  background-color: #FFF;
  overflow: scroll;
  height: 100%;
  padding: 20px;
}
.menu-overlay {
/*   flex: 1; */
display: none;
background-color: #000;
opacity: 0;
height: 100vh;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
.menu--mobile .mobile-button {
  margin-top: 20px;
}
.menu--mobile  ul.mobile-menu-wrapper {
  padding-top: 20px;
}
.menu--mobile .menu__child-toggle {
  position: absolute;
  right: 0;
  left: auto;
/*   top: 50%;
  transform: translateY(-50%); */
  color: #fff;
  width: 100%;
  text-align: right;
  display: block;
}
@media (max-width: 1220px) {
/*   .menu--desktop {
    display: none;
  } */

/*   .menu--mobile.active {
    opacity: 1;
    transition: right .6s ease-in-out,width .4s ease-in-out;
    right: 0;
  } */
  .menu-overlay.active {
   display: block;
   opacity: .5;
   transition: all .7s;
 }
 .mobile-btn-hide {
  display: none;
}
}

/* Menu items */

.menu__item {
  position: relative;
}

.menu__link {
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.heading-block-item {
  font-weight: 600;
}
.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
  font-weight: 600;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1150px) {
  .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 1220px) {
  .menu__item {
/*     display: block; */
width: 100%;
}

.menu__link {
/*     display: block; */
/*     font-size: 1.083rem; */
}
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
/*   text-transform: uppercase; */
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: -3px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

@media (max-width: 1220px) {
  .menu__item--depth-1 {
/*     border-top: 2px solid #CED4DB; */
/*     padding: 0; */
padding: 0.7rem 0.875rem 
}

.menu__item--depth-1 > .menu__link {
/*     padding: 0.35rem 1.225rem; */
}

.menu__item--depth-1 > .menu__link--active-link:after {
  content: none;
}
}

/* Menu items - submenus */

.menu__submenu {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  display: none;
  left: 50%;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 160px;
  z-index: 99;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu--level-2 {
  transform: translateX(-50%);
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.menu__submenu .menu__item {
/*   border-bottom: 1px solid #D1D6DC; */
padding: 0;
width: 100%;
white-space: nowrap;
}

.menu__submenu .menu__link {
  display: block;
/*   padding: 0.7rem 1.05rem; */
transition: background-color 0.3s;
width: 100%;
line-height: 50px;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 1221px) {
  .menu__submenu--level-2 > .menu__item:first-child:before {
    border-radius: 6px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
    content: '';
    display: block;
    height: 30px;
    left: 20%;
    margin-left: 1rem;
    overflow: hidden;
    position: absolute;
    top: -6px;
    transform: rotate(45deg);
    transition: background-color .3s;
    width: 30px;
    z-index: 2;
  }

  /* Keeps triangle to the left for the first menu item's drop down menu */

  .menu__item--depth-1:first-child > .menu__submenu--level-2 > .menu__item:first-child:before {
    left: 0;
  }

  .menu__submenu--level-2 > .menu__item:first-child > .menu__link {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1220px) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
    padding: 0px 24px;
  }

  .menu__submenu .menu__item {
    background-color: #FFF;
    border-bottom: none;
/*     border-top: 2px solid #EBEFF3; */
padding: 0;
}

.menu__submenu .menu__link {
  display: block;
/*     padding: 0.7rem 2rem; */
transition: none;
width: 100%;
}

.menu__submenu .menu__item .menu__link:hover,
.menu__submenu .menu__item .menu__link:focus {
  background-color: inherit;
  transition: none;
}

.menu__item--has-submenu > .menu__link {
  width: 70%;
}

.menu__submenu--level-3 .menu__item .menu__link {
  padding: 0.7rem 3rem;
}
}

/* Menu icons */

@media(min-width: 1221px) {
  .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu__child-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
  }

  .menu__item--depth-1 > .menu__child-toggle {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }

  .menu__child-toggle-icon {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top-style: solid;
    border-top-width: 7px;
    display: block;
    height: 0;
    margin-left: 1px;
    width: 0;
  }
}

@media (max-width: 1220px) {
  .menu__child-toggle {
    height: 50px;
/*     padding: 15px 0; */
position: absolute;
right: 0;
top: 0;
width: 30%;
}

/*   .menu__child-toggle-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgc3Ryb2tlPSIjOTc5ODlGIiBzdHJva2Utd2lkdGg9IjIuNCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCB4PSIxLjIiIHk9IjkuNiIgd2lkdGg9IjE2LjgiIGhlaWdodD0iMSIgcng9Ii41Ii8+PHJlY3QgdHJhbnNmb3JtPSJyb3RhdGUoOTAgOS42IDkuNikiIHg9IjEuMiIgeT0iOS42IiB3aWR0aD0iMTYuOCIgaGVpZ2h0PSIxIiByeD0iLjUiLz48L2c+PC9zdmc+);
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 1.05rem;
    transition: transform 0.4s;
    width: 20px;
  } */

  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(45deg);
    transition: transform 0.4s;
  }
  nav.menu.menu--desktop.md-mega-menu {
    display: none;
  }

}

/* extra css */
header.header-parent {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 12;
}
header.header-parent .cm_header {
  padding-top: 15px;
  padding-bottom: 5px;
  position:relative;
}
/* header .header .logo img {
  max-width: 190px;
  width: 100%;
} */
header .header .menu--mobile .logo img {
  max-width: 120px;
  width: 100%;
}
/* .cm_header .menu__submenu {
  padding-left: 24px;
  padding-right: 24px;
} */
.custom-header-dark header .cm_header  .menu__item--has-submenu a.menu__link--toggle::after {
  position: absolute;  
  border: 0px;
/*   bottom: 0; */
right: -15px;
margin: 0px;
bottom: 0;
}
.custom-header-dark header .menu--desktop .menu__link {
  color: #FFFFFF;
}
.custom-header-dark header .menu--desktop .menu__submenu .menu__link {
  color: #000000;
}
header .cm_header .navbar-toggler {
  display:none;
}
/* .custom-header-dark header .menu--desktop .menu__child-toggle .menu__child-toggle-icon {
  color: #ffffff;
} */
@media(max-width: 1220px){
  header nav .navbar-toggler {
    border: none;
/*     background-color: #6E7198; */
border-radius: 0px;
padding: 0px;
}
.menu__item--depth-1 {
  display: block;
}
.menu--mobile .menu__submenu {
  position: static;
  transform: none;
  box-shadow: none;
}
.menu--mobile .menu__submenu--level-2 > .menu__item:first-child:before {
  display: none;
}
.menu__submenu .menu__link {
  line-height: normal;
  padding: 10px 20px;
  font-size: 14px;
}  
}
@media (min-width: 1221px){
  header .cm_header .navbar-toggler {
    display: none;
  }
  .menu__item--depth-1 {
    padding: 15px 0px;
  }
  .menu--desktop .menu__wrapper {
    display: flex;
/*     gap: 54px; */
}
/*   header .cm_header .menu__item--has-submenu a.menu__link--toggle:hover::after {
    content: url(https://23564379.fs1.hubspotusercontent-na1.net/hubfs/23564379/CM-Dec-2023/nav-dropdown-icon-green.svg);
  } */
}
.menu--mobile .mobile-menu-logo-and-close {
/*   padding: 16px; */
text-align: right;
}
.menu--mobile .btn-close {
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  border: 0;
  outline: 0;
  text-align: center;    
  margin: auto;
  padding: 0;
}
.menu--mobile .btn-close i {
  font-size: 30px;
  color: #000b27;    
}
.menu--desktop .menu__submenu {
  padding: 0px 24px;
/*   margin-top: 15px; */
}
.btn-close:active,
.btn-close:hover,
.btn-close:focus-visible {
  background: transparent!important;
  border: 0!important;
  color: #000000!important;
  outline: 0!important;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu */

{#
  .menu--desktop {
    display: block;
  }

  .menu--mobile {
    display: none;
  }

  @media (max-width: 767px) {
    .menu--desktop {
      display: none;
    }

    .menu--mobile {
      display: block;
    }
  }

/* Menu items */

.menu__item {
  position: relative;
}

.menu__link {
  font-size: 0.917rem;
  line-height: 1.667rem;
  text-decoration: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1150px) {
  .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 767px) {
  .menu__item {
    display: block;
    width: 100%;
  }

  .menu__link {
    display: block;
    font-size: 1.083rem;
  }
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
  text-transform: uppercase;
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: -3px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

@media (max-width: 767px) {
  .menu__item--depth-1 {
    border-top: 2px solid #CED4DB;
    padding: 0;
  }

  .menu__item--depth-1 > .menu__link {
    padding: 0.35rem 1.225rem;
  }

  .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }
}

/* Menu items - submenus */

.menu__submenu {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: none;
  left: 0;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 270px;
  z-index: 99;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu--level-2 {
  transform: translateX(-50%);
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.menu__submenu .menu__item {
  border-bottom: 1px solid #D1D6DC;
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  padding: 0.7rem 1.05rem;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 768px) {
  .menu__submenu--level-2 > .menu__item:first-child:before {
    border-radius: 6px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
    content: '';
    display: block;
    height: 30px;
    left: 125px;
    margin-left: 1rem;
    overflow: hidden;
    position: absolute;
    top: -12px;
    transform: rotate(45deg);
    transition: background-color .3s;
    width: 30px;
    z-index: 2;
  }

  /* Keeps triangle to the left for the first menu item's drop down menu */

  .menu__item--depth-1:first-child > .menu__submenu--level-2 > .menu__item:first-child:before {
    left: 0;
  }

  .menu__submenu--level-2 > .menu__item:first-child > .menu__link {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .menu__submenu .menu__item {
    background-color: #FFF;
    border-bottom: none;
    border-top: 2px solid #EBEFF3;
    padding: 0;
  }

  .menu__submenu .menu__link {
    display: block;
    padding: 0.7rem 2rem;
    transition: none;
    width: 100%;
  }

  .menu__submenu .menu__item .menu__link:hover,
  .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu__item--has-submenu > .menu__link {
    width: 70%;
  }

  .menu__submenu--level-3 .menu__item .menu__link {
    padding: 0.7rem 3rem;
  }
}

/* Menu icons */

@media(min-width: 768px) {
  .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 30px;
    z-index: 2;
  }

  .menu__item--depth-1 > .menu__child-toggle {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }

  .menu__child-toggle-icon {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top-style: solid;
    border-top-width: 7px;
    display: block;
    height: 0;
    margin-left: 1px;
    width: 0;
  }
}

@media (max-width: 767px) {
  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 55px;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
  }

  .menu__child-toggle-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgc3Ryb2tlPSIjOTc5ODlGIiBzdHJva2Utd2lkdGg9IjIuNCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCB4PSIxLjIiIHk9IjkuNiIgd2lkdGg9IjE2LjgiIGhlaWdodD0iMSIgcng9Ii41Ii8+PHJlY3QgdHJhbnNmb3JtPSJyb3RhdGUoOTAgOS42IDkuNikiIHg9IjEuMiIgeT0iOS42IiB3aWR0aD0iMTYuOCIgaGVpZ2h0PSIxIiByeD0iLjUiLz48L2c+PC9zdmc+);
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 1.05rem;
    transition: transform 0.4s;
    width: 20px;
  }

  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(45deg);
    transition: transform 0.4s;
  }
}
#}
.navbar-toggler i {
/*   color: #fff; */
font-size: 22px;
}

.md-mega-menu .mega-menu-container {
	display: none;
	left: 80px;
	position: absolute;
	right: 0;
	top: 100%;
	width: calc(100% - 120px);
	max-width: 1322px;
	margin-left: auto;
	margin-right: auto;
	z-index: 9999;
	background-color: #fff;
  /*   padding: 30px; */
  /*   color: #fff; */
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 0px 0px 32px 32px;
  border-bottom: 1px solid var(--Platinum, #E1E4EA);
  background: var(--White, #FFF);
}

.md-mega-menu .mega-menu-container:before, .md-mega-menu .mega-menu-container:after {
	content: '';
	position: absolute;
	display: block;
	height: 337px;
	width: 337px;
	top: -168px;
	border-radius: 50%;
	opacity: 0.4;
	filter: blur(100px);
}

.md-mega-menu .mega-menu-container:before {
	background: var(--Baby-Blue, #B5D1EF);
	left: -168px;
}

.md-mega-menu .mega-menu-container:after {
	background: var(--Lavender, #CFC6E8);
	right: -168px;
}
.md-mega-menu .menu__item--has-submenu .mega-menu-container.active {
  display: block !important;
}
.md-mega-menu .megamenu li.mega_menu_links {
  padding: 10px 22px;
}
.md-mega-menu .megamenu li.mega_menu_links .nav_label {
  border-bottom: 1px solid transparent;
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all 0.4s ease;
}
.nav_label .menu__link {
/*   border-bottom: 2px solid transparent; */
padding-bottom: 50px;
transition: 0.4s ease;
/*   border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; */
}
.menu__child-toggle-icon:after {
  content: "\f107";
  font-family: FontAwesome;
}
.tab-flex {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-flow: nowrap;
  -moz-flex-flow: nowrap;
  -webkit-flex-flow: nowrap;
  -o-flex-flow: nowrap;
/*   width: 100%; */
/*   margin-right: -30px;
  margin-left: -30px; */
  gap: 30px;
}
.tab-flex .tab-flex-item {
  flex-basis: 30%;
  -moz-flex-basis: 30%;
  -webkit-flex-basis: 30%;
  -o-flex-basis: 30%;
/*   padding-right: 30px;
  padding-left: 30px; */
}
.tab-flex .tab-flex-item.tb-last-col {
  flex-basis: 40%;
  -moz-flex-basis: 40%;
  -webkit-flex-basis: 40%;
  -o-flex-basis: 40%;
}
/* .tab-flex .tab-flex-item.tb-content {
  flex-basis: 66.666%;
  -moz-flex-basis: 66.666%;
  -webkit-flex-basis: 66.666%;
  -o-flex-basis: 66.666%;
} */
.tab-flex-item.tb-content {
  padding-left: 40px;
}
.tab-flex .tab-flex-item.tb-content .content-element-flex {
 display: -moz-flex;
 display: -ms-flexbox;
 display: -webkit-box;
 display: flex;
/*   width: 100%; */
/*   margin-right: -30px;
  margin-left: -30px; */
  gap: 55px;
}
.tab-flex .tab-flex-item.tb-content .content-element-flex .content-element-col {
  flex-basis: 100%;
  -moz-flex-basis: 100%;
  -webkit-flex-basis: 100%;
  -o-flex-basis: 100%;
  padding-top: 10px;
}
.tab-flex .tab-flex-item.tb-list {
  border-right: 1px solid rgba(35, 35, 35, 0.2);
  padding-right: 30px;  
  padding-bottom: 42px;
  flex-basis: 30%;
  -moz-flex-basis: 30%;
  -webkit-flex-basis: 30%;
  -o-flex-basis: 30%;
}
.tab-flex-item.tb-last-col {
  padding-right: 0;
}
.mega-menu-container .tab-container {
  display: flex;
  padding: 40px 40px 80px 40px!important;
  position: relative;
  z-index: 1;
}
.tab.tab-list-box .tab-redirect-link {
  cursor: pointer;
/*   padding: 15px 20px; */
display: flex;
justify-content: space-between;
border-radius: 0;
align-items: center;
text-decoration: none;  
padding: 10px 8px 10px 8px;
/*   margin-top: -1px;
  border-top: 1px solid #747480;
  border-bottom: 1px solid #747480;
  border-left: 5px solid transparent; */
  transition: all .3s ease;
}
.tab.tab-list-box:first-child .tab-redirect-link {
  margin-top: 0;
}
/* .tab.tab-list-box.active .tab-redirect-link,
.tab.tab-list-box .tab-redirect-link:hover {
  background-color: #2e2e38 !important;
  border-top-color: #2E2E3B !important;
  border-bottom-color: #2E2E3B !important;
}
.tab.tab-list-box .tab-redirect-link .text {
  text-decoration: none;
  outline: 0;
  font-size: 18px;
}
.tab.tab-list-box .tab-redirect-link .icon i {
  color: #fff;
  padding-right: 20px;
  transition: all .3s ease;
}
.tab.tab-list-box.active .tab-redirect-link i,
.tab.tab-list-box .tab-redirect-link:hover i {
  padding-right: 0!important;
}
.tab.tab-list-box.active .tab-redirect-link {
  background-color: rgba(28, 155, 239, 0.2);  
} */
.tab.tab-list-box .icon {
  display: block;
  transition: all 0.4s ease;
  background-color: transparent;
  padding: 0;    
}
.tab.tab-list-box .icon img {
  display: block;
  width: 100%;
}
/* .tab.tab-list-box.active .icon {
  display: block;
} */
{#
  .tab-pane {
    display: none;
/*   padding-top: 40px;
  padding-bottom: 42px; */
  position: absolute;
  z-index: 1;
  overflow: hidden;
  right: 0;
  top: 0;
  left: auto;  
  width: 0;
  height: 100%;  
  width: 33.333%;  
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #000;
  color: #fff;
}
.tab-pane.active {
  display: block;
  visibility: visible;
  opacity: 1;
  width: 33.333%!important;
}
/* .tab-pane.active .tab-pane-box {
  transform: none!important;
} */
/* .tab-pane .tab-pane-box {
  -webkit-transform: translateX(-100%)!important;
  transform: translateX(-100%)!important;
  -webkit-transition-property: visibility, -webkit-transform!important;
  transition-property: visibility, -webkit-transform!important;
  transition-property: transform, visibility!important;
  transition-property: transform, visibility, -webkit-transform!important;
  -webkit-transition-duration: 0.3s!important;
  transition-duration: 0.3s!important;
  } */
  .tab-pane .tab-pane-box {
    position: relative;
    height: 100%;
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-property: visibility, -webkit-transform;
    transition-property: visibility, -webkit-transform;
    transition-property: transform, visibility;
    transition-property: transform, visibility, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: #2e2e38;
    overflow: hidden;
    overflow: hidden;  
    color: #fff!important;
  }
  #}
  .tabs .tab-pane {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    visibility: hidden;
    -webkit-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .tabs .tab-pane .tab-pane-box {
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-property: visibility, -webkit-transform;
    transition-property: visibility, -webkit-transform;
    transition-property: transform, visibility;
    transition-property: transform, visibility, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
/*   background-color: #2e2e38; */
overflow: hidden;
padding: 40px 50px;
}
.tab-pane.active {
  visibility: visible;
  z-index: 101;
}
.tabs .tab-pane.active .tab-pane-box  {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
/* .tab-pane {

  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
  display: none;
}

.tab-pane.active {
  transform: translateX(0);
  display: block;
} */
/* .tab-pane {
  display: none;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  right: 0;
  top: 0;
  left: auto;  
  width: 0;
  height: 100%;  
  visibility: hidden;
  background-color: #000;
  color: #fff;
}

.tab-pane.active {
  display: block;
  visibility: visible;
  width: 33.333%;
  transition: width 0.3s ease;
}

.tab-pane .tab-pane-box {
  position: relative;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  background-color: #2e2e38;
  overflow: hidden;
  color: #fff;
}

.tab-pane.active .tab-pane-box {
  transform: translateX(0);
} */

.main-heading-cta .heading-text {
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 28px !important;
  padding-top: 0 !important;
}
.main-heading-cta .desc {
  display: block;
  margin-bottom: 30px;
}
.heading-text {
  color: #fff;
  margin-bottom: 6px;
  font-size: 18px;
}
.heading-text.content-title {
/*   border-bottom: 1px solid rgba(35, 35, 35, 0.2); */
padding-bottom: 20px;
}

.list-box-link:active,
.tab-pane .list-box .list-box-link:focus-visible,
.tab-pane .list-box .list-box-link:focus {
  outline: 0;
  text-decoration: none;
}
.tab-pane .list-box .list-box-link {
  display: block;
  text-decoration: none;
  outline: 0;  
  border-radius: 5px;
  transition: all ease .3s;
/*   padding: 15px;  
  margin-top: -15px;
  margin-bottom: -15px; */
}
/* .tab-pane .list-box:first-child .list-box-link {
  margin-top: 0!important;
}
.tab-pane .list-box .list-box-link:hover,
.tab-pane .list-box .list-box-link.active {
  background-color: rgba(28, 155, 239, 0.2);
} */
.tab-pane .list-box {
  display: block;
  width: 100%;
}
.list-box .list-text .list-text-title {
  display: block;
/*   color: #fff; */
margin-bottom: 12px!important;
text-decoration: none!important;
}
.list-box .list-text .list-text-desc {
  text-decoration: none;
  line-height: 20.16px;
}
.list-box .list-text .list-text-desc img {
border-radius:10px;
}
/* .list-box .list-text .on-hover {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  display: none;
  height: 100%;
  height: 0;
  transition: height 0.5s ease-out;
}
.list-box .list-box-link:hover .list-text .on-hover,
.list-box .list-box-link.active .on-hover {
  visibility: visible;
  opacity: 1;
  display: block;
  height: 100%;
} */
.list-box .list-box-link .know--more {
  margin-top: 15px;
  font-size: 16px;
  line-height: 28px;
  border-bottom: 1px solid #FF1F1F;
  display: inline-block;
}
.list-box .list-box-link .know--more .icon {
  padding-left: 20px;
}
.list-box .list-text .list-text-desc {
  color: #8A8A8A;
}
.list-box:last-child {
  margin-bottom: 0;
}
.list-box .list-flex {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.list-box .list-flex .list-text-title {
  margin-bottom: 0;
}
/* .resource-box {
  background-color: rgba(246, 247, 251, 1);
  border-radius: 5px;
  overflow: hidden;
} */
/* .content-element-col.resource-element-col {
  padding: 0 110px;
} */
.resource-box .resources-content {
  display: block;  
}
.resource-box .resources-content .resources-box-text .resources-title {
  font-size: 16px;
  line-height: 125%;
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: #fff;
}
.resource-box .resources-content:hover .resources-box-text .resources-title {
  text-decoration: underline;
}
.resource-box .featured-image img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.resource-box .resources-content .resources-title {
  color: rgba(108, 108, 108, 1);
  margin-bottom: 26px;
}
.resource-box .resources-btn {
  display: inline-flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #FF1F1F;
  padding-bottom: 5px;
  text-decoration: none;
}

.menu-search-button {
  display: flex;
  align-items: center;
}
/* Search Css */

.md-search-function .search-click-btn {
	margin-right: 15px;
  color: #fff;
}
.md-search-function .search-click-btn i {
  font-size: 22px;
}
.md-search-function .search-heading {
	padding-top: 50px;
	position: relative;
} 
.md-search-function .md-search-container {
	display: none;
	background-color: #fff;
	transition: all 0.7s ease;
}
.md-search-function .md-search-container.open {
	display: block;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
  background-color: #1A1A1A;
}
.md-search-function .md-search-container .close-btn {
	position: absolute;
	top: 30px;
	right: 0;
/* 	background: #fff161; */
border-radius: 8px;
/* 	box-shadow: 0 5px 0 0 #ffd126; */
}
.md-search-function .md-search-container .close-btn a {	
	display: inline-block;
	width: 50px;
	text-align: center;
	height: 50px;
	margin-top: auto;
	margin-bottom: auto;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
  background-color: rgba(28, 155, 239, 0.2);
  border-radius: 5px;
}
.md-search-function .md-search-container .close-btn i {	
	font-size: 20px;
}
.md-search-form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
  justify-content: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
}
.md-search-form input.text-box {
	border-bottom: 1px solid #FFF!important;
	border: 0;
	background: transparent;
	border-radius: 0;
	max-width: 800px;
	flex-basis: 80%;
	margin-right: 20px;
  outline: 0;
}
.md-search-form input.text-box:focus {
	background: transparent;
}
.md-search-function .md-search-container .close-btn {
	animation: close_button_anim 0.5s ease 1 normal forwards;
}

@media (max-width: 810px) {
	.md-search-form input.text-box {
		flex-basis: 75%;
	}
}
@media (max-width: 767px) {
	.md-search-form input.text-box {
		flex-basis: 60%;
	}
}
@media (max-width: 424px) {
	.md-search-form input.text-box {
		flex-basis: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@keyframes close_button_anim {
  from {
    top: -100px;
  }
  to {
    top: 30px;
  }
}
/* End of Search Widget Css */
.menu--mobile ul.menu__submenu {
  border: 0!important;
  padding-top: 10px;
  padding-right: 0;
}
.md-mega-menu .menu-close-btn {
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 0;
  cursor: pointer;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 20px;
  z-index: 10;
}
.close-panel {
  display: block;
  cursor: pointer;
}
.close-panel i {
  color: #fff;
  font-size: 14px;
}
.close-and-heading {
  display: flex;
  gap: 16px;
}
/* .list-box-group {
  padding-left: 27px;    
} */

/* //// new css  */

header.header-parent .logo img {
  width: 150px!important;
}

header.header-parent {
  background-color: #fff;
  border-bottom: 1px solid rgba(25, 32, 32, .1);
  position: relative;
}
header.header-parent .top-content {
  background-color: #F6F7F9;
}
header.header-parent .top-content .content-wrapper-top {
  max-width: 1440px;
  padding: 5px 20px;
  text-align: right;
  margin: 0 auto;
}
header.header-parent .top-content .login-btn a {
  text-decoration: none;
  transition: all .3sease;
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 24.5px;
  letter-spacing: 0;
}
header.header-parent .top-content .login-btn a:hover {
  text-decoration: underline;
  font-weight: 700;
}
header.header-parent ul li.mega_menu_links.menu__item--has-submenu > .nav_label a:after {
  /* content: url(https://20927937.fs1.hubspotusercontent-na1.net/hubfs/20927937/2022/Images/Placeholder/Vector.png); */
  content: url(https://20927937.fs1.hubspotusercontent-na1.net/hubfs/20927937/2022/Images/Placeholder/blue-Vector.png);
  margin-left: 8px;
  position: relative;
  top: -2px;
}
.menu__item--has-submenu.li-active > .nav_label a {
  color: #1163B9;
}
.header-main-button a.button {
  display: inline-block;
  font-family: "Inter";
  color: #fff;
  background-color: #000B27;
  border: solid 1px #000B27;
  border-radius: 8px;
  padding: 12px 32px;
  /* margin: 20px 0; */
  transition: .1sease-in;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
}
.header-main-button a.button:hover,
.header-main-button a.button:focus-visible,
.header-main-button a.button:focus {
  background-color: #0865c7;
  border-color: #0865c7;
  color: #fff;
}
header.header-parent .content-wrapper {
  max-width: 1440px;
}
.main-heading-flex {
  display: flex;
  align-items: flex-start;
}
.main-heading-flex .heading-icon-image {
  background-color: transparent;
  padding: 0 !important;
  width: 30px !important;
  margin-right: 10px;
}
.main-heading-flex .heading-icon-image img {
  width: 100%;
  max-width: 100%;
  display: block;    
}
.image-text-flex {
  display: flex;
  gap: 10px;
}
.image-text-flex .image-icon {
  padding: 0;
  width: 30px;
  display: block;
}
.image-text-flex .image-icon img {
  width: 100%;
}

.tab-pane-box .content-element-col .list-box-group {
  column-count: 2;
  column-gap: 50px;
  width: 100%;
}
.industries-mega-menu.company-mega-menu .tab-flex-item.tb-content > .tabs {
  column-count: 2;
}
.company-mega-menu .tab-flex .tab-flex-item.tb-list {
  padding-bottom: 0;
}
.company-mega-menu .tab-container {
  padding-top: 50px!important;
  padding-bottom: 50px!important;
}
.industries-mega-menu .tab-flex-item.tb-last-col {
  display: none;
}
.menu__item--has-submenu.resources-mega-menu .semantic-ul.tab-container.tab-flex {
  min-height:500px;
}
.menu__item--has-submenu.resources-mega-menu .tab-flex-item.tb-list {
  display: none;
}
.menu__item--has-submenu.resources-mega-menu .tab-flex-item.tb-content {
  padding-left: 0!important;
  border-right: 1px solid rgba(35, 35, 35, 0.2);
  padding-right: 15px;
}
.menu__item--has-submenu.resources-mega-menu .tab-flex .tab-flex-item.tb-last-col {
  flex-basis: 70%;
  -moz-flex-basis: 70%;
  -webkit-flex-basis: 70%;
  -o-flex-basis: 70%;
}
.menu__item--has-submenu.resources-mega-menu .tab-flex .tab-flex-item.tb-content .tabs .tab-pane {
  width: 70%;
}
.menu__item--has-submenu.resources-mega-menu .tab-flex .tab-flex-item.tb-content .tabs .tab-pane .tab-pane-box .content-element-col .list-box-group {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
  display:flex;
}
#compliance .tab-pane-box .content-element-col .list-box-group {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
  display:block;
}
.tab-pane .list-box .list-box-link {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  color: #000B27;
  padding-bottom: 0;
}
.tab-pane .list-box .list-box-link:hover,
.tab-pane .list-box .list-box-link:hover .list-text-title {
  color: #0865c7;
}
html.page-scrolled header.header-parent .cm_header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;        
}

.menu--mobile a.menu__link .icon {
  background-color: transparent;
  padding: 0;
  vertical-align: middle;
  width: 30px !important;
}
.menu--mobile a.menu__link .icon img {
  max-width: 100%;
}
.menu--mobile .menu__submenu {
  padding-left: 0!important;
  padding-right: 0!important;
}
.menu--mobile .menu__submenu .menu__link {
  padding-left: 0!important;
  padding-right: 0!important;
}
.menu--mobile .menu__child-toggle {
  text-align: right;
}
.menu--mobile .menu__item {
  width: fit-content;
  padding-right: 20px;
}
.menu--mobile .menu__child-toggle-icon:after {
  color: #0865c7;
}
.menu--mobile .mobile-button {
  display: block;
  text-align: center;
  padding-bottom: 35px;
  padding-left: 20px;
  padding-right: 20px;
}
.menu--mobile .login-btn {
  display: block;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.menu__item--has-submenu .tab-list-box.active .text.heading-font.heading-color {
  color: #0865c7;
}
.menu__item--has-submenu.industries-mega-menu .tab-list-box.active .text.heading-font.heading-color {
  color: #231f20!important;
  transition:0.2s ease-out;
}
/*.menu__item--has-submenu .tb-content .tab-redirect-link span.icon {
    display: none;
}*/
.image-text-flex .desc-font {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  color: #000B27;
  padding-bottom: 0;
}
/*.md-mega-menu .mega-menu-container {
    background-image: url(https://www.ilobby.com/hubfs/2022/Images/menu-shape-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}*/
.learn-more-button {
  padding-top: 50px;
  text-align: right;
}
.learn-more-button a.btn {
  display: inline-block;
  font-family: "Inter";
  color: #fff;
  background-color: #fff;
  border: solid 1px #fff;
  border-radius: 8px;
  padding: 12px 32px;
  /* margin: 20px 0; */
  transition: .1sease -in;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000b27;
  border-radius: 10px;
  color: #000b27;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  fill: #000b27;
  text-transform: none;
  cursor: pointer;
}
.learn-more-button a.btn:hover,
.learn-more-button a.btn:focus,
.learn-more-button a.btn:focus-visible {
  background-color: #0865c7;
  border-color: #0865c7;
  color: #fff;   
}
.main-heading-flex .inline-link {
  text-decoration: none;
}
.main-heading-flex .inline-link:hover,
.main-heading-flex .inline-link:focus,
.main-heading-flex .inline-link:focus-visible,
.main-heading-flex .inline-link:hover .heading-text.heading-font,
.main-heading-flex .inline-link:focus .heading-text.heading-font,
.main-heading-flex .inline-link:focus-visible .heading-text.heading-font {
  color: #0865c7;
}

.heading-block-item.last-col-title {
  padding: 40px 0 0 50px;
}
.tabs .tab-pane-box.tab-no-padding-top {
  padding-top: 0!important;
}
.heading-block-item {
  margin-bottom: 15px;
}

.tab.tab-list-box .icon {
  display: none;
}
.mega_menu_links.menu__item--has-submenu.industries-mega-menu .tab-flex-item.tb-content {
  flex-basis: 100%;
}
.mega_menu_links.menu__item--has-submenu.industries-mega-menu .tab-flex-item.tb-content > .tabs {
  column-count: 3;
}
.mega_menu_links.menu__item--has-submenu.industries-mega-menu .tab-flex-item.tb-list {
  display: none;
}
.tab.tab-list-box .tab-redirect-link:hover .text.heading-font.heading-color,
.tab.tab-list-box .tab-redirect-link:focus .text.heading-font.heading-color {
  color: #1163B9!important;
}
.tab-pane .list-box .list-box-link .list-icon {
  width: 30px;
}
.tab-pane .list-box .list-box-link .list-icon img {
 width: 100%;
}
#compliance .tab-pane-box .content-element-col .list-box-group .list-box .list-flex {
  align-items: center;
  margin-bottom: 8px;
}
.menu--mobile li.menu__item--has-submenu > a.menu__link.menu__link--toggle:after {
  content: "";
  display: inline-block;
  font-family: Font Awesome\ 5 Pro;
  font-size: 15px;
  font-weight: 900;
  margin-left: 7px;
  position: relative;
  top: 6px;
}
.menu--mobile li.menu__item--has-submenu > a.menu__link.menu__link--toggle:after {
  content: url(https://www.ilobby.com/hubfs/2022/Images/arrow-drop-down-line.png);
}
.menu--mobile li.menu__item--has-submenu.menu__item--open > a.menu__link.menu__link--toggle:after {
  content: url(https://www.ilobby.com/hubfs/2022/Images/arrow-drop-up-line.png);
}
.menu--mobile li.menu__item--has-submenu .menu__submenu {
  display: none;
  overflow: hidden;
}
.menu--mobile li.menu__item--has-submenu .menu__submenu {
  display: none;
  flex-direction: column;
}
/*.menu--mobile li.menu__item--has-submenu.menu__item--open > .menu__submenu {
    display: block;
}*/
.menu--mobile li.menu__item--has-submenu ul .menu__link {
  font-weight: 600!important;
}
.menu--mobile li.menu__item > a.menu__link {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}
/*.menu--mobile li.menu__item.menu__item--depth-1.menu__item--open a.menu__link:hover,
.menu--mobile li.menu__item.menu__item--depth-1.menu__item--open a.menu__link:focus {
    color: #58b5ff;
}*/
.menu--mobile .login-btn a {
  text-decoration: none;
}
.menu--mobile .login-btn a:hover,
.menu--mobile .login-btn a:focus,
.menu--mobile .login-btn a:focus-visible {
  text-decoration: underline;
}
/* new mobile menu start */
header.header-parent .header .offscreen-menu span.icon {
    background-color: transparent;
    padding: 0!important;
    width: 30px!important;
}
header.header-parent .header .offscreen-menu span.icon img {
    width: 100%;
}
header.header-parent .offscreen-menu .hs-menu-wrapper > ul .hs-menu-item.hs-menu-depth-4 > a:has(span.icon) {
    font-weight: 600!important;
    font-size: 16px!important;
    line-height: 28px!important;
    padding-top: 0!important;
}
header.header-parent .offscreen-menu .hs-menu-wrapper > ul .hs-menu-item.hs-menu-depth-4 > a:not(:has(span.icon)) {
    font-weight: 400!important;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 0%;
    color: #333A4A!important;
}
header.header-parent .header button.hamburger-toggle {
    display: none;
    padding: 0;
    transition: .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 5.7143px;
    position: absolute;
    right: 20px;
    /*top: 50%;
    transform: translateY(-50%);*/
  top:15px;
    margin: 0;
    background: rgba(0, 0, 0, 0);
    border: 0;
    z-index: 1051;
}

html.menu-open header.header-parent .header button.hamburger-toggle {
    display: block
}

@media(max-width: 1199px) {
    header.header-parent .header button.hamburger-toggle {
        display: block
    }
    body.u4m-landing-page header.header-parent .header button.hamburger-toggle {
        display: none
    }
}

header.header-parent .header button.hamburger-toggle.close {
    transform: scale3d(0.8, 0.8, 0.8)
}

header.header-parent .header button.hamburger-toggle.x2 .lines {
    transition: background .3s .5s ease
}

header.header-parent .header button.hamburger-toggle.x2 .lines:before,
header.header-parent .header button.hamburger-toggle.x2 .lines:after {
    transform-origin: 50% 50%;
    transition: top .3s .6s ease, transform .3s ease
}

header.header-parent .header button.hamburger-toggle.x2.close .lines {
    transition: background .3s 0 ease;
    background: rgba(0, 0, 0, 0)
}

header.header-parent .header button.hamburger-toggle.x2.close .lines:before,
header.header-parent .header button.hamburger-toggle.x2.close .lines:after {
    transition: top .3s ease, transform .3s .5s ease;
    top: 0;
    width: 30px
}

header.header-parent .header button.hamburger-toggle.x2.close .lines:before {
    transform: rotate3d(0, 0, 1, 45deg)
}

header.header-parent .header button.hamburger-toggle.x2.close .lines:after {
    transform: rotate3d(0, 0, 1, -45deg)
}

header.header-parent .header button.hamburger-toggle:hover,
header.header-parent .header button.hamburger-toggle:focus {
    background: rgba(0, 0, 0, 0);
    opacity: 1
}

header.header-parent .header button.hamburger-toggle:active {
    background: rgba(0, 0, 0, 0);
    transition: 0
}

header.header-parent .header button.hamburger-toggle .lines {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #000b27;
    border-radius: 0;
    transition: .3s;
    position: relative
}

header.header-parent .header button.hamburger-toggle .lines:before,
header.header-parent .header button.hamburger-toggle .lines:after {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #000b27;
    border-radius: 0;
    transition: .3s;
    position: absolute;
    left: 0;
    content: "";
    transform-origin: .28571px center
}

.menu-open header.header-parent .header button.hamburger-toggle .lines:before,
.menu-open header.header-parent .header button.hamburger-toggle .lines:after {
    background: #000B27;
}

header.header-parent .header button.hamburger-toggle .lines:before {
    top: 10px
}

header.header-parent .header button.hamburger-toggle .lines:after {
    top: -10px
}

header.header-parent .header .offscreen-menu {
    transition: .25s ease-in;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: -100vh;
    left: 0;
    visibility: hidden
}

.menu-open header.header-parent .header .offscreen-menu {
    top: 0;
    opacity: 1;
    z-index: 1050;
    pointer-events: auto;
    height: 100vh;
    visibility: visible
}

.menu-closing header.header-parent .header .offscreen-menu {
    top: -100vh
}

header.header-parent .header .offscreen-menu .content {
    width: 100%;
    height: 100%;
/*     background-color: rgba(51, 71, 91, .98); */
border: 0;
padding: 20px 0 30px 0;
overflow: scroll;
position: relative
}

header.header-parent .header .offscreen-menu .mobile-menu div {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: solid 2px rgba(255, 255, 255, .1);
    border-bottom: solid 2px rgba(255, 255, 255, .1)
}

/* header.header-parent .header .offscreen-menu .mobile-menu div ul li:hover>a {
background: rgba(242, 242, 242, .1)
} */

header.header-parent .header .offscreen-menu .mobile-menu div ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 0;
    margin: 10px 0;
    padding-bottom: 10px
}

header.header-parent .header .offscreen-menu .mobile-menu div a {
    font-family: "Inter";
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: .25px;
    margin-bottom: 20px;
    margin-bottom: 0;    
    border-bottom: 0;
    overflow: visible;
    max-width: none;
    width: auto;
    white-space: normal;
  text-decoration:none;
}

@media(max-width: 768px) {
    header.header-parent .header .offscreen-menu .mobile-menu div a {
        font-size: 17px
    }
}

header.header-parent .header .offscreen-menu .mobile-menu div li.hs-menu-depth-2 a {
    font-family: "Inter";
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .25px;
    margin-bottom: 20px;
    margin-bottom: 0;
    padding: 10px;
    width: 100%
}

@media(max-width: 768px) {
    header.header-parent .header .offscreen-menu .mobile-menu div li.hs-menu-depth-2 a {
        font-size: 16px
    }
}

header.header-parent .header .offscreen-menu .mobile-menu div li.hs-menu-depth-3 a {
    font-family: "Inter";
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .25px;
    margin-bottom: 20px;
    margin-bottom: 0;
    padding: 10
}

@media(max-width: 768px) {
    header.header-parent .header .offscreen-menu .mobile-menu div li.hs-menu-depth-3 a {
        font-size: 15px
    }
}

header.header-parent .header .offscreen-menu .mobile-menu div li.hs-item-has-children>a:after {
    position: relative;
    top: 6px;
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    margin-left: 7px;
    font-size: 15px;
    font-weight: 900
}

header.header-parent .header .offscreen-menu .mobile-menu div li {
    margin-bottom: 20px;
    text-align: left
}

header.header-parent .header .offscreen-menu .mobile-menu div ul li.hs-item-has-children ul {
    display: none;
    position: relative;
    z-index: 999
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-1 {
    background-color: rgba(0, 0, 0, 0);
    transition: .25s ease-in
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-2 {
    background-color: rgba(0, 0, 0, 0);
    transition: .25s ease-in
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-3 {
    margin-left: 0;
    margin-right: 0;
    width: 100%
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-1.toggled {
    transition: .25s ease-in;
/*     background-color: rgba(242, 242, 242, .1) */
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-1.toggled>a {
    color: #33475b;
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-2.toggled {
    transition: .25s ease-in;
    background-color: rgba(242, 242, 242, .1)
}

header.header-parent .header .offscreen-menu .mobile-menu div .hs-menu-depth-2.toggled>a {
    background-color: rgba(242, 242, 242, .8);
    color: #33475b
}

header.header-parent .header .offscreen-menu .mobile-cta {
    text-align: center
}

header.header-parent .header .offscreen-menu .mobile-cta a.cta_button {
    display: inline-block;
    font-family: "Inter";
    color: #1c214f;
    background-color: #00d1a3;
    border-radius: 30px;
    padding: 15px 40px;
    margin: 20px 0;
    transition: .1s ease-in;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .25px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 1px 12px 0 rgba(51, 71, 91, .1);
    margin-top: 0
}

header.header-parent .header .offscreen-menu .mobile-cta a.cta_button:hover,
header.header-parent .header .offscreen-menu .mobile-cta a.cta_button:focus {
    background-color: #1163B9;
    color: #fff
}

header.header-parent .header .offscreen-menu .mobile-search {
    margin-bottom: 20px
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 700px
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field .hs-search-field__bar form {
    display: flex;
    margin-bottom: 0
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field .hs-search-field__bar form input.search-input {
    border: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    line-height: 1;
    padding: 10px
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field .hs-search-field__bar .search-button {
    border: 0;
    background-color: #00d1a3;
    padding: 10px 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field .hs-search-field__bar .search-button i {
    color: #fff;
    transition: .1s ease-in
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field .hs-search-field__bar .search-button:hover i {
    color: #33475b
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field ul.hs-search-field__suggestions {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field ul.hs-search-field__suggestions li {
    text-align: center
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field ul.hs-search-field__suggestions li#results-for {
    color: #fff;
    font-weight: bold;
    margin-top: 20px
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field ul.hs-search-field__suggestions li a {
    color: #fff
}

header.header-parent .header .offscreen-menu .mobile-search .hs-search-field ul.hs-search-field__suggestions li a:hover {
    color: #00d1a3
}
@media (max-width: 1199px) {
    /*header.header-parent .top-content {
        display: none;       
    }*/
    header.header-parent .header .offscreen-menu .content {
        background-color: #fff;
    }
    header.header-parent .header .offscreen-menu .mobile-menu div a {
        font-weight: 700;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0%;
    }
    .u4m-header .offscreen-menu .mobile-menu .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-item-has-children ul.hs-menu-children-wrapper,
    .u4m-header .offscreen-menu .mobile-menu .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-item-has-children:hover ul.hs-menu-children-wrapper {
        opacity: 1;
        visibility: visible;
    }
    header.header-parent .header .offscreen-menu .mobile-menu div li.hs-item-has-children>a:after {
        content: url(https://www.ilobby.com/hubfs/2022/Images/arrow-drop-down-line.png);
    }
    header.header-parent .header .offscreen-menu .mobile-menu div li.hs-item-has-children.toggled>a:after {
        content: url(https://www.ilobby.com/hubfs/2022/Images/arrow-drop-up-line.png);
    }
/*    header.header-parent .header .offscreen-menu .mobile-menu .hs-menu-item.hs-menu-depth-1:not(:last-child) {
padding-bottom: 50px;
}*/
}
header.header-parent .header .offscreen-menu .content .logo {
    padding-left: 20px;
    padding-top: 14px;
}
header.header-parent .header .offscreen-menu .content ul li .icon {
    background-color: transparent;
    padding: 0;
    vertical-align: middle;
}
header.header-parent .header .offscreen-menu .content .mobile-menu {
    padding-left: 20px;
    padding-right: 20px;
}
header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-item.hs-menu-depth-2 > a:has(span.icon) {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    padding-top: 0!important;
    text-align: left;
    padding-bottom: 4px;
}
header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-item.hs-menu-depth-2 > a:not(:has(span.icon)) {
    font-weight: 400;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 0;
    color: #333A4A!important;
    text-align: left;
    padding-top: 0;
    padding-bottom: 28px;    
    padding-left: 38px;
}
header.header-parent .header .offscreen-menu .mobile-cta .login-btn-last,
header.header-parent .header .offscreen-menu .mobile-cta {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 35px;
}
header.header-parent .header .offscreen-menu .login-btn-last {
    display: block;
    text-align: center;
}
header.header-parent .header .offscreen-menu .login-btn-last a {
    text-align: center;
    font-weight: 700!important;
    font-size: 16px;
    line-height: 28px;
    color: #000B27;
    font-weight: 400;
    text-decoration: none;
    transition: all .3sease;
}
header.header-parent .header .offscreen-menu .login-btn-last a:hover {
    color: #0865C7;
}
header.header-parent .header .offscreen-menu .mobile-cta a {
    display: inline-block;
    color: #fff;
    background-color: #000B27;
    border: solid 1px #000B27;
    border-radius: 8px;
    padding: 12px 32px;
/* margin: 20px 0; */
transition: .1sease-in;
font-weight: bold;
letter-spacing: 0;
text-decoration: none;
cursor: pointer;
}
@media (max-width: 568px) {
    header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-wrapper {
        max-width: 100%;
    }
    header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-wrapper span.icon,
    header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-wrapper span.icon img {
        max-width: fit-content;
    }   
    header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-item.hs-menu-depth-2 > a:has(span.icon) {
        display: flex;
    }
    header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-item.hs-menu-depth-2 > a:not(:has(span.icon)) {
        padding-left: 40px;
    }
    header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-wrapper span.icon {
        padding-right: 6px;
    }
    header.header-parent .header .offscreen-menu .mobile-cta a {
        display: block;
        width: 100%;
    }
}
/*header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-item.hs-menu-depth-2:last-child > a {
font-weight: 600;
font-size: 16px;
line-height: 28px;
letter-spacing: 0;
padding-top: 0!important;
text-align: left;
padding-bottom: 4px;   
}*/
header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-wrapper span.icon, header.header-parent .header .offscreen-menu .content .mobile-menu .hs-menu-wrapper span.icon {
    width: 30px!important;
  margin-right:12px;
}
header.header-parent .header .menu #hs_menu_wrapper_u4m-header_>ul>li.active-dropdown-menu {
    overflow: visible;
}

.offscreen-menu #hs_menu_wrapper_u4m-header_ > ul > .hs-menu-item {
    text-align: left;
}
.offscreen-menu #hs_menu_wrapper_u4m-header_ > ul > .hs-menu-item > a {
    text-decoration: none;
}
.offscreen-menu #hs_menu_wrapper_u4m-header_ > ul > .hs-menu-item > .hs-menu-children-wrapper > .hs-menu-item > a {
    text-decoration: none;
}
.offscreen-menu #hs_menu_wrapper_u4m-header_ > ul > .hs-menu-item > .hs-menu-children-wrapper > .hs-menu-item > a .icon img {
    max-width: 100%;
}
/* new mobile menu end */