ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes MoveUpDown {
  0%, 100% {
    transform: translateX(-52%) translateY(-20px);
  }
  50% {
    transform: translateX(-52%) translateY(0px);
  }
}
@keyframes ripple-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15), 0 0 0 15px rgba(255, 255, 255, 0.15), 0 0 0 30px rgba(255, 255, 255, 0.15);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.15), 0 0 0 30px rgba(255, 255, 255, 0.15), 0 0 0 45px rgba(255, 255, 255, 0);
  }
}
@keyframes rotateScale {
  from {
    transform: scale(0.5) rotate(310deg);
    opacity: 0.5;
  }
  to {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}
header.qu-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1024;
  transition: all 0.15s ease;
}
header.qu-site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  transition: all 0.15s ease;
}
@media screen and (min-width: 1200px) {
  header.qu-site-header nav {
    padding: 20px 50px;
  }
}
@media screen and (min-width: 1400px) {
  header.qu-site-header nav {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 575px) {
  header.qu-site-header nav .brand-logo {
    max-width: 135px;
  }
}
header.qu-site-header .primary-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  header.qu-site-header .primary-nav-menu {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  header.qu-site-header .primary-nav-menu {
    margin-left: 60px;
  }
}
header.qu-site-header .primary-nav-menu a {
  padding: 10px 10px;
  color: white;
  text-transform: uppercase;
  position: relative;
}
header.qu-site-header .primary-nav-menu a::before {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  height: 2px;
  width: 0px;
  background-color: var(--delixa-color-primary);
  transform: rotate(-6deg);
  transition: all 0.15s ease;
}
header.qu-site-header .primary-nav-menu a:hover::before {
  width: 100%;
}
header.qu-site-header .primary-nav-menu .menu-item-has-children {
  position: relative;
}
header.qu-site-header .primary-nav-menu .menu-item-has-children > a::after {
  content: "+";
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 3px;
}
header.qu-site-header .primary-nav-menu .menu-item-has-children .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 250px;
  background-color: var(--delixa-color-heading);
  padding: 15px;
  transition: all 0.15s ease;
  opacity: 0;
  visibility: hidden;
}
header.qu-site-header .primary-nav-menu .menu-item-has-children .sub-menu li + li {
  margin-top: 15px;
}
header.qu-site-header .primary-nav-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
header.qu-site-header button {
  background-color: transparent;
  padding: 0;
  border: 0;
  color: white;
}
header.qu-site-header .hotline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: white;
}
header.qu-site-header .hotline:hover {
  color: white;
}
header.qu-site-header .hotline span {
  font-size: 14px;
  line-height: 1.5;
}
header.qu-site-header .hotline span.icon i {
  font-size: 47px;
}
header.qu-site-header .hotline span.icon svg {
  width: 47px;
  height: 47px;
  fill: white;
}
@media screen and (max-width: 767px) {
  header.qu-site-header .hotline span:not(.icon) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header.qu-site-header .hotline span img {
    width: 34px;
  }
}
header.qu-site-header .hotline b {
  display: block;
  font-family: var(--delixa-heading-font-family);
  font-weight: 500;
  font-size: 20px;
}
header.qu-site-header.sticky {
  background-color: var(--delixa-color-heading);
}
@media screen and (min-width: 1200px) {
  header.qu-site-header.sticky nav {
    padding: 15px 50px;
  }
}
@media screen and (min-width: 1400px) {
  header.qu-site-header.sticky nav {
    padding: 25px 50px;
  }
}
header.qu-site-header .sidebar__toggle {
  background-color: transparent;
  border: 0;
}
@media screen and (min-width: 992px) {
  header.qu-site-header .sidebar__toggle {
    display: none;
  }
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -310px;
  bottom: 0;
  background-color: white;
  z-index: 1024;
  width: 300px;
  transition: all 0.2s ease-in-out;
  overflow-y: scroll;
}
@media screen and (min-width: 992px) {
  .offcanvas-menu {
    display: none;
  }
}
.offcanvas-menu .menu-header {
  background-color: var(--delixa-color-heading);
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--delixa-color-primary);
}
.offcanvas-menu .menu-header button {
  color: white;
  border: 1px solid var(--delixa-color-border);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-menu .menu-body {
  padding: 20px 30px;
}
.offcanvas-menu .menu-body ul li + li {
  border-top: 1px solid var(--delixa-color-border);
}
.offcanvas-menu .menu-body ul li a {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  font-size: 15px;
}
.offcanvas-menu .menu-body .menu-item-has-children > a::after {
  content: "\f078";
  width: 30px;
  height: 30px;
  border: 1px solid var(--delixa-color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  transition: all 0.15s ease;
  font-weight: 600;
}
.offcanvas-menu .menu-body .menu-item-has-children > a.active {
  color: var(--delixa-color-primary);
}
.offcanvas-menu .menu-body .menu-item-has-children > a.active::after {
  content: "\f077";
  border-color: var(--delixa-color-primary);
}
.offcanvas-menu .menu-body .sub-menu {
  display: none;
}
.offcanvas-menu .menu-footer {
  padding: 20px 30px;
}
.offcanvas-menu .menu-footer .widget-title {
  margin-bottom: 15px;
}
.offcanvas-menu .menu-footer .social-icons a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 39px;
  border-radius: 40px;
  color: var(--delixa-color-heading);
  border: 1px solid rgba(2, 11, 24, 0.1);
  font-size: 14px;
}
.offcanvas-menu.is-menu-open {
  right: 0;
}
.offcanvas-menu .searcForm {
  margin-bottom: 20px;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.2s linear;
}
.overlay-menu.is-menu-open {
  opacity: 1;
  visibility: visible;
}

.searchbox {
  position: fixed;
  inset: 0;
  z-index: 1025;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
}
.searchbox.show {
  opacity: 1;
  visibility: visible;
}
.searchbox form {
  max-width: 600px;
  margin: 0 auto;
}
.searchbox form input {
  height: 60px;
  border: 0;
  border-bottom: 2px solid var(--delixa-color-primary);
  border-radius: 0;
  outline: none;
  background-color: transparent;
  padding: 0 15px;
  font-family: var(--delixa-heading-font-family);
  font-size: 20px;
}
.searchbox form input:focus {
  border-color: var(--delixa-color-primary);
}
.searchbox .closeSearchBox {
  background-color: var(--delixa-color-primary);
  color: white;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchbox .closeSearchBox i {
  transition: all 0.15s ease;
}
.searchbox .closeSearchBox:hover {
  background-color: var(--delixa-color-heading);
}
.searchbox .closeSearchBox:hover i {
  transform: rotate(180deg);
}
