.header-main-div {h
  position: relative;
  height: 84px;
  background: transhparent;
}

.header-wrapper {
  background-color: transparent;
  height: 84px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  transition: all 0.4s ease-in-out;
  width: 100%;
  z-index: 9;
}

.header-wrapper.scrolled {
  background: #74089C;
}

.header-wrapper .col-sm-2{
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  height: 100%;
}

.header-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-menu ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.header-menu ul li a:before {
  position: absolute;
  content: "";
  bottom: -8px;
  transition: 0.5s ease;
  width: 0;
  height: 2px;
  background: #FFFFFF;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
}

.header-menu ul li a:hover:before {
  width: 100%;
}

.header-menu ul li a:hover {
  color: rgba(255, 255, 255, 1);
}

.header-menu ul li li a{
  color: #171717;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btns a{
  font-size: 16px;
}

.mobile-menu {
  display: none;
}

.mobile-menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children .hs-menu-children-wrapper{
  background-color: transparent;
  color: rgba(255,255,255,0.8);
}

.header-main-div .hs-menu-wrapper.flyouts .hs-menu-item.active a{
  color: #BE10FF;
}

.header-menu ul li.active a:before{
  background: #BE10FF;
}

@media screen and (min-width: 992px){
  .header-menu ul > li{
    padding: 14px 0;
  }
}

@media screen and (max-width: 1200px){
  .header-menu ul li a{
    font-size: 14px;
  }
    
  .header-menu ul{
    gap: 12px;
  }
  
  .header-btns a.primary-btn{
    padding: 8px 32px;
  }
    
  .header-btns a.secondary-btn{
    padding: 8px 12px;
  }
}

@media screen and (max-width: 992px) {
  .header-main-div {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
    height: 84px;
  }

  .mobile-header-row {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .mobile-menu a{
    width: 40%;
    justify-content: center;
  }

  .mobile-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px;
    height: 90px;
    z-index: 999;
    transition: all ease-in-out 0.4s;
  }

  .mobile-header.scrolled {
    background: #74089C;
  }

  .button_container {
    position: absolute;
    top: 0px;
    right: 20px;
    height: 18px;
    width: 27px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
    bottom: 0;
    margin: auto;
  }

  .button_container:hover {
    opacity: 1;
  }

  .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
  }

  .button_container.active .middle {
    opacity: 0;
  }

  .button_container.active .bottom {
    transform: translateY(-5px) translateX(0) rotate(-45deg);
  }

  .button_container span {
    background: #FFFFFF;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
  }

  .button_container span:nth-of-type(2) {
    top: 8px;
  }

  .button_container span:nth-of-type(3) {
    top: 16px;
  }

  .overlay {
    position: fixed;
    background: #74089C;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 99;
    padding: 0 40px;
  }

  .overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    overflow-y: scroll;
  }

  .overlay nav {
    position: relative;
    transform: translateY(120px);
    font-size: 50px;
    font-weight: 400;
    text-align: left;
  }

  .overlay ul {
    padding: 0;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  
  .overlay ul:not(li ul) {
    margin-bottom: 20px;
  }

  .overlay ul li {
    display: block;
    padding: 12px 0;
    position: relative;
  }

  .overlay ul li a {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    margin: auto;
  }
  
  .header-btns{
    flex-direction: column;
  }
}

@media screen and (max-width: 567px) {
  .mobile-menu a{
    width: 74%;
  }
}