#brx-content {
  margin-top: -95px!important;
}

#smooth-content {
  will-change: transform;
}

body:not(:has([data-sticky-header="0"]), .content-offset--off)
  main:not(.panel-content)
  > *:first-child
  > *:first-child:not(.bricks-shape-divider) {
  margin-block-start: var(--header-height);
}

.is-clickable::after {
  content: "";
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

.is-clickable-child a::after {
  content: "";
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

.primary-cta .icon,
.primary-cta .icon path,
.secondry-cta .icon,
.secondry-cta .icon path{
transition:all 0.2s ease-in-out;
}
.primary-cta:hover .icon,
.secondry-cta:hover .icon{
transform: rotateZ(45deg);
}

.secondry-cta:hover .icon path{
stroke:#131540;
}

/*Header*/
.hmenu {
  position: relative;
  z-index: 300;
}

.hmenu__ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-40-30);
  max-width: 1200px;
  margin: 0 auto;
  padding:0px;
}
.hmenu__li { position: relative; }
.hmenu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 24px 0px;
  border: none;
  background: transparent;
  border-radius: 7px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  white-space: nowrap;
}
.hmenu__li > a,
.hmenu__trigger > a {
  position: relative;
  width: fit-content !important;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.hmenu__li > a::after,
.hmenu__trigger > a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: var(--bricks-teal);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.hmenu__li > a:hover::after,
.hmenu__trigger > a:hover::after {
  left: 0;
  width: 100%;
}
.hmenu__li > a.is-active::after,
.hmenu__trigger > a.is-active::after {
  left: 0;
  width: 100%;
}

.hmenu__li > a.is-active::after {
  left: auto;
  right: 0;
  width: 0;
}

.hmenu__li.is-open > .hmenu__trigger::after {
  left: 0;
  width: 100%;
}

.hmenu__trigger.is-active {
  color: #07CFB5;
}
.hmenu__trigger[aria-current="page"] {
  color: #07CFB5;
}
.hmenu__submenu-item > .hmenu__submenu-btn,
.hmenu__sub-link{
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.hmenu__submenu-item.is-active > .hmenu__submenu-btn,
.hmenu__sub-link.is-active {
  border-color: #000;
}
.hmenu__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 24px 0px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  white-space: nowrap;
  border: none;
  background: transparent;
  font-family: inherit;
}
.hmenu__link.is-active { color: #07CFB5; }

.hmenu__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: clamp(280px, 90vw, 620px);
  background: rgb(255 255 255 / 95%);
  border: 3px solid #242424;
  border-radius: 12px;
  padding: 5px;
  list-style: none;
  z-index: 200;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__li.is-open > .hmenu__submenu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.hmenu__submenu.flip-left {
  left: auto;
  right: 0;
}

.hmenu__submenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 6px;
  border-bottom: 1px solid var(--bricks-brand);
  margin-bottom: 4px;
}
.hmenu__submenu-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}
.hmenu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  border-radius: 5px;
  color: #444;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  flex-shrink: 0;
}
.hmenu__close:hover { background: #222; color: #999; }
.hmenu__close svg path{
  stroke: #444;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__close:hover svg path { stroke: #fff; }
.hmenu__submenu-item { position: relative; }

.hmenu__submenu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__submenu-btn:hover,
.hmenu__submenu-item.is-open > .hmenu__submenu-btn {
  background: var(--bricks-brand);
  color: #fff;
}
.hmenu__submenu-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--bricks-teal);
  flex-shrink: 0;
  color: #555;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__submenu-btn:hover .hmenu__submenu-btn-icon,
.hmenu__submenu-item.is-open > .hmenu__submenu-btn .hmenu__submenu-btn-icon {
  background: var(--bricks-teal);
  color: #fff;
}

.hmenu__submenu-btn-label { flex: 1; }
.hmenu__submenu-btn-count {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--bricks-brand);
  border-radius: 4px;
  padding: 1px 5px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__submenu-btn:hover .hmenu__submenu-btn-count,
.hmenu__submenu-item.is-open > .hmenu__submenu-btn .hmenu__submenu-btn-count {
  background-color: #08cfb5;
  color: #555;
}

.hmenu__submenu-btn-arrow {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.hmenu__submenu-btn-arrow path {
  stroke: #000000;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__submenu-btn:hover .hmenu__submenu-btn-arrow path,
.hmenu__submenu-item.is-open > .hmenu__submenu-btn .hmenu__submenu-btn-arrow path {
  stroke: #fff!important;
}

.hmenu__submenu-item.is-open > .hmenu__submenu-btn .hmenu__submenu-btn-arrow {
  transform: rotate(90deg);
}

.hmenu__sub-ul {
  list-style: none;
  margin: 2px 5px 4px 50px;
  padding-left: 12px;
  padding-right: 12px;
  border-left: 1px solid #222;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__submenu-item.is-open > .hmenu__sub-ul {
  max-height: 260px;
  opacity: 1;
  overflow-y: auto;
}


.hmenu__submenu{
  overflow-y: auto;
  max-height: calc(100dvh - var(--header-height) - 58px);
}


.hmenu__sub-ul::-webkit-scrollbar { width: 3px; }
.hmenu__sub-ul::-webkit-scrollbar-track { background: transparent; }
.hmenu__sub-ul::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }

.hmenu__submenu::-webkit-scrollbar { width: 3px; }
.hmenu__submenu::-webkit-scrollbar-track { background: transparent; }
.hmenu__submenu::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }

.hmenu__sub-link {
  display: block;
  padding: 6px 8px;
  border-radius: 5px;
  color: #242424;
  font-size: 12.5px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__sub-link:hover { 
  background: var(--bricks-brand); 
  color: #ffffff;
}

.hmenu__sub-link:focus-visible {
  outline: 2px solid #3a6fff44;
  outline-offset: -1px;
}

.hmenu__view-all {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  margin-top: 2px;
  border-radius: 5px;
  color: var(--bricks-brand);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.hmenu__view-all:hover { background: #1a2340; color: var(--bricks-teal); }
.hmenu__view-all svg { flex-shrink: 0; }

.hmenu__trigger:focus-visible,
.hmenu__submenu-btn:focus-visible,
.hmenu__close:focus-visible {
  outline: 2px solid #3a6fff88;
  outline-offset: 1px;
}


@media (max-width: 991px) {

  .hmenu__ul {
    flex-direction: column;
    padding: 6px 8px;
    gap: 2px;
  }
  .hmenu__li {
    width: 100%;
  }
  .hmenu__trigger,
  .hmenu__link {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
  }

  .hmenu__submenu {
    position: static;
    width: 100%;
    min-width: unset;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 2px;
    padding: 4px;
    opacity: 0 !important;
    transform: none !important;
    pointer-events: all !important;
    max-height: 0;
    overflow: hidden;
    border-width: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  }

  .hmenu__li.is-open > .hmenu__submenu {
    max-height: 1000px;
     opacity: 1 !important;
  }
  .hmenu__submenu-btn {
    padding: 9px 10px;
  }
  .hmenu__sub-ul {
    margin-left: 20px;
  }

}
.hmenu__trigger::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
/*Footer*/
.ft-menu nav ul li a {
  position: relative;
  width: fit-content !important;
  transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.ft-menu nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.ft-menu nav ul li a[aria-current="page"]::after {
  left: 0;
  width: 100%;
}

.ft-menu nav ul li a:not([aria-current="page"]):hover::after {
  left: 0;
  width: 100%;
}

.ft-menu nav ul:has(a:not([aria-current="page"]):hover)
a[aria-current="page"]::after {
  left: auto;
  right: 0;
  width: 0;
}

/*Home Page*/
.idef-card::after{
  content:'';
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, #131540 26.13%, #07CFB5 134.87%);
  transition:var(--ease-default);
  z-index:0;
  opacity:0;
}
.idef-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.idef-card:hover::after{
  opacity:1;
}
.idef-card__icon-wrp,
.idef-card__icon path,
.idef-card__title,
.idef-card__blurb,
.idef-card__cta,
.idef-card__cta .icon path{
  transition:var(--ease-default);
}
.idef-card:hover .idef-card__title{
  color:var(--bricks-white);
}
.idef-card:hover .idef-card__icon-wrp{
  background-color:var(--bricks-teal);
}
.idef-card:hover .idef-card__icon path{
  fill:#010334;
}
.idef-card:hover .idef-card__blurb{
  color:rgba(255, 255, 255, 0.7);
}

.idef-card:hover .idef-card__cta{
  color:var(--bricks-white);
  text-decoration:underline;
}

.idef-card:hover .idef-card__cta .icon path{
  stroke:var(--bricks-white);
}

/*Blogs*/
.blog-card::after{
  content:'';
  position:absolute;
  inset: 0;
  background: linear-gradient(31.63deg, #131540 64%, #07CFB5 100%);
  transition:var(--ease-default);
  z-index:-2;
  opacity:0;
  
}
.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  z-index: -1;
  opacity:0;
  transition:var(--ease-default);
  pointer-events: none;
}

.blog-card:hover::after,
.blog-card:hover::before{
  opacity:1;
}

@media (max-width: 991px) and (min-width: 768px) {
  .blog-cards > *:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px){
.blog-card::after,
.blog-card::before{
  opacity:1;
}
}

/*FAQ*/
.faq-item::after {
  content: '';
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 85% 50%,
    rgba(7, 207, 181, 0.8) 0%,
    rgba(7, 207, 181, 0.4) 25%,
    rgba(7, 207, 181, 0.1) 45%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition:all 0.3s ease-in-out;
}
.faq-item.brx-open::after{
  opacity: 1;
}
.faq-item.brx-open .faq-item__eicon path{
  stroke:#ffffff;
}
.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

/*Contact Us Form*/
.contact-wsform input,
.contact-wsform textarea{
font-size: 14px!important;
border-radius: 15px!important;
border:none!important;
padding: 15px!important;
background-color: rgba(255, 255, 255, 0.5)!important;
}
.contact-wsform input::placeholder,
.contact-wsform textarea::placeholder{
 color: rgba(1, 3, 52, 0.7)!important;
}
.contact-wsform input:focus,
.contact-wsform textarea:focus{
 box-shadow: 0px 0px 2px #010334!important;
}
.contact-wsform input{
min-height: 50px!important;
}
.contact-wsform textarea{
min-height: 276px!important;
max-height: 276px!important;
}
.contact-wsform .wsf-field-wrapper{
margin-bottom: 30px!important;
}
.contact-wsform .wsf-bottom{
margin-bottom: 0px!important;
}

.contact-wsform__submit .wsf-button{
position: relative!important;
font-size: 16px!important;
letter-spacing: 1px!important;
text-transform: uppercase!important;
color: #010334!important;
border-radius: 50px!important;
min-height: 50px!important;
padding: 15px!important;
border:none!important;
background-color: #07CFB5!important;
transition: all 0.7s ease-in-out!important; 
}
.contact-wsform__submit .wsf-button::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  width: 10px;
  height: 10px;
  background-image: url("/wp-content/uploads/2026/04/arrow-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s ease-in-out;
}
.contact-wsform__submit .wsf-button:hover{
  border-radius: 15px!important;
  background-color: #ffffff!important;
  box-shadow: 0px 0px 12px 0px #ffffff!important;
}
.contact-wsform__submit .wsf-button:hover::after{
  transform: rotateZ(45deg);
}
