@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --font-1: "Jost", sans-serif;
}

.header-top {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}
.header-top .grid-header-top {
  display: grid;
  grid-template-columns: 180px auto;
  grid-gap: 15px;
}
.header-top .grid-header-top .widget-left {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
}
.header-top .grid-header-top .widget-left .logo img {
  position: relative;
  top: 1px;
}
.header-top .grid-header-top .widget-left button {
  width: 100%;
  height: 40px;
  border-radius: 30px;
  outline: none;
  box-shadow: none;
  background: var(--color-1);
  position: relative;
  top: 10px;
}
.header-top .grid-header-top .widget-left button svg {
  fill: #fff;
  position: relative;
  right: 5px;
  top: -1px;
}
.header-top .grid-header-top .widget-left .search-box {
  position: relative;
  max-width: 650px;
}
.header-top .grid-header-top .widget-left .search-box input {
  width: 100%;
  border: none;
  border-radius: 5px;
  height: 40px;
  position: relative;
  top: 10px;
  outline: none;
  background: #eee;
  padding-left: 15px;
}
.header-top .grid-header-top .widget-left .search-box button {
  position: absolute;
  right: 8px;
  top: 9px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  width: 40px;
}
@media (max-width: 991px) {
  .header-top .grid-header-top .widget-left {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .header-top .grid-header-top {
    grid-template-columns: 200px auto;
    grid-gap: 15px;
  }
}
@media (max-width: 767px) {
  .header-top .grid-header-top {
    grid-template-columns: 125px auto;
    grid-gap: 15px;
    padding-top: 5px;
  }
}

.page-header-2 {
  text-align: center;
  padding: 40px;
  background-color: red;
  background-image: url(../../images/banner-5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.page-header-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
.page-header-2 .container {
  position: relative;
  z-index: 10;
}
.page-header-2 * {
  color: #fff;
}
.page-header-2 h2 {
  margin-bottom: 15px;
}

#searchModal .modal-content {
  border-radius: 0;
}

#searchModal .modal-body {
  padding: 0;
}

.close-btn-block {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 5px;
  background: var(--color-1);
  color: #fff;
  border-radius: 20px;
  margin-top: 20px;
}

.close-btn-block button {
  border: none;
  background: transparent;
  color: #fff;
}

#searchModal .search-part {
  margin: 0;
}

#searchModal .search-part input {
  height: 65px;
  padding: 10px 20px;
  font-size: 22px;
  border: none;
  background: #eee;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  margin-top: 0;
}

#searchModal .search-part button {
  top: 13px;
  right: 17px;
  font-size: 24px;
  outline: none;
  box-shadow: none;
  position: absolute;
  border: none;
}

#searchModal .quick-search {
  padding: 20px 20px 15px;
}

#searchModal .quick-search h5 {
  text-transform: uppercase;
  margin: 0;
  color: var(--color-1);
}

#searchModal .quick-search ul {
  margin: 15px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

@media (max-width: 767px) {
  #searchModal .quick-search ul {
    grid-template-columns: 1fr 1fr;
  }
}
#searchModal .quick-search ul li {
  display: block;
  height: 100%;
}

#searchModal .quick-search ul li:last-child {
  margin-right: 0;
}

#searchModal .quick-search ul li a {
  display: block;
  padding: 5px 12px 4px;
  /* background: #eee; */
  color: #222;
  border-radius: 5px;
  border: 1px solid #2b2a2a;
  height: 100%;
  font-size: 16px;
  line-height: 25px;
}

#searchModal .quick-search ul li.active a {
  background: var(--color-2);
  border-color: var(--color-2);
  color: #fff;
  pointer-events: none;
}

.search-part {
  position: relative;
}

.header-top .grid-header-top .widgets-right > div {
  float: right;
  text-align: right;
  margin-right: 0;
  position: relative;
}
@media (max-width: 991px) {
  .header-top .grid-header-top .widgets-right > div {
    top: 0;
  }
}
@media (max-width: 767px) {
  .header-top .grid-header-top .widgets-right > div {
    top: 7px;
  }
}
.header-top .grid-header-top .widgets-right > div nav {
  display: block;
}
.header-top .grid-header-top .widgets-right > div nav > ul {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .header-top .grid-header-top .widgets-right > div nav > ul {
    margin-top: 17px;
  }
  .header-top .grid-header-top .widgets-right > div nav > ul li.visible-sm-xs {
    display: inline-block !important;
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  .header-top .grid-header-top .widgets-right > div nav > ul li.visible-sm-xs {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .header-top .grid-header-top .widgets-right > div nav > ul {
    margin-top: 0;
  }
}

.header-top .grid-header-top .widgets-right > div:first-child {
  margin-right: 0;
}

.header-top .grid-header-top .widgets-right .phone-number .btn-1 {
  position: relative;
  top: 2px;
  border-radius: 20px;
  padding: 8px 16px;
}
.header-top .grid-header-top .widgets-right .phone-number h5 {
  font-size: 16px;
  margin: 0 0 7.5px;
  font-weight: bold;
  color: var(--color-1);
  position: relative;
  top: 4px;
}

.header-top .grid-header-top .widgets-right p {
  font-size: 13px;
}

.header-top .grid-header-top .widgets-right .profile {
  text-align: center;
  display: inline-block;
  background: var(--color-1);
  border-radius: 4px;
  padding: 0px 5px;
  color: #fff;
}
.header-top .grid-header-top .widgets-right .profile.acc {
  background: var(--color-2);
}

.header-top .grid-header-top .widgets-right .profile svg {
  width: 18px;
  fill: #fff;
}

.header-top .grid-header-top .widgets-right .profile.cart a {
  width: 90px;
  margin-right: 0;
  border-radius: 6px;
  color: #fff;
  position: relative;
  display: block;
}
@media (max-width: 767px) {
  .header-top .grid-header-top .widgets-right .profile.cart a {
    width: 45px;
  }
}
.header-top .grid-header-top .widgets-right .profile.cart a p {
  color: #fff;
}
.header-top .grid-header-top .widgets-right .profile.cart a span.badge {
  position: absolute;
  right: 25px;
  top: 7px;
  border-radius: 14px;
  text-align: center;
  padding: 2px 5px;
  background: var(--color-2);
  font-weight: normal;
}
.header-top .grid-header-top .widgets-right .profile.cart a svg {
  fill: #222;
}

@media (max-width: 991px) {
  .header-top .logo img {
    position: relative;
    top: -1px;
  }
}
.cart-item {
  position: relative;
}
.cart-item #empty {
  padding: 20px 20px;
}
.cart-item .cart-popup {
  position: absolute;
  right: 0;
  top: 39px;
  width: 100vw;
  max-width: 450px;
  background-color: #EDEFF2;
  text-align: left;
  transform: translateY(-100vh);
  opacity: 0;
  border-radius: 0 0 5px 5px;
}
.cart-item .cart-popup .cart-inner {
  max-height: 70vh;
  overflow: auto;
  padding-bottom: 85px;
  margin-bottom: 50px;
  padding: 20px;
}
.cart-item .cart-popup #checkoutBtn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  border-radius: 0;
  border: none;
  background-color: var(--color-1);
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.cart-item .cart-popup #checkoutBtn input {
  border: none;
  background-color: transparent;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cart-item .cart-popup {
    top: 32px;
    right: -17px;
  }
}
.cart-item .cart-popup p {
  font-size: 18px !important;
}
.cart-item #cart {
  display: none;
}
.cart-item #cart:checked ~ .cart-popup {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease 0.15s, transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
}
.cart-item .cart-link {
  cursor: pointer;
}
.cart-item .cart-link .default-close {
  display: none;
}
.cart-item .default-cart {
  position: relative;
}
.cart-item .default-cart b {
  position: absolute;
  top: -2px;
  right: -4px;
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0;
  text-align: center;
  background-color: #4444e0;
  color: #fff;
  border-radius: 50%;
  padding: 3px 5px;
}
.cart-item #cart:checked + label .default-cart {
  display: none;
}
.cart-item #cart:checked + label .default-close {
  display: inline-block;
}
.cart-item label.overlay {
  position: fixed;
  left: 0;
  top: 52px;
  background-color: rgba(0, 0, 0, 0.65);
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -10;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s linear;
}
@media (max-width: 991px) {
  .cart-item label.overlay {
    top: 56px;
  }
}
@media (max-width: 767px) {
  .cart-item label.overlay {
    top: 45px;
  }
}
.cart-item #cart:checked ~ label.overlay {
  opacity: 1;
  pointer-events: initial;
}

.top-cart-product {
  border-radius: 10px;
  overflow: hidden;
}
.top-cart-product .tc-box {
  padding: 16px;
  margin: 0;
  border: 0;
  align-items: self-start;
  display: grid;
  grid-template-columns: 80px auto;
  grid-gap: 10px;
}
.top-cart-product .tc-box .imgs {
  border-radius: 5px;
  overflow: hidden;
}
.top-cart-product .tc-box .imgs img {
  width: 100%;
}
.top-cart-product .tc-box .content a {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
  color: var(--color-1);
}
.top-cart-product .tc-box .content .split-price-and-inc {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  margin: 3px 0 2px;
}
.top-cart-product .tc-box .content .split-price-and-inc .price {
  display: grid;
  grid-template-columns: 10px auto;
  grid-gap: 5px;
}
.top-cart-product .tc-box .content .split-price-and-inc .price h5 {
  margin: 0;
}
.top-cart-product .tc-box .content .split-price-and-inc .inc {
  display: grid;
  grid-template-columns: 20px 40px 20px;
  grid-gap: 5px;
  position: relative;
}
.top-cart-product .tc-box .content .split-price-and-inc .inc input[type=text] {
  width: 100%;
  border: none;
  margin: 0;
  text-align: center;
  position: relative;
  margin-top: 0;
  pointer-events: none;
  height: 20px;
}
.top-cart-product .tc-box .content .split-price-and-inc .inc button {
  font-size: 12px;
  display: inline-block;
  height: 20px;
  width: 20px;
  padding: 0 3px;
  border: 1px solid #83838C;
  border-radius: 4px;
  line-height: 19px;
  color: #444;
  font-size: 18px;
}
.top-cart-product .tc-box .content .remove-btn {
  font-size: 13px;
  border: 1px solid red;
  border-radius: 5px;
  padding: 0px 10px;
  background: #fff;
  color: red;
  width: 70px;
}
.top-cart-product .tc-box:nth-child(odd) {
  background: #ffffff;
}
.top-cart-product .tc-box:nth-child(even) {
  background: #F5F7FA;
}

.sm-xs-menu-btn a,
.sm-xs-menu-btn button {
  border: none;
  font-size: 20px;
  position: relative;
  top: 1px;
  width: 40px;
  height: 45px;
  color: #222;
  background: transparent;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .sm-xs-menu-btn a,
  .sm-xs-menu-btn button {
    top: -10px;
  }
  .sm-xs-menu-btn a svg,
  .sm-xs-menu-btn button svg {
    position: relative;
    top: -3px;
  }
}

.dropdown-menu {
  padding: 0;
  width: 100%;
  min-width: 200px;
  border-radius: 10px;
  top: 125%;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--color-2);
}

.dropdown-menu li a {
  font-size: 15px;
  padding: 12px 16px 6px;
  position: relative;
}

.dropdown-menu li a:hover {
  background: transparent;
}

.dropdown-menu li:last-child a {
  padding-bottom: 12px;
}

.menu-grid .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 5px;
  background-color: transparent;
}
.menu-grid .inner .right .navbar-info {
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  top: 3px;
}
.menu-grid .inner .right .navbar-info i {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
  position: relative;
  top: -4px;
}
.menu-grid .inner .right .navbar-info p {
  color: #fff;
}
.menu-grid .inner .right .navbar-info p small {
  font-size: 11px;
  line-height: 3px;
  display: block;
  text-align: left;
  text-transform: capitalize;
}
.menu-grid .inner .right .navbar-info p span {
  font-size: 13px;
  font-weight: 500;
}

.navbar-expand-lg {
  padding: 0;
}

body.abs-menu .menu-grid {
  position: absolute;
  top: 64px;
  left: 0px;
  width: 100%;
  z-index: 2;
  background: transparent;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.navbar-expand-lg .navbar-nav > li {
  padding: 0 5px;
  display: inline-block;
}
.navbar-expand-lg .navbar-nav > li span {
  cursor: pointer;
}

.navbar-expand-lg .navbar-nav li .nav-link {
  font-size: 14px;
  padding: 14px 15px;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  color: #222;
  text-transform: uppercase;
}
.navbar-expand-lg .navbar-nav li .nav-link:hover {
  color: var(--color-3);
}

body.abs-menu .navbar-expand-lg .navbar-nav li .nav-link {
  color: #222;
}

.navbar-expand-lg .navbar-nav li .nav-link:first-child {
  padding-left: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}



.dropdown-menu[data-bs-popper] {
  margin-top: 0;
} /*# sourceMappingURL=header.css.map */