.headermain {
  background-color: var(--color-white);
}
.headermain.navsticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* optional shadow */
}
.headermain .logoframe {
  width: 240px;
  height: 55px;
}
@media (max-width: 1199px) {
  .headermain .logoframe {
    width: 225px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .headermain .logoframe {
    width: 150px;
  }
}
.headermain .mobiletogglebox {
  display: none;
  width: 46px;
  height: 36px;
  border-radius: 5px;
  border: 1px solid #000;
  padding: 6px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .headermain .mobiletogglebox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.headermain .mobiletogglebox span {
  width: 80%;
  height: 2px;
  background-color: #000;
}
.headermain .navleft {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .headermain .navleft {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .headermain .navright {
    display: none;
    width: 100%;
    margin-top: 20px;
  }
}
.headermain .menus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .headermain .menus {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .headermain .menus {
    gap: 8px;
  }
}
@media (max-width: 991px) {
  .headermain .menus li {
    padding: 5px 0;
    width: 100%;
  }
}
.headermain .menus li.active a {
  color: var(--fc-primary);
  font-weight: 600;
}
.headermain .menus li a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(15, 28, 54, 0.9);
  text-decoration: none;
}

@media (max-width: 991px) {
  .openmenu .navright {
    display: block;
  }
  .openmenu .menus li {
    width: 100%;
  }
}

.actioncontact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.actioncontact .contacticon {
  display: flex;
  flex-wrap: wrap;
  width: 15px;
  height: 15px;
}
.actioncontact .contacttext {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  width: calc(100% - 25px);
  word-break: break-all;
}

.navtopbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--fc-primary);
  padding: 6px 0;
}
@media (max-width: 767px) {
  .navtopbar {
    padding: 6px 12px;
  }
}
.navtopbar .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
}
.navtopbar p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .navtopbar p {
    font-size: 11px;
    width: calc(100% - 28px);
  }
}
.navtopbar .closebtn {
  display: flex;
  width: 18px;
  height: 18px;
}/*# sourceMappingURL=header.css.map */