.header-section {
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    width: 100%;
    z-index: 999;
  }
  

  .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-logo a img {
    width: 150px;
  }
  

  
  .header-menu .main-menu {
    display: flex;
  }
  
  .header-menu .main-menu li {
    position: relative;
    padding: 30px 25px;
  }
  

  .header-menu .main-menu li a {
    font-size: 15px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    color: #0e0e0e;
  }
  
  .header-menu .main-menu li.active-menu > a {
    color: #086ad8;
  }
  
  .header-menu .main-menu li.active-menu > .menu-icon::after {
    color: #086ad8;
  }
  
  .header-menu .main-menu li .menu-icon::after {
    content: '';
    font-size: 10px;
    color: #94a0b9;
    margin-left: 5px;
    transition: all 0.3s linear;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800px' height='800px' viewBox='0 0 1024 1024' class='icon' version='1.1'%3E%3Cpath d='M903.232 256l56.768 50.432L512 768 64 306.432 120.768 256 512 659.072z' fill='%23000000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    width: 10px;
    height: 10px;
}
  
  .header-menu .main-menu li:hover > .menu-icon::after {
    color: #086ad8;
  }
  
  .header-menu .main-menu li:hover > a {
    color: #086ad8;
  }
  
  .header-menu .main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  
  .header-menu .main-menu li .sub-menu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 270px;
    background: #ffffff;
    box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-radius: 5px;
    border-top: 3px solid #086ad8;
    opacity: 0;
    z-index: 99;
    visibility: hidden;
    transition: all 0.3s linear;
  }
  
  .header-menu .main-menu li .sub-menu li {
    padding: 0;
  }
  
  .header-menu .main-menu li .sub-menu li a {
    padding: 5px 25px;
    font-size: 15px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .header-menu .main-menu li .sub-menu li.active > a {
    color: #086ad8;
  }
  
  .header-menu .main-menu li .sub-menu li:hover > a {
    color: #086ad8;
  }
  
  .header-meta {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .header-cta {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(195deg, #086ad8 0%, #42b9ff 100%);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
  }

  .sticky {
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    -webkit-animation: sticky 1s;
    animation: sticky 1s;
  }


  .wrapper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 30px;
  right: 20px;
  font-size: 25px;
  color: #ffffff;
  background-color: #000;
  z-index: 1;
  display: none;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 39px;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.go-top:hover {
  color: #ffffff;
}

  @keyframes sticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
  }

.faq-link.active .faqAccordianContent{
  display: block;
}

  @media only screen and (max-width: 991px) {
    .header-section {
      padding: 15px 0;
    }
  }
  

  @media only screen and (max-width: 1199px) {
    .header-logo a img {
      width: 130px;
    }
  }

  @media only screen and (max-width: 1199px) {
    .header-menu .main-menu li {
      padding: 30px 20px;
    }
  }