/*
Theme Name: logimax
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Logistics & Transportation HTML Template
Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;0,9..40,1000;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700;1,9..40,800;1,9..40,900;1,9..40,1000&amp;display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --grey:#e4e4e4;
  /* --one:#09637E; */
  --one:#114c4d ;
  --two:#077a8e;
  /* --three:#48cbc5; */
  --three:#DAF6F7;
  --four:#a4d3ca;
  /* --theme: #ff3c20;
  --theme2: #F7C600;
  --theme3:#232F3E; */
  --green:#298200;
  --header: #2a2833;
  --text: #262626;
  --border: #D9D9D9;
  --ratting: #FF9F0D;
  --bg: #f5f5f8;
  --bg2: #DF0A0A0D;
  --color-gradient-1: linear-gradient(309deg, rgba(202,31,39,1) 17%, rgba(247,207,0,1) 70%);
  ---color-gradient-2: linear-gradient(309deg, rgba(247,207,0,1) 14%, rgba(202,31,39,1) 72%);
  ---box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
}

.theme-btn {
  background-color: var(--three);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 20px;
  border-radius: 0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn.hover-white:hover {
  color: var(--header);
}
.theme-btn.hover-white:hover::before, .theme-btn.hover-white:hover::after {
  background-color: var(--white);
}
.theme-btn.header-color {
  background-color: var(--header);
  background-image: inherit;
}
.theme-btn.header-color::before, .theme-btn.header-color::after {
  background-color: var(--three);
}
.theme-btn.header-color-2 {
  background-color: var(--header);
  background-image: inherit;
}
.theme-btn.header-color-2::before, .theme-btn.header-color-2::after {
  background-color: var(--white);
}
.theme-btn.header-color-2:hover {
  color: var(--header);
}
.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
  background-image: initial;
}
.theme-btn.bg-white:hover {
  color: var(--white);
}
.theme-btn.bg-white:hover::before, .theme-btn.bg-white:hover::after {
  background-color: var(--header);
}
.theme-btn.bg-second {
  background-color: var(--theme2);
  color: var(--black);
  background-image: initial;
}
.theme-btn.bg-second:hover {
  color: var(--white);
}
.theme-btn.bg-second:hover::before, .theme-btn.bg-second:hover::after {
  background-color: var(--three);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 14px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}

.link-btn {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
  display: inline-block;
  background-image: linear-gradient(var(--three), var(--three));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.link-btn i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.link-btn:hover {
  color: var(--three);
  background-size: 100% 1px;
}
.link-btn:hover i {
  color: var(--three);
  opacity: 1;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  width: 100% !important;
  box-sizing:border-box !important;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kanit", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 90px;
  font-weight: 500;
  line-height: 100%;
}

h2 {
  font-size: 45px;
  line-height: 110%;
  font-weight: 600;
}
@media (max-width: 991px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 500;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
      margin: 0 0 12px 0;

  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--three);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Kanit", sans-serif, "DM Sans", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--three);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--theme2);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Kanit", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--three);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::-moz-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-moz-placeholder {
    font-size: 18px;
  }
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--three);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  outline: 2px solid var(--one);
  background: #f7f7f7;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--one);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--three);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--three);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--three);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--three);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title span {
  color: var(--three);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
}
.section-title h2 {
  text-transform: capitalize;
}
.section-title.style-2 h2 {
  text-transform: capitalize;
}
.section-title.style-2 h2 span {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--header);
  position: relative;
}
.section-title.style-2 h2 span::before {
  position: absolute;
  bottom: 0;
  right: -25px;
  content: "";
  background-image: url(../img/line-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 60px 0;
}

@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes rounded-2 {
  50% {
    transform: rotate(5deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation__rotate {
  animation: rotate 40s linear infinite;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes top-image-bounce {
  0% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    transform: translatey(-8px);
  }
  50% {
    transform: translatey(12px);
  }
  100% {
    transform: translatey(-8px);
  }
}
@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.header-top {
  background-color: var(--three);
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-top .container-fluid {
    padding: 0 15px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper ul {
  display: flex;
  align-items: center;
  gap: 85px;
}
.header-top-wrapper ul li {
  color: var(--white);
}
.header-top-wrapper ul li i {
  color: var(--white);
}
.header-top-wrapper ul li a {
  color: var(--white);
}
.header-top-wrapper .social-icon span {
  color: var(--white);
}
.header-top-wrapper .social-icon i {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.header-top-wrapper .social-icon i:hover {
  color: var(--three);
}

.top-bar-header {
  background: rgba(var(--three), 0.2);
  padding: 9px 0px;
}
@media (max-width: 767px) {
  .top-bar-header {
    padding: 12px 0px;
  }
  .top-bar-header .d-flex.justify-content-end {
    justify-content: center !important;
  }
}
.top-bar-header .top-welcome-text {
  text-transform: capitalize;
}
.top-bar-header .top-welcome-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-bar-header .top-welcome-text p {
    font-size: 14px;
  }
}
.top-bar-header .social-links {
  margin-left: 30px;
  margin-right: 10px;
}
.top-bar-header .social-links a {
  display: inline-block;
  margin: 0px 6px;
  color: var(--three);
}
.top-bar-header .social-links a:hover {
  color: var(--theme2);
}
.top-bar-header .search-box {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  border: 1px solid #f9f9f9;
  box-sizing: border-box;
}
.top-bar-header .search-box form {
  position: relative;
}
.top-bar-header .search-box form input {
  height: 36px;
  width: 100%;
  padding: 0px 15px;
  font-size: 14px;
  color: var(--three);
}
.top-bar-header .search-box form button {
  background: transparent;
  position: absolute;
  right: 10px;
  color: var(--three);
  border: 0px;
  top: 0;
  line-height: 36px;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.top-bar-header .search-box form button:hover {
  color: var(--theme2);
}

.header-tops-section {
  background-color:var(--one);
  position: relative;
  z-index: 99;
  
}
@media (max-width: 991px) {
  .header-tops-section {
    display: none;
  }
}



.header-tops-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-tops-wrapper .contact-list {
  display: flex;
  align-items: center;
  /* gap: 25px; */
}
.header-tops-wrapper .contact-list li {
  font-size: 15px;
  color: var(--white);
  padding: 7px 0 7px 30px;
}

/* .header-tops-wrapper .contact-list li:first-child{ */
  /* border-right: 1px solid var(--white); */
  /* padding-right:30px;  */
/* } */


.header-tops-wrapper .contact-list li a {
  color: var(--white); font-weight: 600;
  position:relative;
}

.header-tops-wrapper .contact-list li a::after{
  position: absolute;
  content: '';
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineMove 4s infinite;
}

@keyframes lineMove {
  0%{ transform: scaleX(0); }
  80%{ transform: scaleX(1); }
  100%{ transform: scaleX(0); }
}

.header-tops-wrapper .contact-list li i {
  color: var(--white);
  margin-right: 10px;
}
.header-tops-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-tops-wrapper .top-right .social-icon {
  gap: 15px;
}
.header-tops-wrapper .top-right .social-icon span {
  color: var(--black);
  font-weight: 500;
}
.header-tops-wrapper .top-right .social-icon a {
  color:var(--white);
      font-size: 14px;
}
.header-tops-wrapper .top-right .flag-wrap {
  position: relative;
  width: 160px;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select {
  padding: 0 0 0 60px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select::after {
  right: 23px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  width: 10px;
  height: 10px;
  top: 15px;
  border-bottom: 2px solid transparent;
  border-color: var(--three);
  border-right: 2px solid theme-color;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select span {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}
.header-tops-wrapper .top-right .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-tops-wrapper .top-right .flag-wrap .flag {
    display: none;
  }
}
.header-tops-wrapper .top-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px 0; */
}
@media (max-width: 991px) {
  .header-main {
    padding: 15px 0px;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  padding:15px 0px;
  margin-inline-end: 25px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  /* padding:10px 0 0 0; */
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  /* color: var(--three) !important; */
      background: var(--three);
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  /* height:500px;
  overflow-y: scroll; */
  inset-inline-start: 0;
  min-width: 300px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--three);
  color: var(--one) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--three);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  color: var(--three);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--one);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--three);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-65.4%,0);
}

.header-1 {
  position: absolute;
  z-index: 99;
  overflow-x: clip;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #36343c;
}
.header-1 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-logo-2 {
  display: none;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li {
    margin-inline-end: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: var(--white);
}
.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header);
}
.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: var(--white);
}
.header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--white);
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
    display: none;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--white);
}

.header-2 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-2 .container-fluid {
    padding: 0 15px;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 140px;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-left {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  .header-2 .mega-menu-wrapper .header-main .header-left {
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-left ul li {
    margin-inline-end: 25px;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 1600px) {
  .header-2 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header);
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}

.header-3 {
  position: relative;
  background-color: #a4d3ca1f;
  box-shadow: var(---box-shadow);
  z-index: 999;
}

.header-3 .mega-menu-wrapper:first-child{
  border-bottom: 1px solid #00000021;
}

@media screen and (max-width: 1199px) {
  .header-3 .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-3 .header-main .main-menu ul li .has-homemenu {
  left: -400px;
}
@media (max-width: 1600px) {
  .header-3 .header-main .main-menu ul li .has-homemenu {
    left: -300px;
  }
}
.header-3 .header-main .header-right {
  gap: 40px;
}

.header-3 .header-main .header-right .search-icon {
  color: var(--header);
}
@media (max-width: 1199px) {
  .header-3 .header-main .header-right .search-icon {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-3 .header-main .header-right .search-icon {
    display: block;
  }
}
.header-3 .header-main .header-right .header-button {
  margin-right: 50px;
}

.header-3 .header-main .header-right .header__hamburger {
  margin-right: -70px;
}
@media (max-width: 1899px) {
  .header-3 .header-main .header-right .header__hamburger {
    margin-right: 0;
  }
}
.header-3 .header-main .header-right .header__hamburger .sidebar__toggle {
  font-size: 24px;
  color: var(--white);
}
@media (max-width: 1899px) {
  .header-3 .header-main .header-right .header__hamburger .sidebar__toggle {
    color:var(--one);
  }
}

.sidebar__toggle {
  cursor: pointer;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 {
  border-bottom: none;
}
.sticky.header-1 .mega-menu-wrapper .header-main {
  padding: 0px 0px;
}
@media (max-width: 991px) {
  .sticky.header-1 .mega-menu-wrapper .header-main {
    padding: 12px 0px !important;
  }
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-logo-2 {
  display: block;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-logo {
  display: none;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--three);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--one);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--one);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--three);
  color: var(--white);
}

/* .offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
} */

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  background-position: bottom !important;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(7, 1, 30);
  opacity: 0.6;
}
.breadcrumb-wrapper .layer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .layer-shape {
    display: none;
  }
}
.breadcrumb-wrapper .layer-shape img {
  width: 100%;
  height: 100%;
}
.breadcrumb-wrapper .breadcrumb-shape {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 1;
}
.breadcrumb-wrapper .breadcrumb-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-shape {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 70px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--three);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--three);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 18px;
  color: var(--three);
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

.error-items .error-image {
  margin-bottom: 50px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

/* body{
  background-color: #ddd;
} */

/* Search */

.baxa{
  display: flex;
  gap: 30px;
  align-items: center;
}

.sear-cat{
    width: 80%;
    margin: 0 30px 0 0;
}

.search-me{
    display: block;
}

.search-me:focus {
    color: #000000;
    background-color: #fff;
    border-color: #ffbc00;
    outline: 0;
    box-shadow: none;
}

.search-boxx{
  position: relative;
  display: block;
  width: 100%;
}

/* @media(max-width:1200px){
  .search-boxx{
    display: none;
  }
} */

.search_list{
  position: absolute;
  top: 100%;
  z-index: 99;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.search_list .search-li{
  display: none;
  font-size: 15px;
  line-height: 18px;
  color: var(--one, #122f2a);
  font-family: var(--alefox-heading-font, "Inter", serif);
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
  width: 100%;
  transition: 400ms;
  background-color: #fff;
  border-bottom: 1px dashed var(--grey);
  border-right: 1px dashed var(--grey);
}

.search_list .search-li a{
  display: flex;
    align-items: center;
  gap: 15px;
}

.search_list .search-li img{
  aspect-ratio: 3 / 3;
  object-fit: cover;
  width: 55px;
  border: 1px solid var(--one);
  border-radius: 3px;
}

.search_list .search-li a{color: #000;}
.search_list .search-li:hover{
     background-color: var(--alefox-gray, beige);
    }
    
.search_list .search-li:hover a{
  color: var(--alefox-base, #44a05b);
}

.searchicon{
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; */
  border-radius: 4px;
}

.searchicon .search-me{
  border-radius: 0;
  padding: 10px 14px;
  border: 0;
  outline: 0;
  border-top: 1px solid var(--one);
  border-bottom: 1px solid var(--one);
  height: 100%;
}

.searchicon button{
    width: 10%;
    height: -webkit-fill-available;
    /* background: var(--one); */
    padding: 6px;
    text-align: center;
    color: #000;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
    background: #fff;
    border: 1px solid var(--one);
    border-left: none;

}

.not-found{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    padding-top: 1rem;
}

.pagename span , .not-found span{
  border-bottom: 2px solid #666;
}

/* Custome Head */
.header-logo img{
  width: 250px;
}

.header__hamburger{
  display: none;
}

.cartbox{
  position: relative; 
}

.cartbox img{
  /* background: var(--white); */
  width: 45px;
  padding: 6px;
  /* border-radius: 38px; */
}

.cartbox::after{
     position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    height: 105%;
    width: 105%;
    border-radius: 100px;
    z-index: -1;
}

.cartbox .cart_items{
    position: absolute;
    content: '';
    top: -7px;
    right: -7px;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    background: var(--one);
    width: 21px;
    height: 21px;
    line-height: 21px;
    text-align: center;
}

/* carousel-top */
.carousel-top{
  padding:30px 0;
}

.categorycol{
  position: relative;
  color: var(--white);
  min-width: 260px;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 7px 20px;
  background: var(--one);
  border-radius: 7px 7px 0 0;
  top: 0px;
}

.categorycol_outer,.cateul{
  position: relative;
}

.cateul .chain-after{
    content: "";
    width: 8px;
    position: absolute;
    top: -40px;
    left: 7px;
        z-index: 9999;
}

.cateul .chain-before{
    content: "";
    width: 8px;
    position: absolute;
    top: -40px;
    right: 7px;
        z-index: 9999;
}

.cateul{
  border-top: 2px solid #000;
  background: #fff;
  padding-top: 10px;
  border-radius:0 0 7px 7px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.cateul li{
    color: #000;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding:0 15px;
  background: var(--white);
}

.cateul li:last-child{
  border-radius: 0 0 7px 7px;
}

.cateul li:not(:last-child) a{
  border-bottom: 1px solid #ddd;
}

.cateul li a{
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 3px 0;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cateul li:hover{
  background-color: var(--three);
}

.categorycol img{width:20px}

.carousel-inner .carousel-item img{
  aspect-ratio: 3 / 1.77;
  object-fit: cover;
  border-radius: 7px;
      width: 100%;
}

/* .header-main.style-2.bottom{
  padding: 10px 0 0 0;
} */

.header-main.style-2.bottom .main-menu{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.header-main.style-2.bottom .mean__menu-wrapper{
  width: 100%;
}

.header-main.style-2.bottom .header-right{
  justify-content: space-between !important;
  width: 100%;
}

.main.cbody aside{
  width: 20%;
}

.main.cbody .right-side{
  width: 80%;
}
.main.cbody .right-side .imgblock img{
    aspect-ratio:3 / 1.77;
    border-radius: 7px;
        width: 100%;

    object-fit: cover;
}

.main.cbody .right-side .imgblock{box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;}

.brdr-7{
  border-radius: 7px;
}

/* all cateory */
.owlimg{
  position: relative;
  overflow-x: hidden;
}

.owlimg .owl-stage{
      padding: 0px 0px 30px 0;
}

/* .category_crl_outer .cat-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  width: 97%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -110%);
} */

.all-ctgry{
  padding: 10px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  background-color: #fff;
}

.all-ctgry img{
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3 / 3;
}

.all-ctgry .cname{
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.category_crl_outer .cat-nav button{
    font-size: 16px;
    border: 2px solid #ebebeb;
    background: #f5f5f5;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50px;
}

/* product by category */

.prodby-cat{
  padding: 30px 0;
}

/* .prodby-cat .row .col-lg-2{
  width: 14%;
} */

.prodby-catinner{
  overflow: hidden;
  position: relative;
}

.prodby-catinner .cta_btns li {
  min-width: 40px;
  padding: 4px 10px;
  position: absolute;
  left: -60px;
  transform: rotate(45deg);
  background: var(--one);
  color: #fff;
  border-radius: 4px;
  margin-left: 10px;
  text-align: center;
}

.prodby-catinner .cta_btns li button i{
  color: #fff;
}

.prodby-catinner .cta_btns li:nth-child(1){top: 15px;}
.prodby-catinner .cta_btns li:nth-child(2){top: 55px;}
.prodby-catinner .cta_btns li:nth-child(3){top: 95px;}
/* .prodby-catinner .cta_btns li:nth-child(4){top: 100px;} */

.prodby-catinner:hover .cta_btns li{
  left: 0px;
  transform: rotate(0);
}

.prodby-catinner:hover .cta_btns li:nth-child(1){transition: 0.3s;}
.prodby-catinner:hover .cta_btns li:nth-child(2){transition: 0.6s;}
.prodby-catinner:hover .cta_btns li:nth-child(3){transition: 0.9s;}
/* .prodby-catinner:hover .cta_btns li:nth-child(4){transition: 0.8s;} */

.cta_btns li a{
  color: #fff;
}

.prodby-catinner img{
  object-fit: cover;
  aspect-ratio: 3/3;
  border: 1px solid;
      width: 100%;
}

.prodby-catinner.single img{
  object-fit: cover;
  aspect-ratio: 3/3.5;
      width: 100%;
}

.price_plate{
  margin: 10px 0 0 0;
  background: #f7f7f7;
  padding: 10px 5px;
  text-align: center;
  min-height: 100px;
}

.price_plate .name{
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: #262626;
}

.price_plate .actualp{
    font-size: 17px;
    font-weight: 700;
    color: var(--one);
}

.headingprod{
    font-size: 24px;
    font-weight: 700;
    border-bottom: 1px solid #ebebeb
}

.headingprod span{
    background: var(--one);
    padding: 8px 14px 7px;
    display: inline-block;
    border-radius: 7px 7px 0 0;
    color: #fff;
}

/* aside latest */
.lastest-view{
  padding: 30px 0;
}

.latst-v{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: #fff;
  margin-bottom: 10px;
  padding: 5px 5px;
}

.latst-v img{
  object-fit: cover;
  aspect-ratio: 3/3;
  width: 80px !important;
}

.latst-v .stars i{
      font-size: 10px;
    color: orange;
}

.latst-v .prices .actualp{
  font-size: 17px;
    font-weight: 700;
    color: var(--one);
}

.latst-v .name{
    font-size: 14px;
    font-weight: 500;line-height: 15px;
}

.latst_prod{
    font-size: 22px;
    font-weight: 700;
    padding: 0 0 10px 0;
    color: #222222;
    position: relative;
    margin-bottom: 15px;
}

.latst_prod::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--one) 75%, #e7e7e7 70%);
}

.latst-out{
  padding: 15px 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.latst-v .cname{  
      line-height: 26px;
}


/* most viewed */

.headingprod.most-view{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.most-view .cat-nav button{
    font-size: 16px;
    border: 2px solid #ebebeb;
    background: #f5f5f5;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50px;
}

/* .innertwo_img{

} */

/* free-shiping */

.ship-catimg{
  padding: 30px 0;
}

.freeships_outer{
  padding: 0 1rem;
  border: 1px solid #ebebeb;
  border-radius: 7px;
}
.freeships_outer .free-ship{
  padding: 1rem 0;
  color: #000;
  display: flex;
  gap: 15px;
  text-transform: capitalize;
  border-bottom:1px solid #ebebeb ;
}
.freeships_outer .row .col-lg-12:last-child .free-ship{
  border:none;
}

.freeships_outer .free-ship img{
  width: 40px;
}


.freeships_outer .free-ship .icon{
  min-width: 40px;
}

.freeships_outer .free-ship .fre-shp-cntnt .fshead{
  font-size: 18px;
    font-weight: 600;
    color: #000;
}

.freeship_banners{
  border-radius: 7px;
  overflow: hidden;
}

.col-lg-6 .freeship_banners img{
  aspect-ratio: 3 / 2.52;
  object-fit: cover;
      width: 100%;
}

.col-lg-12 .freeship_banners img{
  object-fit: cover;
  aspect-ratio: 3 / 2.5;
      width: 100%;
}

/* top rated */

.top-rated-category{
  padding: 30px 0;
}

#carouselExampleFade{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.recent-view{
  padding: 3rem 0;
}

.ftr_cta_sec{
  background: #232F3F;
  padding:5rem 0;
}

.cta_cntnt{
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta_para{
  color: #fff;
}

.cta_cntnt .icons{
  min-width: 80px;
}

.cta_cntnt .icons img{
  width: 80px;
}

.cta_head{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.socialicons{
  display: flex;
  gap: 10px;
}

.socialicons li a img{
  width: 52px;
  padding: 2px;
  background: #fff;
  border-radius: 10px;
}

/* footer_section */

.footer-section{
  padding: 30px 0 0 0;
  /* position: absolute;
    border: 0;
    width: 100%; */
}

.footer-section .footer-widgets-wrapper{
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.footer_head{
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 10px 0;
  color: #222222;
  position: relative;
  margin-bottom: 25px;
}

.footer_head::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--one) 75%, #e7e7e7 70%);
}

.list-area_address li{
  padding:5px 0;
}

.list-area_address li{
  display: flex;
  gap: 20px;
}

.list-area_address li img{
    width: 30px;
    height: fit-content;  
}

.list-area_address li:first-child img{
    width: 35px;
    height: fit-content;  
}

.list-area li{
  position: relative;
  padding: 5px 8px 5px 30px;
  font-size: 15px;
}

.list-area li::after{
  position: absolute;
  content: '';
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  height: 3px;
  width: 3px;
  outline: 1px solid #000;
  padding: 1px;
  background: #000;
  border-radius: 50px;
  outline-offset: 2px;
}

.fgimg img{
  aspect-ratio: 3/3;
  object-fit: cover;
      width: 100%;
}

.quick_link{
  padding: 20px 0;
  display: flex;
  align-items: center;
  row-gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

.quick_link li a{
    padding: 0 15px;
    border-right: 1px solid;
}

.quick_link li:last-child a{
  border: none;
}

.quick_pay{
 width: 400px;
  margin: auto;
}

.footer-bottom{
  margin-top: 20px;
  background-color: var(--one);
}

.footer-bottom-wrapper p{
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
      text-align: center;
  font-weight: 500;
  margin: 0;
}

.footer-bottom-wrapper p a{
  color: #fff;
  
  border-bottom: 1px solid #fff;
}

.aside_cat{
  width: 30px;
  margin-right: 10px;
}

.inner-carousel-top .cateul{
  position: relative;
  top: -8px;
}
.dropdown-menu.show {
    padding: 0;
}

.searchicon .dropdown .btn.al_ctrg{
background: var(--white);
    border: none;
    outline: none;
    color: var(--black);
    font-weight: 500;
    white-space: normal;
    min-width: 166px;
    font-size: 15px;
    padding: 9px 0;
    border-radius: 4px 0 0 4px;
    border: 1px solid var(--one);
    border-right: 1px solid #ddd;
    height: 100%;
}

.sb-to-inner{
  padding-left:30px !important;
  list-style: initial;
}

.dropdown-menu.ctrg{
  height: 500px;
  width: 300px;
  overflow-y: scroll;
}

.dropdown-menu.ctrg .dropdown-item{
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 2px 10px;
    white-space: normal;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    font-size: 16px;
    /* border: 2px solid #ebebeb;
    background: #f5f5f5; */
    min-width: 40px;
    min-height: 40px;
    border-radius: 50px;
    padding: 15px;
    background-size: 65% 65%;
}

.carousel-control-next, 
.carousel-control-prev{
 width: 10%;
 opacity: 1;
}

/* Breadcrumb */

.pagename h1{
  margin-top: 30px;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: -20px;
}

.page-header{
  background: var(--three);
    padding: 5px 0;
}

.bread-list{
  display: flex;
  align-items: center;
  gap: 12px;
}

.bread-list i{
  font-size: 12px;
}

.bread-list li , .bread-list a{
      font-weight: 600;
    font-size: 14px;
}

/* product page */
.box-manage{
  display: flex;
  align-items: center;
  gap: 20px;
}

.box-manage img{
    width: 22px;
    opacity: .8;
    cursor: pointer;
}

.prodpagehead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ddd;
  padding: 0 0 10px 0;
}

.prodname{
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}

/* products details */
.product-details__gallery{
  position: relative;
}

.product-details__gallery .flash{
  position: absolute;
  top: 20px;
  left: 20px;
}

.product-details__gallery .flash  .flash__off{
    font-weight: 600;
    background: #ffd62f;
    padding: 3px 6px;
    border-radius: 2px;
}

.product-details__title{
    font-size: 20px;
    line-height: 25px;

}

.product_review{
  padding: 5px 0;
}

.product_review .fa-star{
  color: orange;
}

.product_review a{
  color: #122f2a !important;
  font-weight: 600;
}

.product_price {
  display: flex;
  align-items: center;
  gap: 20px; padding: 15px 0 0 0;
}

.product_price .product_regular{
  font-weight: 700;
  font-size: 30px;
}

.product_price .product_offer{
    font-size: 16px;
    font-weight: 600;
    color: var(--one);
    text-decoration: line-through;
}

.product_price .product_stock{
  color: green;
  font-weight: 600;
}

.product-details__gallery img{
  aspect-ratio: 3/3;
  object-fit: cover;
  width: 100%;
}

.quantity-box{
  display: inline-flex;
  align-items: center;
  /* padding: 10px; */
  background:#f8f8f8;
      /* width: 282px; */

  border-radius: 100px;
  overflow: hidden;
  height: 50px;
  border: 1px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.quantity-box input{
  max-width: 100%;
  height: 80px;
  width: 80px;
  aspect-ratio: 3 / 3;
  object-fit: cover;
}

.quantity-box button , .quantity-box input{
  border: none;
  background: transparent;
  text-align: center;
}

.quantity-box button i, .quantity-box input{
  color: #000;
}


.quantity-box button{
      padding: 10px 20px;
}

.product__quantity{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
 .btnji{
  /* width: 100%; */
  font-size: 17px;
  font-weight: 600;
  background: var(--three);
  padding: 10px 50px;
  border-radius: 100px;
  color: #000;
  height: 50px;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.btnji.wtsp{
    display: block;
    padding: 10px 20px;
    margin: 20px 0;

    background: var(--green);
    border-radius: 100px;
    height: 50px;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    color: #fff;
}

 .btnji.buyitnow{
  background:var(--one);
  color: #fff;
}
.product__quantity .btnji:hover{
  transform: scale(.9);
}

.meet-business{
  display: block;
  height: auto !important;
  padding: 10px 10px !important
}

.page-content{
  float: left;
  width: 37%;
  margin: 0 30px 30px 0;
  position: relative;
  z-index: 1;
}


.wtsp-btn {
    background: linear-gradient(115deg, #25d366 80%, #009b3a 20%);
    width: 100%;
    display: block;
    margin: 2rem auto 0;
    padding: .6rem 1rem;
    font-weight: 600;
    font-size: 22px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: 2s bomp infinite ease;
    transition:0.9s;
}

@keyframes bomp{
    0% {
    transform: scale(0.9);
}
50% {
    transform: scale(1);
}

100% {
    transform: scale(0.9);
}
}

.wtsp-btn:active,
.wtsp-btn:hover{
    margin: 2rem auto 0;
    width: 65%;
    background:linear-gradient(115deg, #25d366 80%, #25d366 20%);
    border-radius: 50px;
    color: #ffffff;
    transition:0.9s;
}
/* Contact Us Page  */

.contact-wrapper {
    border-radius: 10px;
    background-color: #faf4da;
    padding: 40px 50px 50px;
}
.contact-info-wrapper .column-border{
    border-bottom: 1px solid #323232;
}
.contact-info-wrapper .column-border:last-child {
  border-bottom:none;
}


.agricko-contact-info-box {
    background-color: #f9eec0;
    text-align: center;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    gap: 30px;
}
.agricko-contact-info-box .content{
  text-align: start;
}

.agricko-contact-info-box .content p{
  margin: 0 ;
}

.agricko-contact-info-box .icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  background-color: #FFB200;
  font-size: 30px;
  color: var(--heading-color);
  border: 3px solid #0C7735;
}
.agricko-contact-info-box .content h5 {
  margin-bottom: 15px;
}

.contact-wrapper {
  background-color: var(--primary-black-color);
  padding: 60px;
  border-radius: 20px;
}

.contact-wrapper label {
  margin-bottom: 10px;
  color: var(--heading-color);
}
.contact-wrapper .form_control {
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid rgba(24, 39, 30, 0.2);
    background-color: rgb(255 255 255 / 53%);
    margin-bottom: 20px;
    width: 100%;
    color: #454545;
}
.contact-wrapper .form_control::-webkit-input-placeholder {
  color: #454545;
}
.contact-wrapper .form_control::-moz-placeholder {
  color: #454545;
}
.contact-wrapper .form_control:-ms-input-placeholder {
  color: #454545;
}
.contact-wrapper .form_control::-ms-input-placeholder {
  color: #454545;
}
.contact-wrapper .form_control::placeholder {
  color: #454545;
}

.googpemap{
  height: 500px;
}

.googpemap iframe{
  height: 100%;
  width: 100%;
}
.my ul li::before {
    position: relative;
    content: "✔️";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.my.policy ul li::before{
  content: "●";
}

.my h4{
    font-size: 25px;
    font-weight: 500;
    margin: 15px 0 10px 0;
}

.my ul{
  padding-bottom: 20px;
}

/* cart table */

.cart-img img {
    max-width: 100%;
    height: 80px;
}

.cart-page{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
}

.cart-title {
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 500;
    color: var(--alefox-base);
    text-align: start;
    width: 225px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cart-page__table td{
  vertical-align: middle;
}

.cart-page__table th{
  background: var(--one);
  padding: 12px 10px;
  color: #fff;
}

.checkout-page__billing-address{
  padding: 40px;
    background: #eee;
}

.checkout-page__billing-address__title{
  margin-bottom: 15px;
}

.checkout table td {
    padding: 1rem !important;
}

.imgscton{
  padding: 1rem 0 2rem 0;
}

.imgscton img{
  border-radius: 20px;
}

.viewmain-img{
  border: 1px solid #ddd;
}

.galleryimg img{
  cursor: pointer;
}
.galleryimg{
  position: relative;
}

.galleryimg .glly-img #pg_Prev,
.galleryimg .glly-img #pg_Next{
  position: absolute;
  z-index:99;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  border: 2px solid #ebebeb;
  background: #f5f5f5;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50px;
}

.galleryimg .glly-img #pg_Prev{left: -20px;}
.galleryimg .glly-img #pg_Next{right: -20px;}

.color_select{
  display: flex;
    align-items: center;
    gap: 15px;
}

.color_select .divcolor .radiocolor{
  cursor: pointer;
  height: 55px;
  width: 55px;
  outline: 1px solid #ddd;
  outline-offset: 2px;
  border-radius: 100px;
  overflow: hidden;
  aspect-ratio: 3 / 3;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.color_select .divcolor .radiocolor:active{
  transform: scale(.9);
  transition: .1s;
} 

/* WebKit Browsers (Chrome, Edge, Safari) */
/* ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--four);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--one);
  border-radius: 10px;
  border: 2px solid var(--four);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--one);
} */

/* Firefox */
/* * {
  scrollbar-width: thin;
  scrollbar-color: var(--one) var(--four);
} */


/* Header List Styling */
.morelist .more.submenu li:nth-last-child(n + 3) {
    display: none;
}

/* .mymenu ul li:nth-child(n + 11){
  display: none;
} */

.view_prod_nav {
  margin: auto;
  margin-bottom: 2rem;
  width: 93%;
}

.navprodsec{
  position: relative;
  height: 60px;
}

.navprodsec .cat-nav{
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

 .navprodsec .cat-nav button {
    font-size: 16px;
    min-width: 40px;
    min-height: 40px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(235, 235, 235);
    border-image: initial;
    background: rgb(245, 245, 245);
    border-radius: 50px;
}

.navprod_view a{
  font-size: 15px;
  font-weight: 500;
  padding: 4px;
  border-radius: 100px;
  text-align: center;
  border: 1px solid #dadada;
  cursor: pointer;
  display: block;
}

.alert.alert-success{
  position: fixed;
  top: 230px;
  right: 20px;
  padding: 10px;
  font-size: 14px;
}

.trackbox_outer{
  background: var(--one);
  padding: 2rem;
  text-align: center;
      box-shadow: 0px 3px 0px 1px #fff;
  border-radius: 8px;
}
.trackbox_outer h3{
  color: #fff;
}

.trackbox_outer input,.trackbox_outer button{
  display: block;
  width: 100%;
    font-size: 16px;
    font-weight: 600;
    height: 45px;
    border: none;
    margin: 10px 0;
    text-align: center;
     border-radius: 5px;
}

.trackbox_outer button:active,
.trackbox_outer button:hover{
  transform: translate(0.9);
}

.trackbg{
  background: linear-gradient(45deg, #00000057, #00000057), url(https://www.woodenbazar.com/cdn/shop/files/Untitled-1_6.webp?v=1765454056&width=1440);
  background-size:cover ;
  background-position: center;
  padding: 60px 0;
}

.trackbox_outer button
{   background: var(--three);}

.offcanvas__logo img{
  width: 200px;
}

.header-button .theme-btn{
  background-color: var(--one);
}

@media(min-width:1200px){
 .container-fluid {
    padding: 0 35px;
  }
}

@media(max-width:1200px){
  .categorycol_outer,
  aside{
    display: none;
  }
  
.right-side{
  width: 100% !important; 
}

}

@media(max-width:991px){
  .header__hamburger{
    display: block;
  }
  .carousel-inner {
    margin-bottom: 2rem;
  }
  .top-rated-category .col-lg-4.col-md-4{
    display: none;
  }
  .socialicons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 2rem;
}
.header__hamburger{
  position: absolute;
    top: 50px;
    right: 20px;
}
 .container-fluid {
    padding: 0 20px;
  }
  .navprodsec .cat-nav{
  display: none;
}
.bread-list 
 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product__quantity {
    flex-wrap: wrap;
}

.product-details__content{
  margin-top: 2rem;
}

.galleryimg .glly-img #pg_Prev {
    left: 0;
}

.galleryimg .glly-img #pg_Next

 {
    right: 0;
}
.contact-wrapper{
  padding: 60px 10px;
}
.contact-info-wrapper{
      margin: 2rem 0 0 0;
}

}

@media(max-width:767px){
  .sear-cat {
    width: 80%;
    margin: 0 30px 0 0;
    border: 1px solid var(--one);
}
.prodby-cat .row{
  display: flex;
}
.top-rated-category .col-lg-3.col-md-4,
.prodby-cat .col-lg-2.col-md-4,
.col-lg-2.mycols{
  width: 49%;
}


}

@media(max-width:575px){
    .searchicon .dropdown{
    display: none;
  }
  .searchicon button{
    width: 20%;
  }
}

body {
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.category_crl_outer,.prodby-cat,.lastest-view,.ship-catimg,.top-rated-category,.recent-view,footer{
  overflow-x: hidden;
}

