/* Start custom CSS for html, class: .elementor-element-9b85142 */:root{
  --hmc-text: #111827;
  --hmc-line: rgba(17,24,39,0.08);
  --hmc-shadow: 0 12px 34px rgba(0,0,0,0.04);
  --hmc-shadow-lg: 0 18px 50px rgba(0,0,0,0.08);
  --hmc-container: 1280px;
}

body.hmc-menu-open{
  overflow: hidden;
}

.hmc-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 14px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hmc-header__inner{
  width: min(var(--hmc-container), 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--hmc-line);
  box-shadow: var(--hmc-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: .25s ease;
}

.hmc-header.is-scrolled .hmc-header__inner{
  background: rgba(255,255,255,0.94);
  box-shadow: var(--hmc-shadow-lg);
}

.hmc-header__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.hmc-header__logo img{
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 54px;
  object-fit: contain;
}

.hmc-header__nav{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.hmc-menu{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.hmc-menu li a{
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--hmc-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  transition: .2s ease;
}

.hmc-menu li a:hover{
  background: rgba(17,24,39,0.05);
}

.hmc-mobile-toggle{
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(17,24,39,0.05);
  cursor: pointer;
  flex: 0 0 auto;
}

.hmc-mobile-toggle span{
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: .25s ease;
}

.hmc-mobile-toggle span:nth-child(1){ top: 15px; }
.hmc-mobile-toggle span:nth-child(2){ top: 22px; }
.hmc-mobile-toggle span:nth-child(3){ top: 29px; }

.hmc-mobile-toggle.is-active span:nth-child(1){
  top: 22px;
  transform: rotate(45deg);
}
.hmc-mobile-toggle.is-active span:nth-child(2){
  opacity: 0;
}
.hmc-mobile-toggle.is-active span:nth-child(3){
  top: 22px;
  transform: rotate(-45deg);
}

.hmc-mobile-menu{
  display: none;
}

@media (max-width: 1024px){
  .hmc-header{
    padding: 12px 14px;
  }

  .hmc-header__inner{
    min-height: 74px;
    padding: 0 16px;
    border-radius: 24px;
  }

  .hmc-header__nav{
    display: none;
  }

  .hmc-mobile-toggle{
    display: inline-block;
  }

  .hmc-mobile-menu{
    display: block;
    width: min(var(--hmc-container), calc(100% - 28px));
    margin: 10px auto 0;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--hmc-line);
    box-shadow: var(--hmc-shadow);
    transition: .3s ease;
  }

  .hmc-mobile-menu.is-open{
    max-height: 420px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hmc-mobile-menu a{
    display: block;
    padding: 14px 4px;
    color: var(--hmc-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(17,24,39,0.06);
    font-size: 15px;
    font-weight: 600;
  }

  .hmc-mobile-menu a:last-child{
    border-bottom: 0;
  }
}

@media (max-width: 767px){
  .hmc-header{
    padding: 10px 10px;
  }

  .hmc-header__inner{
    min-height: 68px;
    padding: 0 14px;
    border-radius: 20px;
  }

  .hmc-header__logo img{
    max-width: 140px;
    max-height: 42px;
  }

  .hmc-mobile-menu{
    width: calc(100% - 20px);
    border-radius: 18px;
  }
}/* End custom CSS */