/**========================================================================
 *                               Base Styles
 *========================================================================**/
/*================================ Fonts Face ==============================*/

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Medium.woff2") format("woff2"), url("../fonts/IRANSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Light.woff2") format("woff2"), url("../fonts/IRANSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Medium.woff2") format("woff2"), url("../fonts/IRANSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Light.woff2") format("woff2"), url("../fonts/IRANSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Medium.woff2") format("woff2"), url("../fonts/IRANSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Bold.woff2") format("woff2"), url("../fonts/IRANSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans.woff2") format("woff2"), url("../fonts/IRANSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Bold.woff2") format("woff2"), url("../fonts/IRANSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Light.woff2") format("woff2"), url("../fonts/IRANSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans.woff2") format("woff2"), url("../fonts/IRANSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-Bold.woff2") format("woff2"), url("../fonts/IRANSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-UltraLight.woff2") format("woff2"), url("../fonts/IRANSans-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-UltraLight.woff2") format("woff2"), url("../fonts/IRANSans-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans-UltraLight.woff2") format("woff2"), url("../fonts/IRANSans-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans.woff2") format("woff2"), url("../fonts/IRANSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*================================  Css Variable ==============================*/

:root {
  --headerHeight: 150px;
  /*--------------------- Main Colors ---------------------*/
  --primaryRGBColor: 229, 69, 68;
  --primaryColor: #e54544;
  --secondColor: #c82333;
  --thirdColor: #616161;
  /*----------------- BackGround Colors --------------------*/
  --grayBack: #f0f0f0;
  --darkBack: #212121;
  --whiteColor: #ffffff;
  /*---------------------- Text Colors ---------------------*/
  --lightTextColor: #fff;
  --grayTextColor: #7d7d7d;
  --textColorL1: #21252b;
  --textColorL2: #353535;
  --textColorL3: #656565;
  /*---------------------- Border Colors ---------------------*/
  --borderColor: #d2d2d2;
  /*---------------------- Border Radius ---------------------*/
  --borderRadius: 1px;
  /*--------------------- Box Shadow ---------------------*/
  --boxShadow: 0 0 8px rgba(0, 0, 0, 0.05);
  --boxShadowHover: 0 0 12px rgba(255, 108, 10, 0.25);
  /*---------------------- Transition ---------------------*/
  --mainTransition: all ease-in-out 300ms;
  /*---------------------- Fonts ---------------------*/
  --fontIcons: "Font Awesome 6 Pro";
  --baseFont: "Plus Jakarta Sans", sans-serif;
  /*--------------------- Text Shadow ---------------------*/
  --textShadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

/*================================ Basic Style ==============================*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  scroll-behavior: smooth;
}

body {
  font-family: var(--baseFont);
  color: var(--textColorL1);
  font-weight: 400;
  line-height: 1.75;
  direction: ltr;
}

body.modal-open,
.modal {
  padding: 0 !important;
}

i {
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  color: var(--grayTextColor);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

p a {
  color: var(--primaryColor);
  font-weight: 500;
}

p a:hover {
  color: var(--textColorL2);
}

a {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  text-decoration: none;
}

a:hover {
  color: var(--primaryColor);
}

/*=================================  Basic Class ===============================*/

.flex {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.flex-column {
  flex-direction: column;
  display: flex;
}

.img-fluid {
  max-height: 100%;
}

.row {
  flex: 1;
}

/*================================  Colors ==============================*/

.bg-gray {
  background-color: var(--grayBack);
}

.bg-primary {
  background-color: var(--primaryColor) !important;
}

.bg-secondary {
  background-color: var(--secondColor) !important;
}

.bg-gradient {
  background: linear-gradient(45deg, #ff6c0a, rgb(247, 112, 34)) !important;
}

/*================================  Scroll Bar ==============================*/

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
  border-radius: 0.125rem;
}

::-webkit-scrollbar-track {
  background-color: var(--grayBack);
}

/*================================ Container Style ==============================*/

.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
  padding-inline-start: calc(var(--bs-gutter-x) * 0.5);
  padding-inline-end: calc(var(--bs-gutter-x) * 0.5);
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-inline-start: auto;
  margin-inline-end: auto;
  width: 100%;
}

@media (min-width: 36rem) {
  .container-sm,
  .container {
    max-width: 33.75rem;
  }
}

@media (min-width: 48rem) {
  .container-md,
  .container-sm,
  .container {
    max-width: 45rem;
  }
}

@media (min-width: 64rem) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 60rem;
  }
}

@media (min-width: 75rem) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 72.5rem;
  }
}

@media (min-width: 83.75rem) {
  .container-xl,
  .container-lg,
  .container {
    max-width: 78.75rem;
  }
}

@media (min-width: 87.5rem) {
  .container-xl,
  .container-lg,
  .container {
    max-width: 83.75rem;
  }
}

/*================================ Image ==============================*/

figure {
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: flex;
  margin: 0;
}

figure img {
  max-height: 100%;
  max-width: 100%;
}

.thumbnail-zoom figure img {
  transition: var(--mainTransition);
}

.thumbnail-zoom:hover figure img {
  transform: scale(1.1);
}

/*================================ Form And Inputs ==============================*/

.form-label {
  color: var(--textColorL2);
  font-size: 0.875rem;
  margin-bottom: 2px;
  font-weight: 500;
}

.form-check {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  padding: 0;
}

.form-check-label {
  color: var(--textColorL2);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
}
.form-check-input[type="checkbox"] {
  padding: 8px;
  margin: 0;
}
.form-check-input {
  border-color: var(--borderColor);
}
.form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
select {
  -webkit-appearance: none;
  appearance: none;
}

input,
input.form-control,
textarea.form-control,
select.form-control,
textarea,
select {
  border: 0.06rem solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  color: var(--textColorL1);
  font-size: 0.9375rem;
  padding: 0.625rem;
  box-shadow: none;
  outline: none;
  height: 2.5rem;
  width: 100%;
  margin: 0;
}

input:focus,
input:hover,
input.form-control:focus,
input.form-control:hover,
textarea.form-control:focus,
textarea.form-control:hover,
select.form-control:focus,
select.form-control:hover,
textarea:focus,
textarea:hover,
select:focus,
select:hover {
  border: 1px solid var(--primaryColor);
  background-color: #fff;
  box-shadow: none;
  outline: 0;
}

.default-input {
  position: relative;
}

.default-input:has(i) input,
.default-input:has(i) input.form-control {
  padding-inline-start: 2rem;
}

.default-input i {
  position: absolute;
  inset: 0 0.5rem 0 auto;
  margin: auto;
  height: fit-content;
  opacity: 0.7;
  font-size: 1.125rem;
  color: var(--textColorL1);
}

.select-container {
  border: 1px solid var(--borderColor);
  transition: var(--mainTransition);
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.select-container select,
.select-container select.form-control {
  background-color: transparent;
  -webkit-appearance: none;
  padding-inline-end: 24px;
  padding-block: 0.25rem;
  position: relative;
  appearance: none;
  border: none;
  z-index: 2;
}
.select-container select:focus,
.select-container select:hover {
  border: none;
  background-color: transparent;
  box-shadow: none;
  outline: 0;
}
.select-container:has(select:focus),
.select-container:has(select:hover) {
  border: 1px solid var(--primaryColor);
  background-color: #fff;
}

.select-container:has(select:focus)::after,
.select-container:has(select.form-control:focus)::after {
  transform: rotate(-180deg);
  color: var(--primaryColor);
}

.select-container::after {
  transition: var(--mainTransition);
  font-family: var(--fontIcons);
  color: var(--textColorL3);
  inset: 0 0.25rem 0 auto;
  justify-content: center;
  align-items: center;
  position: absolute;
  line-height: 24px;
  content: "\f078";
  font-size: 12px;
  display: flex;
  margin: auto;
  height: 24px;
  width: 24px;
  z-index: 1;
}

textarea.form-control,
textarea {
  min-height: 9.375rem;
  min-width: 100%;
}

.form-check-input:focus {
  box-shadow: none;
  outline: 0;
}

.form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.form-section-title {
  border-bottom: 0.05rem solid var(--primaryColor);
  color: var(--darkTextColor);
  justify-content: flex-start;
  align-items: baseline;
  padding-bottom: 0.5rem;
  margin-top: 1.25rem;
  font-weight: 500;
  display: flex;
  gap: 0.5rem;
}

.submit-form {
  all: unset;
  border-radius: var(--borderRadius);
  background-color: var(--textColorL1);
  transition: var(--mainTransition);
  color: var(--whiteColor);
  justify-content: center;
  padding: 0.5rem 1.5rem;
  align-items: center;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  gap: 0.25rem;
}

.submit-form:hover {
  background-color: #101010;
}

.form-check-input:checked[type="radio"],
.form-check-input:checked[type="checkbox"] {
  background-color: var(--primaryColor);
  border-color: var(--secondColor);
}

.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
  border-color: var(--borderColor);
  transition: all ease 200ms;
  border-width: 2px;
  box-shadow: none;
  padding: 8px;
}

.submit-btn {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
  border-radius: var(--borderRadius);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--mainTransition);
  text-transform: uppercase;
}

.submit-btn:hover {
  background-color: var(--secondColor);
}

/*================================ Nav Tabs ==============================*/

.nav-tabs {
  border-bottom: 2px solid var(--primaryColor);
  display: flex;
  margin: 0;
}

.nav-tabs .nav-item {
  flex-grow: 1;
}

.nav-tabs .nav-link {
  border-inline-end-color: var(--borderColor);
  transition: var(--mainTransition);
  border: 1px solid transparent;
  background-color: #ededed;
  color: var(--grayTextColor);
  padding: 0.375rem 0.5rem;
  border-bottom: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0;
  width: 100%;
  margin: 0;
}
.nav-tabs .nav-item:last-child .nav-link {
  border-inline-end-color: transparent;
}

.nav-tabs .nav-link.active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

.tab-content {
  background-color: var(--whiteColor);
  padding: 1rem;
}

/*================================ Buttons ==============================*/

.default-button {
  border-radius: var(--borderRadius);
  background-color: var(--primaryColor);
  transition: var(--mainTransition);
  border: 1px solid transparent;
  color: var(--lightTextColor);
  justify-content: center;
  line-height: normal;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  gap: 0.25rem;
}

.default-button i {
  font-size: 17px;
}

.default-button:hover {
  background-color: var(--whiteColor);
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.default-button.active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}
.default-button.border {
  background-color: var(--whiteColor);
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.default-button.border:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

.default-button.dark {
  background-color: #e8edf0;
  color: var(--textColorL1);
}

.default-button.dark:hover {
  background-color: #4d4d4d;
  color: var(--whiteColor);
  border-color: #4d4d4d;
}

/*================================ Slider ==============================*/

.carousel-section {
  position: relative;
  padding: 0 1.75rem;
}

.swiper-rtl .swiper-button-prev {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

.swiper-rtl .swiper-button-next {
  inset-inline-end: 0;
  inset-inline-start: auto;
}

.swiper-button-next,
.swiper-button-prev {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  display: flex;
  width: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--primaryColor);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: 300;
}

.swiper-pagination-bullet {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  height: 0.625rem;
  width: 0.625rem;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 2rem;
}

/*================================ Default Section Title Area ==============================*/
.section-card {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  overflow: hidden;
  padding: 1rem;
}
.section-heading {
  margin-bottom: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.25rem;
}

.section-heading-right-side {
  flex-direction: column;
  display: flex;
  gap: 0.375rem;
}

.section-heading-left-side {
  align-items: center;
  display: flex;
  flex: 1;
}

.section-heading-left-side::before {
  height: 0.125rem;
  display: block;
  margin: 0 10px;
  content: "";
  flex: 1;
}

.section-heading-title-box {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.section-heading-title-box i {
  font-size: 1.25rem;
  color: var(--primaryColor);
}

.section-heading-title-box .section-heading-title {
  border-bottom: 3px solid var(--primaryColor);
  padding-bottom: 0.25rem;
  color: var(--textColorL1);
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 600;
}

.section-heading p {
  color: var(--textColorL3);
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 200;
  margin: 0;
}

.section-heading-left-side label {
  color: var(--textColorL3);
  font-size: 0.8375rem;
  white-space: nowrap;
}

.base-title {
  border-bottom: 3px solid var(--primaryColor);
  padding-bottom: 0.5rem;
  display: inline-block;
  font-weight: 700;
  font-size: 17px;
  margin-top: 0;
}

/*================================ Breadcrumb ==============================*/

.breadcrumb {
  justify-content: start;
  align-items: center;
  position: relative;
  display: flex;
  z-index: 1;
  margin: 0;
}

.breadcrumb img {
  filter: brightness(50%) contrast(110%);
  position: absolute;
  object-fit: cover;
  margin: auto;
  height: 100%;
  width: 100%;
  z-index: -1;
  inset: 0;
}

.breadcrumb-links {
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  gap: 0.25rem;
}

.breadcrumb-links a {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  transition: var(--mainTransition);
  color: var(--textColorL2);
  position: relative;
  display: flex;
  gap: 0.25rem;
}

.breadcrumb-links a:hover {
  color: var(--secondColor);
}

.breadcrumb-links a:after {
  font-family: var(--fontIcons);
  content: "\f105";
}

.breadcrumb-links .end-item {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--secondColor);
  margin: 0;
}

/*================================ Social Medias ==============================*/

.social-medias-list {
  list-style: none;
  gap: 0.625rem;
  display: flex;
}

.social-medias-list .social-link {
  transition: var(--mainTransition);
  color: var(--whiteColor);
  align-items: center;
  font-size: 1.25rem;
  padding: 0.1875rem;
  line-height: 0;
  display: flex;
  opacity: 0.7;
}

.social-medias-list .social-link:hover {
  opacity: 1;
}

/*================================ Pagination ==============================*/
.pagination {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
}

.page-link {
  border: 0.0625rem solid var(--primaryColor);
  transition: var(--mainTransition);
  background-color: transparent;
  color: var(--textColorL3);
  position: relative;
  border-radius: 0;
  display: block;
}

.pagination .page-item:nth-child(2) a {
  border-radius: var(--borderRadius) 0 0 var(--borderRadius);
}

.pagination .page-item:nth-last-child(2) a {
  border-radius: 0 var(--borderRadius) var(--borderRadius) 0;
}

.pagination .page-item:first-child a,
.pagination .page-item:last-child a {
  border-radius: var(--borderRadius);
  color: var(--primaryColor);
  margin: 0 0.5rem;
}

.page-link:hover,
.page-item.active .page-link,
.page-item.ellipsis .page-link {
  color: var(--lightTextColor) !important;
  border: 0.0625rem solid var(--primaryColor);
  background-color: var(--primaryColor);
}

.page-item.disabled .page-link {
  color: var(--borderColor) !important;
  background-color: transparent;
}

/*============================ END OF Base Styles ============================*/

/**========================================================================
 *                                 Header
 *========================================================================**/

header {
  box-shadow: 0 0.0625rem 0.5rem 0 rgba(0, 0, 0, 0.075);
  background-color: var(--whiteColor);
  inset-inline-start: 0;
  min-height: 4.375rem;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  display: flex;
  z-index: 100;
  width: 100%;
  top: 0;
}

/*================================ Header Toolbar ==============================*/

.header-toolbar {
  background-color: var(--darkBack);
}

.header-toolbar .header-slogan {
  color: var(--lightTextColor);
}

.language-select-box {
  position: relative;
}

.language-select-box .languages-item {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  transition: var(--mainTransition);
  justify-content: center;
  padding: 0.125rem 0.5rem;
  min-width: fit-content;
  align-items: center;
  display: flex;
  height: 40px;
  width: 40px;
}

.language-select-box > .languages-item {
  background-color: transparent;
  border-radius: 0;
}

.language-select-box .languages-item:hover {
  background-color: #404040;
}

.language-select-box .languages-item img {
  box-sizing: content-box;
  width: 100%;
}

.language-select-box ul {
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  transform: translateY(100%);
  top: calc(100% + 0.375rem);
  transition-delay: 200ms;
  visibility: hidden;
  position: absolute;
  width: fit-content;
  list-style: none;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  padding: 0;
  inset-inline-start: 0;
}

.language-select-box:hover > .languages-item + ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.language-select-box ul li .languages-item {
  min-height: 1.875rem;
  border-radius: 0;
}

.language-select-box ul li {
  border-bottom: 0.0625rem solid var(--borderColor);
}

.language-select-box ul li:last-child {
  border-bottom: none;
}

/*================================ Header Main Section ==============================*/

.header-logo {
  box-sizing: border-box;
  padding-block: 0.75rem;
  max-height: 5.625rem;
  object-fit: contain;
  width: 9.375rem;
}

header a {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9375rem;
  font-weight: 500;
}

header a:hover {
  color: rgba(0, 0, 0, 0.8);
}

/*================================ Header Buttons ==============================*/
.header-buttons-list {
  align-items: stretch;
  justify-content: end;
  list-style: none;
  display: flex;
  height: 100%;
  gap: 0.5rem;
}
.header-button {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  justify-content: center;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  font-size: 13px;
  min-width: 70px;
  cursor: pointer;
  display: flex;
  height: 100%;
  gap: 0.25rem;
}

.header-button i {
  font-size: 18px;
}

.header-button span {
  text-align: center;
  font-weight: 500;
  font-size: 11px;
}

.header-button:hover {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.header-buttons-list li {
  position: relative;
}
.header-buttons-list li:hover > .menu-dropdown {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}
.menu-dropdown {
  border-radius: 0 0 6px 6px;
  inset-inline-end: -80px;
  position: absolute;
  min-width: 240px;
  background: #fff;
  top: 100%;
  transform: rotateX(-90deg);
  perspective: 200px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in;
  transform-origin: 0% 0%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  flex-direction: column;
  display: flex;
  padding: 16px;
  z-index: 50;
}

.social-divider {
  padding-block: 0.25rem;
  align-items: center;
  display: flex;
  gap: 0.375rem;
}
.social-divider::before,
.social-divider::after {
  background-color: var(--borderColor);
  content: "";
  height: 1px;
  width: 100%;
  flex: 1;
}

.social-divider span {
  color: var(--textColorL3);
  font-size: 0.85rem;
  width: fit-content;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 0;
  color: var(--textColorL1);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--mainTransition);
}

.dropdown-link:hover {
  color: var(--primaryColor);
}

.dropdown-link i {
  font-size: 14px;
  width: 16px;
  text-align: center;
}

/*================================ Navigation ==============================*/

.header-navigation {
  background-color: #e3e3e3;
}
.navigation-list {
  align-items: center;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
}
.navigation-list .navigation-item {
  padding-block: 0.25rem;
}
.navigation-list .navigation-item a {
  border-inline-end: 2px solid #969696;
  transition: all ease-in-out 300ms;
  padding-inline-end: 0.75rem;
  color: var(--grayTextColor);
  line-height: 1.125;
  font-weight: 500;
  font-size: 14px;
}

.navigation-list .navigation-item.primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  padding-inline: 1.25rem;
}
.navigation-list .navigation-item.primary a {
  color: #fff;
}
.navigation-list .navigation-item:last-child a,
.navigation-list .navigation-item.primary a {
  border-inline-end: none;
  padding-inline-end: 0;
}

/*================================ Select Language ==============================*/
.header-search {
  border: 2px solid var(--primaryColor);
  justify-content: center;
  align-items: stretch;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  height: 40px;
  width: 100%;
}

.header-search .select-container {
  width: clamp(130px, 20%, 250px);
  height: auto;
}
.header-search .select-container select {
  border: none;
  border-inline-end: 1px solid var(--borderColor);
  padding-inline-start: 16px;
  padding-block: 0;
  border-radius: 0;
  height: 100%;
  width: 100%;
}

.header-search input {
  height: auto;
  border: none;
  flex: 1;
}

.header-search input::placeholder {
  font-size: 0.75rem;
  color: #919191;
}

.header-search .search-btn {
  width: clamp(75px, 10%, 100px);
  border-radius: 0;
  height: auto;
  border: none;
}
.header-search .search-btn:hover {
  background-color: var(--secondColor);
  color: var(--lightTextColor);
}

.header-contact {
  color: var(--textColorL1);
  font-weight: 400;
  font-size: 1.0625rem;
  margin-inline-end: 1.5rem;
  display: block;
}

.header-contact span {
  color: var(--primaryColor);
}

/*================== Hamburger Menu Button =================*/

.hamburger-button {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 0.375rem;
}

.hamburger-button span {
  background: var(--primaryColor);
  transition: all 0.3s ease;
  transition-delay: 200ms;
  border-radius: 6.25rem;
  height: 0.3rem;
  width: 2rem;
}

.hamburger-button:hover span.top,
body:has(#mobileMenuNavigation.show) .hamburger-button span.top {
  transform: translateY(210%) rotate(-45deg);
  background: var(--primaryColor);
}

.hamburger-button:hover span.bot,
body:has(#mobileMenuNavigation.show) .hamburger-button span.bot {
  transform: translateY(-210%) rotate(45deg);
  background: var(--primaryColor);
}

.hamburger-button:hover span.mid,
body:has(#mobileMenuNavigation.show) .hamburger-button span.mid {
  transform: translateX(1.25rem);
  opacity: 0;
}

/*============================ END OF Header ============================*/

/**========================================================================
 *                           Main Styles
 *========================================================================**/

main {
  padding-top: var(--headerHeight);
  background-color: #f4f4f4;
  padding-bottom: 1.75rem;
  flex-direction: column;
  display: flex;
  gap: 1.75rem;
}

/*================================ Home Page ==============================*/
.hero-slider {
  min-height: 400px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.hero-slider .swiper-slide {
  display: flex;
  height: 100%;
  width: 100%;
}

.hero-slider .swiper-slide a {
  display: flex;
  height: 100%;
  width: 100%;
}

.hero-slider .swiper-slide img {
  object-position: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*================================ Categories Widget ==============================*/

.categories-widget {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  position: relative;
  padding: 1.5rem;
  height: 100%;
}

.categories-widget .widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: var(--textColorL1);
  margin-bottom: 1rem;
  font-weight: 700;
}
.categories-widget .widget-title i {
  font-size: 1rem;
  color: var(--grayTextColor);
}

.categories-widget .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list-dropdown {
  border: 1px solid var(--borderColor);
  width: calc((100vw - 12px) * 0.75);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  background: var(--whiteColor);
  box-shadow: var(--boxShadow);
  transform: translateY(20px);
  inset-inline-start: 100%;
  position: absolute;
  visibility: hidden;
  min-height: 535px;
  max-height: 635px;
  overflow-y: auto;
  display: block;
  max-height: 0;
  padding: 20px;
  opacity: 0;
  z-index: 9;
  top: 0;
}
.category-list-dropdown-content {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 1rem;
}
.category-list-dropdown-content.four-column {
  grid-template-columns: repeat(4, 1fr);
}
.category-list-dropdown-content.two-column {
  grid-template-columns: repeat(2, 1fr);
}

.sub-category-section {
  flex-direction: column;
  list-style: none;
  display: flex;
  gap: 0.125rem;
}

.sub-category-section .sub-category-title {
  font-weight: bold;
}
.categories-widget .category-list > li:hover .category-list-dropdown {
  transform: translateY(0);
  max-height: fit-content;
  visibility: visible;
  opacity: 1;
}

.categories-widget .category-list li > a {
  transition: var(--mainTransition);
  color: var(--textColorL3);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  padding: 3px 0;
}

.categories-widget .category-list li > a:hover {
  color: var(--primaryColor);
  transform: translateX(5px);
}

.categories-widget .category-list .all-categories a {
  color: var(--textColorL1);
  margin-top: 0.5rem;
  font-weight: 700;
}

.categories-widget .category-list .all-categories a:hover {
  color: var(--primaryColor);
}

.category-list-dropdown .carousel-section{
  border-top: 1px solid var(--borderColor);
  padding-top: 16px;
  margin-top: 16px;
}

.header-product-item{
  color: var(--textColorL2);
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 13px;
  display: flex;
  gap: 0.5rem;
}
.header-product-item img{
  object-fit: contain;
  aspect-ratio: 1/1;
  max-width: 80px;
  width: 100%;
}

/*================================ Form Widget ==============================*/

.form-widget-container {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  overflow: hidden;
  height: 100%;
}
.form-widget-container .nav-tabs .nav-link {
  color: var(--textColorL2);
}
.form-widget-container .nav-tabs .nav-link.active {
  color: var(--whiteColor);
}
.form-widget-container .select-container {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  font-size: 14px;
}
.form-widget-container .form-control {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  font-size: 14px;
}

.form-buttons {
  justify-content: space-between;
  display: flex;
  gap: 1rem;
}

/*================================ Banner Card ==============================*/
.banner-box {
  border-radius: var(--borderRadius);
  align-items: stretch;
  overflow: hidden;
  display: flex;
  height: 100%;
  width: 100%;
}

.banner-box img {
  object-position: center;
  object-fit: cover;
  width: 100%;
}

/* =================================================================== */
/*                          Product Showcase with Vertical Tabs        */
/* =================================================================== */

.tab-rotate {
  background-color: var(--whiteColor);
  display: flex;
}

.tab-rotate .nav-tabs {
  border-inline-end: 2px solid var(--primaryColor);
  flex-shrink: 0;
  border: none;
}

.tab-rotate .nav-tabs .nav-link {
  color: var(--textColorL2);
  padding: 1rem 0.5rem;
  border-radius: 0;
  height: 100%;
  border: none;
  width: 100%;
}

.tab-rotate .nav-tabs .nav-link span,
.default-button.rotate {
  writing-mode: vertical-lr;
  transform: rotate(-180deg);
  white-space: nowrap;
  font-weight: 600;
}

.tab-rotate .nav-tabs .nav-link.active {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.tab-rotate .tab-content {
  flex-grow: 1;
}

.product-square-card {
  border: 2px solid var(--borderColor);
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  transition: var(--mainTransition);
  position: relative;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}

.product-square-card-image {
  justify-content: center;
  align-items: center;
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}

.product-square-card-image img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.product-square-card-name {
  background-color: rgba(0, 0, 0, 0.5);
  transition: var(--mainTransition);
  color: var(--whiteColor);
  font-size: 0.9375rem;
  position: absolute;
  inset: auto 0 0 0;
  text-align: center;
  padding: 0.25rem;
  font-weight: 500;
}
.product-square-card:hover .product-square-card-name {
  background-color: var(--primaryColor);
}
.product-square-card:hover {
  border-color: var(--primaryColor);
}

.product-square-card.more {
  background-color: #e9e9e9;
  color: var(--textColorL1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  flex-direction: column;
  gap: 0.5rem;
}

.product-square-card.more i {
  transition: var(--mainTransition);
}

.product-square-card.more:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.product-square-card.more:hover i {
  transform: translateX(10px);
}
/*================================ Categories Card ==============================*/

.category-card {
  width: 100%;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.category-card-thumbnail {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  margin-bottom: 0.5rem;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
}

.category-card:hover .category-card-thumbnail {
  box-shadow: var(--boxShadowHover);
  border-color: var(--primaryColor);
  filter: brightness(0.75);
}

.category-card-title {
  color: var(--primaryColor);
  text-shadow: var(--textShadow);
  font-size: 1.25rem;
  margin: 0;
}

.category-card-link {
  color: var(--textColorL2);
  align-items: baseline;
  font-size: 13px;
  display: flex;
  gap: 0.25rem;
  margin: 0;
}

/*================================ Services Showcase Component ==============================*/

.showcase-header {
  border-bottom: 3px solid var(--primaryColor);
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.showcase-header .nav-tabs {
  border-bottom: none;
  margin: 0;
}

.showcase-header .nav-tabs .nav-link {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 14px;
  height: 40px;
}

.btn-view-more {
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  margin-bottom: -1px;
  border-radius: 0;
  height: 40px;
}

.service-card {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  transition: var(--mainTransition);
  border: 1px solid transparent;
  min-height: 280px;
  overflow: hidden;
  height: 100%;
}

.service-card .service-card-header {
  border-bottom: 2px solid var(--primaryColor);
  transition: var(--mainTransition);
  justify-content: space-between;
  color: var(--textColorL1);
  padding: 1rem 1.5rem;
  align-items: center;
  display: flex;
}

.service-card .service-card-header .service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.service-card .service-card-header i {
  font-size: 1.5rem;
}

.service-card .service-card-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  height: calc(100% - 75px);
  position: relative;
  overflow: hidden;
}

.service-card-default-content,
.service-card-hover-content {
  transition: var(--mainTransition);
  position: absolute;
  padding-top: 1rem;
  inset: 0 1.5rem auto 1.5rem;
}

.service-card-hover-content {
  transition: var(--mainTransition);
  transform: translateY(100%);
  opacity: 0;
}

.service-card ul {
  color: var(--textColorL3);
  list-style: none;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.service-card li {
  padding: 0.125rem 0;
}
.service-card p {
  color: var(--textColorL3);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.service-card:hover {
  background-color: var(--whiteColor);
  border-color: var(--primaryColor);
}
.service-card:hover .service-card-header {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-bottom: none;
}
.service-card:hover .service-card-default-content {
  transform: translateY(-120%);
}
.service-card:hover .service-card-hover-content {
  transform: translateY(0);
  opacity: 1;
}

.provider-card {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
}
.provider-card:hover,
.provider-card:hover .provider-card-logo {
  border-color: var(--primaryColor);
}
.provider-card .provider-card-logo {
  border-bottom: 1px solid var(--borderColor);
  transition: var(--mainTransition);
  text-align: center;
}
.provider-card .provider-card-logo img {
  padding: 0.5rem;
  object-fit: contain;
  height: 60px;
  width: 100%;
}
.provider-card .provider-card-image-wrapper {
  position: relative;
  overflow: hidden;
}
.provider-card .provider-card-main-image {
  display: block;
  height: auto;
  width: 100%;
}

.provider-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 50%, transparent);
  transform: translateY(calc(100% - 85px));
  transition: var(--mainTransition);
  color: var(--whiteColor);
  position: absolute;
  padding: 1.5rem;
  width: 100%;
  inset: 0;
}
.provider-card-overlay p {
  text-shadow: var(--textShadow);
  color: var(--whiteColor);
  font-size: 15px;
  margin: 0;
}
.provider-card-main-service {
  padding-bottom: 1rem;
}

.provider-card-hover-details .base-title {
  border-bottom: 1px solid var(--primaryColor);
  font-size: 14px;
}
.provider-card-hover-details ul {
  list-style: none;
  padding: 0;
}
.provider-card-hover-details ul li {
  padding: 0.125rem 0;
}

.provider-card:hover .provider-card-overlay {
  transform: translateY(0);
}

/*================================ Supplier Showcase Grid ==============================*/

.supplier-card,
.supplier-card.sm {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  align-items: stretch;
  overflow: hidden;
  padding: 0.75rem;
  display: flex;
  height: 100%;
}
.supplier-card:hover {
  border-color: var(--primaryColor);
}

.supplier-card .card-details-section {
  justify-content: center;
  flex-direction: column;
  display: flex;
  width: 30%;
}

.supplier-card .card-logo img {
  object-fit: contain;
  margin-bottom: 1rem;
  max-width: 120px;
  max-height: 40px;
  width: 100%;
}

.supplier-card .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supplier-card .info-list li {
  color: var(--textColorL3);
  margin-bottom: 0.125rem;
  font-size: 14px;
}

.supplier-card .info-list li strong {
  color: var(--textColorL1);
  margin-inline-end: 0.5rem;
  font-weight: 600;
}

.supplier-card .card-image-section {
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 1;
}

.supplier-card .card-image-section img {
  object-fit: contain;
  max-height: 200px;
  height: 100%;
  width: 100%;
}

.supplier-card.sm {
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}

.supplier-card.sm .card-logo img {
  margin-bottom: 0.5rem;
  object-fit: contain;
  max-height: 45px;
}

.supplier-card.sm .product-image img {
  max-height: 120px;
}
/*================================  Expo Showcase Section ==============================*/

.expo-card {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  overflow: hidden;
  display: flex;
  height: 100%;
}
.expo-card:hover {
  border-color: var(--primaryColor);
  box-shadow: var(--boxShadow);
}

.expo-card-details {
  border-inline-end: 1px solid var(--primaryColor);
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  padding: 1.5rem;
  max-width: 40%;
  display: flex;
}
.expo-card-details .expo-title {
  color: var(--textColorL1);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.expo-card-details .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expo-card-details .info-list li {
  color: var(--textColorL3);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.expo-card-details .info-list li strong {
  color: var(--textColorL1);
  font-weight: 600;
}

.expo-card-banner {
  flex: 1;
}
.expo-card-banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.expo-card.sm {
  display: flex;
  flex-direction: column;
}
.expo-card.sm .expo-card-details {
  border-top: 1px solid var(--primaryColor);
  border-inline-end: none;
  max-width: 100%;
  padding: 1rem;
  width: 100%;
}
.expo-card.sm .expo-card-details .expo-title {
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}
.expo-card.sm .expo-card-details .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.expo-card.sm .expo-card-details .info-list strong {
  font-weight: 600;
}

/*================================ Testimonials Section  ==============================*/

.success-stories-slider {
  display: flex;
  width: 100%;
}
.gray-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--grayBack);
  height: 100%;
}

.view-all-link {
  color: var(--textColorL3);
  font-weight: 500;
  font-size: 14px;
}

.testimonial-card {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  padding: 0.5rem;
  display: flex;
  height: 100%;
}

.testimonial-card .card-logo img {
  margin-bottom: 1rem;
  max-height: 50px;
}
.testimonial-card .testimonial-text {
  color: var(--textColorL3);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}
.testimonial-card .testimonial-author {
  color: var(--textColorL2);
  font-weight: 600;
  font-size: 14px;
}

.video-iframe-wrapper {
  border-radius: var(--borderRadius);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.video-iframe-wrapper iframe {
  position: absolute;
  height: 100%;
  margin: auto;
  width: 100%;
  inset: 0;
}

.video-slider {
  position: relative;
  width: 100%;
}
.video-nav-prev,
.video-nav-next {
  width: 35px;
  height: 35px;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-nav-prev::after,
.video-nav-next::after {
  font-size: 2rem;
}
.video-nav-prev {
  inset-inline-end: auto;
  inset-inline-start: 0;
}
.video-nav-next {
  inset-inline-end: 0;
  inset-inline-start: auto;
}

.ratings-list {
  flex-direction: column;
  display: flex;
  gap: 0.5rem;
}
.rating-item {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  flex-wrap: wrap;
  display: flex;
  gap: 0.75rem;
}
.rating-item .platform-logo {
  object-fit: contain;
  height: 20px;
  max-width: 100px;
}
.rating-item .rating-score {
  font-weight: 700;
  color: var(--textColorL1);
}
.rating-item .stars {
  color: #ffc107;
  font-size: 13px;
  display: flex;
}
.rating-item .default-button {
  margin-inline-start: auto;
}

/*================================ Logos Slider ==============================*/

.logos-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.logos-slider .swiper-slide {
  justify-content: center;
  align-items: center;
  display: flex;
}
.logos-slider .logo-slide-card {
  border: 2px solid var(--borderColor);
  background-color: var(--grayBack);
  transition: var(--mainTransition);
  border-radius: 100%;
  margin-inline: auto;
  aspect-ratio: 1/1;
  max-width: 200px;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
}
.logos-slider .logo-slide-card img {
  transition: var(--mainTransition);
  filter: grayscale(1);
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.logos-slider .logo-slide-card img:hover {
  filter: grayscale(0);
}
.logos-slider .swiper-slide.active img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.logos-slider .swiper-slide.active .logo-slide-card {
  border: 2px solid var(--primaryColor);
}
/*================================ Accordion ==============================*/

#faqAccordion .accordion-item {
  border: none;
  background-color: transparent;
  border-radius: 0 !important;
}

.accordion#faqAccordion .accordion-item:last-child {
  border-bottom: none;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primaryColor);
  box-shadow: none;
}

#faqAccordion .accordion-button:focus {
  border-color: var(--borderColor);
  box-shadow: none;
  z-index: 3;
  outline: 0;
}

#faqAccordion .accordion-button {
  justify-content: space-between;
  border-radius: 5px !important;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  align-items: center;
  font-weight: 600;
  padding: 1.25rem;
}

#faqAccordion .accordion-button::after {
  background-image: none;
  font-family: var(--fontIcons);
  height: fit-content;
  width: fit-content;
  font-weight: 400;
  content: "+";
  font-size: 1.25rem;
  line-height: 0;
  margin-inline-end: 0;
}
#faqAccordion .accordion-button:not(.collapsed)::after {
  content: "-";
}

#faqAccordion .accordion-body p {
  text-align: justify;
  margin-bottom: 0;
  color: var(--grayTextColor);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1rem;
}

/*================================  Blog & Learning Center Sections ==============================*/

.blog-card {
  background-color: var(--whiteColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  flex-direction: column;
  overflow: hidden;
  display: flex;
}
.blog-card:hover {
  border-color: var(--primaryColor);
  box-shadow: var(--boxShadow);
}

.blog-card .card-image {
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
}
.blog-card .card-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.blog-card .image-overlay-title {
  background: linear-gradient(to top, rgba(var(--primaryRGBColor), 0.75), transparent);
  padding: 1rem 1.5rem 0.5rem;
  color: var(--whiteColor);
  text-align: center;
  position: absolute;
  inset: auto 0 0 0;
  font-weight: 500;
  font-size: 1rem;
}
.blog-card .card-content {
  flex-direction: column;
  padding: 1rem;
  display: flex;
}
.blog-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--textColorL1);
  font-size: 1.25rem;
}
.blog-card .card-excerpt {
  font-size: 0.85rem;
  color: var(--textColorL3);
  margin-bottom: 0.75rem;
  flex-grow: 1;
  line-height: 1.6;
}
.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--grayTextColor);
}
.blog-card .card-meta .arrow-link {
  margin-inline-start: auto;
  color: var(--primaryColor);
  font-size: 1rem;
  text-decoration: none;
}

.blog-card.sm {
  flex-direction: row;
}
.blog-card.sm .card-image {
  flex-shrink: 0;
  width: 40%;
}

.blog-card .card-meta .card-meta-left {
  flex-direction: column;
  align-items: start;
  display: flex;
  gap: 0;
}
.blog-card.sm .card-title {
  font-size: 1rem;
}

.resource-card {
  background-color: var(--whiteColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  overflow: hidden;
  height: 100%;
}
.resource-card:hover {
  border-color: var(--primaryColor);
  box-shadow: var(--boxShadow);
}
.resource-card .card-image {
  position: relative;
}
.resource-card .card-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.resource-card .card-content {
  padding: 1rem;
}
.resource-card .card-title {
  color: var(--whiteColor);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.resource-card .card-image {
  aspect-ratio: 16 / 9;
}

.resource-card.video .play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 65px;
  height: 65px;
  background-color: rgba(var(--primaryRGBColor), 0.9);
  color: var(--whiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--mainTransition);
  z-index: 2;
}
.resource-card .play-button:hover {
  transform: scale(1.1);
  background-color: var(--primaryColor);
}

.resource-card .video-overlay-content {
  background: rgba(0, 0, 0, 0.5);
  color: var(--whiteColor);
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem;
  z-index: 1;
}

.resource-card .video-overlay-content .card-excerpt {
  color: var(--whiteColor);
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

/*================================ Products List Page ==============================*/

.product-list-heading {
  border-bottom: 1px solid var(--primaryColor);
  flex-direction: column;
  display: flex;
  gap: 12px;
}

.nav-controls {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.results-bar {
  color: var(--textColorL2);
  font-size: 14px;
}
.results-bar span {
  color: var(--primaryColor);
  font-weight: bold;
}

.main-nav {
  align-items: stretch;
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.main-nav .default-button {
  border: none !important;
}

.view-toggle {
  justify-content: center;
  align-items: stretch;
  display: flex;
}
.view-toggle button {
  background-color: transparent;
  border: 1px solid var(--borderColor);
  cursor: pointer;
  color: var(--textColorL3);
  transition: var(--mainTransition);
  aspect-ratio: 1/1;
  line-height: 1;
  font-size: 18px;
  padding: 10px;
}
.view-toggle button:first-child {
  border-start-start-radius: 6px;
  border-end-start-radius: 6px;
}
.view-toggle button:last-child {
  border-start-end-radius: 6px;
  border-end-end-radius: 6px;
}
.view-toggle button:hover {
  background-color: var(--grayBack);
}

.view-toggle button.active {
  background-color: var(--textColorL2);
  border-color: var(--textColorL2);
  color: var(--lightTextColor);
  cursor: default;
}

.products-list .product-card {
  margin-bottom: 10px;
  width: 100%;
}
.products-list {
  grid-template-columns: 1fr;
  display: grid;
  gap: 20px;
}

.products-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  display: grid;
  gap: 20px;
}

.product-card {
  border-block: 3px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  box-shadow: var(--boxShadow);
  padding: 1rem;
  flex-direction: column;
  display: flex;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--boxShadowHover);
  border-color: var(--primaryColor);
}
.products-list .product-card {
  flex-direction: row;
  display: flex;
  gap: 1rem;
}

.product-card .product-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
}
.products-list .product-card .product-image {
  flex: 1;
}
.products-list .product-card .product-content {
  flex: 2;
}

.product-card .product-image img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.product-badges {
  flex-direction: column;
  inset-inline-start: 0;
  position: absolute;
  display: flex;
  gap: 0.25rem;
  z-index: 2;
  top: 0;
}

.product-badges .badge {
  background-color: var(--primaryColor);
  border-radius: var(--borderRadius);
  text-transform: uppercase;
  color: var(--whiteColor);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.product-badges .badge {
  background-color: #f44336;
}

.product-badges .badge.verified {
  background-color: #4caf50;
  color: #fff;
}

.product-actions {
  transition: var(--mainTransition);
  flex-direction: column;
  inset-inline-end: 0;
  position: absolute;
  display: flex;
  gap: 0.25rem;
  z-index: 2;
  top: 0;
}

.action-btn {
  background-color: var(--whiteColor);
  border: 1px solid var(--borderColor);
  transition: var(--mainTransition);
  box-shadow: var(--boxShadow);
  color: var(--textColorL2);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
}

.action-btn:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

.product-content {
  flex-direction: column;
  display: flex;
  flex: 1;
}
.products-list .product-content {
  flex-direction: row;
  display: flex;
  gap: 1rem;
}
.products-list .product-content .product-content-supplier {
  position: relative;
  align-items: end;
  border-top: none;
  padding-top: 0;
  flex: 1;
}
.product-content .product-content-supplier {
  border-top: 1px solid var(--borderColor);
  flex-direction: column;
  padding-top: 0.75rem;
  display: flex;
  gap: 1rem;
}

.product-content-product {
  flex-direction: column;
  display: flex;
  flex: 1;
}

.product-title {
  color: var(--textColorL1);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1rem;
}

.product-description {
  -webkit-box-orient: vertical;
  color: var(--grayTextColor);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow: hidden;
}
.products-list .product-content .product-description {
  -webkit-line-clamp: 4;
  order: 10;
}
.product-meta {
  flex-direction: column;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primaryColor);
}

.product-moq {
  font-size: 0.75rem;
  color: var(--textColorL3);
}

.supplier-info {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  width: 100%;
}

.supplier-details {
  flex-direction: column;
  display: flex;
  gap: 0.25rem;
  width: 100%;
}
.products-list .product-content .supplier-details {
  padding-top: 1rem;
}
.supplier-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--textColorL1);
}

.supplier-location {
  font-size: 0.75rem;
  color: var(--textColorL3);
}

.supplier-badges {
  position: relative;
}
.products-list .product-content .supplier-badges {
  inset-inline-start: auto;
  inset-inline-end: 0;
  position: absolute;
}
.supplier-badge {
  background-color: var(--grayBack);
  color: var(--textColorL2);
  padding: 0.125rem 0.375rem;
  border-radius: var(--borderRadius);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
}
.supplier-badge.gold {
  background-color: #fff8e1;
  color: #ff9800;
}

.supplier-badge.premium {
  background-color: #f3e5f5;
  color: #9c27b0;
}

.product-footer {
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  margin-top: auto;
  display: flex;
  width: 100%;
  gap: 1px;
}

.product-footer .default-button {
  flex-direction: column;
  text-align: center;
  padding: 10px 6px;
  font-size: 12px;
  flex-grow: 1;
}

/*================================ Products Sidebar ==============================*/

.products-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-section {
  background-color: var(--whiteColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  overflow: hidden;
}

.sidebar-section-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid var(--borderColor);
  padding: 0.75rem 1rem;
}

.sidebar-section-title {
  color: var(--textColorL1);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.sidebar-section-content {
  padding: 1rem;
}

/* Related Categories Section */
.related-categories {
  justify-content: start;
  flex-direction: column;
  align-items: start;
  list-style: none;
  display: flex;
  gap: 0.125rem;
}
.related-categories a {
  color: var(--textColorL2);
  font-weight: 500;
  font-size: 16px;
}

.more-link {
  transition: var(--mainTransition);
  color: var(--primaryColor);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.more-link:hover {
  text-decoration: underline;
}

/* Filter Groups */
.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  color: var(--textColorL1);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* Price Range */
.price-range-group {
  display: flex;
  gap: 0.75rem;
}

.price-input-group {
  flex: 1;
}

/* Min Order */
.min-order-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.min-order-group input {
  flex: 1;
}

.min-order-text {
  color: var(--textColorL3);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Lead Time */
.lead-time-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lead-time-group input {
  flex: 1;
}

.lead-time-text {
  color: var(--textColorL3);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Years in Business Options */
.years-business-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Certificates Options */
.certificates-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Quotation Section */

.quotation-section .sidebar-section-header {
  background-color: var(--primaryColor);
  border-bottom-color: var(--primaryColor);
}

.quotation-section .sidebar-section-title {
  color: var(--whiteColor);
}

.quotation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quantity-unit-group {
  display: flex;
  gap: 0.75rem;
}

.quantity-unit-group .form-group {
  flex: 1;
}

.ad-section img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

/*================================ Login Register ==============================*/

/*================================  Shared Components & Utilities ==============================*/

@keyframes mrf-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Main containers for Login and Registration forms --- */
.mainexpo-reg-form-container,
.mlp-login-container {
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  background-color: var(--whiteColor);
}

/* --- Shared tab navigation style --- */
.mainexpo-reg-form-container .nav-tabs,
.mlp-login-container .nav-tabs,
#filterTabs {
  border-bottom: 2px solid var(--primaryColor);
  justify-content: space-between;
  align-items: baseline;
  overflow-y: hidden;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 0;
  display: flex;
}

.mainexpo-reg-form-container .nav-tabs .nav-link,
.mlp-login-container .nav-tabs .nav-link,
.sidebar-widget .nav-tabs .nav-link,
.hero-forms-section .nav-tabs .nav-link {
  color: var(--textColorL1);
  font-weight: 600;
  border: none;
  background-color: transparent;
}

.mainexpo-reg-form-container .nav-tabs .nav-link.active,
.mlp-login-container .nav-tabs .nav-link.active,
.hero-forms-section .nav-tabs .nav-link.active {
  background-color: var(--primaryColor);
  border-radius: 2px 2px 0 0;
  color: var(--whiteColor);
}

/* --- Shared form check (checkbox/radio) styles --- */
.req-form .form-check-inline,
.mlp-login-container .form-check,
.mainexpo-reg-form-container .form-check {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.25rem;
}

.mainexpo-reg-form-container .form-check .form-check-input,
.mlp-login-container .form-check .form-check-input,
.req-form .form-check .form-check-input {
  margin: 0;
}

/* --- Shared Social Icons --- */
.social-icon,
.mlp-social-btn {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--whiteColor);
  transition: var(--mainTransition);
}
.social-icon:hover,
.mlp-social-btn:hover {
  opacity: 0.85;
}

.social-icon.google {
  background-color: #db4437;
}
.social-icon.facebook {
  background-color: #3b5998;
}
.social-icon.linkedin {
  background-color: #0077b5;
}
.social-icon.twitter {
  background-color: #000;
}

.mlp-social-btn {
  border: 1px solid var(--borderColor);
}
.mlp-social-btn img {
  width: 100%;
  height: 100%;
}

/* --- Shared divider with text --- */
.social-divider {
  border-top: 1px solid var(--borderColor);
  text-align: center;
  position: relative;
  margin: 1rem 0;
}
.social-divider span {
  padding-inline: 10px;
  font-size: 0.85rem;
  position: absolute;
  width: fit-content;
  background: var(--whiteColor);
  margin: auto;
  z-index: 1;
  color: var(--textColorL3);
  height: 20px;
  inset: 0;
}

/* --- General Form Control Hover --- */
.req-form .form-control:hover,
.mlp-form-control:focus {
  border-color: var(--primaryColor);
}

/*================================  Component-Specific Styles ==============================*/

/* --- Header & Navigation --- */
.header-navigation {
  background-color: var(--grayBack);
}
.navigation-list {
  align-items: center;
  list-style: none;
  display: flex;
  gap: 0.75rem;
  padding: 0;
}
.navigation-list .navigation-item {
  padding-block: 0.25rem;
}
.navigation-list .navigation-item a {
  border-inline-end: 1px solid var(--textColorL1);
  transition: var(--mainTransition);
  padding-inline-end: 0.75rem;
  line-height: 1.125;
  font-weight: bold;
  color: var(--textColorL1);
  font-size: 15px;
}
.navigation-list .navigation-item.primary {
  background-color: var(--primaryColor);
  padding-inline: 1.25rem;
  border-color: var(--primaryColor);
}
.navigation-list .navigation-item.primary a {
  color: var(--whiteColor);
}
.navigation-list .navigation-item:last-child a,
.navigation-list .navigation-item.primary a {
  border-inline-end: none;
  padding-inline-end: 0;
}
.has-submenu:hover > .submenu-wrapper-light {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}
.menu_a .fa-heart {
  border: 1px solid var(--textColorL1);
  transition: 0.3s ease-in;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 0.25rem;
  font-size: 16px;
}
.menu_a:hover .fa-heart {
  border-color: var(--primaryColor);
}

.hero-forms-section {
  flex-direction: column;
  display: flex;
  height: 100%;
  width: 100%;
}
#filterTabsContent {
  overflow-y: auto;
  padding: 1rem;
  height: 100%;
  flex: 1;
}
.hero-forms-section .form-label {
  font-size: 0.875rem;
  margin-bottom: 2px;
  font-weight: bold;
}
.form-check-label {
  font-size: 0.85rem;
  line-height: 1;
}
.hero-forms-section select.form-select {
  padding: 0.25rem 2.5rem 0.25rem 0.75rem;
  background: var(--grayBack);
  font-size: 0.85rem;
  border-radius: var(--borderRadius);
}
.hero-forms-section .select-box {
  position: relative;
}
.hero-forms-section .select-box::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c0c0c5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-position: center;
  border-inline-start: 1px solid var(--borderColor);
  background-repeat: no-repeat;
  background-size: 24px 18px;
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  width: 40px;
  content: "";
  z-index: 1;
}

/* --- Main Expo Registration Form --- */
.mainexpo-reg-form-container {
  min-height: 100vh;
  display: flex;
  width: 100%;
}
.mainexpo-reg-form-container .mrf-left-panel {
  background-color: var(--whiteColor);
  flex-basis: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-welcome-image-background {
  object-position: right bottom;
  object-fit: contain;
  position: absolute;
  opacity: 0.85;
  height: 100%;
  width: 100%;
  z-index: 1;
  inset: 0;
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-overlay-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text {
  animation: mrf-fadeIn 0.5s ease-in-out;
  flex-direction: column;
  text-align: start;
  display: none;
  gap: 1rem;
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text.mrf-active {
  display: flex;
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text h1,
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text h2 {
  font-weight: bold;
  color: var(--textColorL1);
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text h1 {
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text h2 {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}
.mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--textColorL1);
}
.mainexpo-reg-form-container .mrf-right-panel {
  padding: 40px;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  background-color: var(--whiteColor);
  overflow-y: auto;
}
.mainexpo-reg-form-container .mrf-form-step {
  display: none;
  animation: mrf-fadeIn 0.5s;
  width: 100%;
}
.mainexpo-reg-form-container .mrf-form-step.mrf-active {
  display: block;
}
.mainexpo-reg-form-container .mrf-right-panel h2,
.mainexpo-reg-form-container .mrf-right-panel h3 {
  color: var(--textColorL2);
  text-align: center;
  margin-bottom: 25px;
}
#mrf-step-1 h2,
#mrf-step-2 h3,
#mrf-step-3 h2 {
  text-align: start;
  margin-bottom: 1.5rem !important;
}
.mainexpo-reg-form-container .mrf-form-group label:not(.form-check-label) {
  font-size: 0.9em;
  margin-bottom: 0.3rem;
}
.mainexpo-reg-form-container .mrf-form-check label a {
  color: var(--secondColor);
  text-decoration: none;
}
.mainexpo-reg-form-container .mrf-form-check label a:hover {
  text-decoration: underline;
}
.mainexpo-reg-form-container .mrf-required {
  color: red;
}
.mainexpo-reg-form-container .mrf-verification-code-inputs input {
  aspect-ratio: 1/1;
  font-size: 1.2em;
  padding: 0.5rem;
  height: 54px;
  width: 54px;
  text-align: center;
}
.mainexpo-reg-form-container .form-control {
  padding: 0.5rem;
  height: 40px;
}
.mainexpo-reg-form-container .mrf-resend-link {
  color: var(--secondColor);
  text-decoration: none;
  font-size: 0.9em;
}
.mainexpo-reg-form-container .mrf-info-note {
  font-size: 0.85em;
  color: var(--grayTextColor);
  line-height: 1.6;
}
.mainexpo-reg-form-container .mrf-field-note {
  font-size: 0.8em;
}

/* --- MLP Login Form --- */
.mlp-login-container .row {
  min-height: 100vh;
}
.mlp-left-panel {
  background-color: var(--primaryColor);
  background-image: url("../images/login-back.webp");
  background-size: cover;
  background-position: left bottom;
  background-blend-mode: multiply;
  padding: 3rem;
  position: relative;
  color: var(--whiteColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mlp-left-panel-content {
  text-align: center;
  color: var(--whiteColor);
}
.mlp-left-panel-content h1 {
  font-size: clamp(1.25rem, 2.5vw, 2.8rem);
  color: var(--whiteColor);
}
.mlp-left-panel-content .sub-title {
  font-size: clamp(1.125rem, 2vw, 2rem);
  color: var(--whiteColor);
  font-weight: bold;
}
.mlp-left-panel-content p {
  color: var(--whiteColor);
  font-weight: bold;
}
.mlp-btn-join {
  transition: var(--mainTransition);
  color: var(--whiteColor);
  padding: 0.75rem 2rem;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid var(--whiteColor);
}
.mlp-btn-join:hover {
  background-color: var(--grayBack);
  color: var(--primaryColor);
}
.mlp-logo {
  font-size: 1.5rem;
  font-weight: bold;
  align-self: flex-start;
  color: var(--whiteColor);
}
.mlp-right-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mlp-login-form-wrapper {
  width: 100%;
}
.mlp-auth-toggle .nav-item {
  flex-grow: 1;
}
.mlp-form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--borderColor);
}
.mlp-password-toggle {
  position: absolute;
  top: 50%;
  inset-inline-end: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--textColorL3);
}
.mlp-link {
  color: var(--primaryColor);
  text-decoration: none;
  font-size: 0.9rem;
}
.mlp-link:hover {
  text-decoration: underline;
}

/*================================ Categories Page ==============================*/

.categories-accordion-container {
  margin: 20px 0;
  border-radius: var(--borderRadius);
  overflow: hidden;
  background: var(--whiteColor);
  box-shadow: var(--boxShadow);
}

.categories-accordion {
  border: 1px solid var(--borderColor);
}

.categories-accordion .accordion-item {
  border-bottom: 1px solid var(--borderColor);
  border: none;
}

.categories-accordion .accordion-item:last-child {
  border-bottom: none;
}

.categories-accordion .accordion-header {
  margin: 0;
}

.categories-accordion .accordion-button {
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  color: var(--textColorL2);
  padding: 16px 20px;
  border-radius: 0;
  font-weight: 500;
  box-shadow: none;
  font-size: 14px;
  border: none;
}

.categories-accordion .accordion-button:hover {
  background-color: var(--grayBack);
  color: var(--primaryColor);
}

.categories-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
  box-shadow: none;
}

.categories-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.categories-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23353535'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.categories-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.categories-accordion .accordion-body {
  background-color: var(--whiteColor);
  padding: 20px;
}

.subcategory-section {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  background: var(--whiteColor);
  box-shadow: var(--boxShadow);
  margin-bottom: 15px;
  overflow: hidden;
}

.subcategory-header {
  border-bottom: 1px solid var(--borderColor);
  background: #f4f4f4;
}

.subcategory-toggle {
  transition: var(--mainTransition);
  justify-content: space-between;
  color: var(--textColorL3);
  background: transparent;
  padding: 12px 15px;
  align-items: center;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  border: none;
  width: 100%;
}

.subcategory-toggle:hover {
  background-color: rgba(var(--primaryRGBColor), 0.1);
  color: var(--primaryColor);
}

.subcategory-toggle i {
  transition: var(--mainTransition);
  font-size: 10px;
}

.subcategory-content {
  background: var(--whiteColor);
  max-height: 350px;
  overflow-y: auto;
}

.subcategory-section .search-box {
  border-bottom: 1px solid var(--borderColor);
  background-color: var(--grayBack);
  padding: 0.5rem;
}

.subcategory-section .search-box input {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  padding: 8px 12px;
  font-size: 12px;
  width: 100%;
}

.subcategory-section .search-box input:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--primaryRGBColor), 0.5);
  border-color: var(--primaryColor);
  outline: none;
}

.subcategory-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcategory-items li {
  border-bottom: 1px solid var(--borderColor);
}

.subcategory-items li:last-child {
  border-bottom: none;
}

.subcategory-items a {
  transition: var(--mainTransition);
  color: var(--grayTextColor);
  text-decoration: none;
  padding: 8px 15px;
  font-size: 12px;
  display: block;
}

.subcategory-items a:hover {
  background-color: var(--grayBack);
  color: var(--primaryColor);
  padding-left: 20px;
}

.subcategory-content::-webkit-scrollbar {
  width: 6px;
}

.subcategory-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.subcategory-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.subcategory-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/*============================ END OF Main Styles ============================*/

/**========================================================================
 *                              Footer Section
 *========================================================================**/
footer {
  color: var(--textColorL2);
  background: #e3e4e6;
}

footer p {
  color: var(--textColorL2);
  margin: 0;
}

footer .footer-top {
  padding-block: 3rem;
}

footer .footer-top > .row {
  padding: 0 20px;
}

footer .footer-top .footer-widget .footer-heading {
  color: var(--textColorL2);
  text-transform: uppercase;
  padding-bottom: 7px;
  margin-bottom: 18px;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  display: block;
  width: 100%;
}

footer .footer-top .footer-widget .footer-heading::before {
  border-bottom: 1px solid var(--primaryColor);
  position: absolute;
  content: "";
  width: 53px;
  height: 1px;
  bottom: 0;
  top: auto;
  inset-inline-start: 0;
  inset-inline-end: 0;
}

footer .footer-top .footer-widget .s-head {
  display: none;
}

footer .footer-top .footer-widget .footer-links .footer-link {
  color: var(--textColorL3);
  align-items: center;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  display: block;
  display: flex;
  padding: 0;
  margin: 0;
  border: 0;
}

footer .footer-top .footer-widget .footer-links .footer-link:not(:last-child) {
  margin-bottom: 10px;
}

footer .footer-top .footer-widget .footer-links .footer-link a {
  transition: var(--mainTransition);
  color: var(--textColorL2);
  display: inline-block;
  word-break: break-all;
  position: relative;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
}

footer .footer-top .footer-widget .footer-links .footer-link a:hover {
  color: var(--primaryColor);
  opacity: 1;
}

footer .footer-social {
  align-items: center;
  margin-bottom: 0;
  display: flex;
  gap: 1rem;
}

footer .footer-social ul {
  flex-wrap: wrap;
  display: flex;
}

footer .footer-social .footer-widget .footer-links .footer-link {
  padding-inline-end: 5px;
}

footer .footer-social .footer-widget .footer-links .footer-link:not(:last-child) {
  margin-bottom: 0;
}

footer .footer-social .footer-widget .footer-links .footer-link a {
  text-transform: capitalize;
  align-items: center;
  font-size: 15px;
  display: flex;
}

footer .footer-social .footer-widget .footer-links .footer-link a i {
  margin-inline-end: 10px;
  font-size: 25px;
}

.footer-middle {
  border-top: 2px solid var(--borderColor);
  padding-block: 20px;
}

.newsletter-form-wrapper {
  align-items: center;
  display: flex;
  gap: 15px;
}

.newsletter-form-wrapper span {
  font-weight: 500;
  white-space: nowrap;
}

.newsletter-form-wrapper form {
  width: 100%;
}

.newsletter-form-wrapper .form-control {
  background-color: var(--grayBack);
  border-radius: 4px 0 0 4px;
  max-width: 300px;
  color: #ffffff;
}
.newsletter-form-wrapper .form-control::placeholder {
  color: var(--grayTextColor);
}

.newsletter-form-wrapper .default-button {
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
}

.free-app-wrapper {
  align-items: center;
  display: flex;
  gap: 10px;
}
.free-app-wrapper span,
.footer-social > span {
  font-weight: 500;
}

.free-app-wrapper a img {
  border-radius: 5px;
  overflow: hidden;
  height: 40px;
}

.footer-social .social-medias-list {
  display: flex;
  padding-inline-start: 0;
  margin-bottom: 0;
  list-style: none;
  gap: 8px;
}

.footer-social .social-medias-list .social-link {
  background-color: var(--darkBack);
  justify-content: center;
  align-items: center;
  display: flex;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
}
.footer-social .social-medias-list .social-link:hover {
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
}

.footer-sub-nav {
  border-top: 2px solid var(--borderColor);
  padding: 20px 0;
}

.horizontal-links-list {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-inline-start: 0;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  gap: 10px 15px;
}

.horizontal-links-list li {
  position: relative;
}

.horizontal-links-list li:not(:last-child)::after {
  content: "|";
  inset-inline-end: -12px;
  position: absolute;
  color: #555555;
}

.horizontal-links-list a {
  font-size: 14px;
  opacity: 0.7;
}
.horizontal-links-list a:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 25px 0;
  border-top: 2px solid var(--borderColor);
}

.footer-bottom .copy {
  color: var(--textColorL3);
  text-align: center;
  font-weight: 300;
  font-size: 14px;
}

.footer-bottom .copy a {
  margin: 0 5px;
}

.footer-bottom .copy a:hover {
  color: var(--primaryColor);
}

.heading-res {
  display: none;
}
/*============================ END OF Footer ============================*/

/**========================================================================
 *                           Fixed Elements
 *========================================================================**/
/*================================ Scroll Up Button ==============================*/

#scrollToTop {
  background-color: var(--textColorL1);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  border: 1px solid transparent;
  box-shadow: var(--boxShadow);
  justify-content: center;
  color: var(--whiteColor);
  align-items: center;
  visibility: hidden;
  font-size: 1.25rem;
  bottom: 0.9375rem;
  aspect-ratio: 1/1;
  inset-inline-start: 0.9375rem;
  position: fixed;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  z-index: 100;
}

#scrollToTop:hover {
  background-color: var(--primaryColor);
}

/*================================ Fixed Menu ==============================*/

.fixed-menu {
  box-shadow: 0 -0.0625rem 0.5625rem 0.0625rem rgba(0, 0, 0, 0.1);
  background-color: var(--whiteColor);
  border-radius: 0.5rem 0.5rem 0 0;
  padding-block: 0.75rem 0.375rem;
  align-items: center;
  inset: auto 0 0 0;
  max-width: 25rem;
  position: fixed;
  display: flex;
  margin: auto;
  z-index: 10;
  width: 100%;
}

.fixed-menu .fixed-menu-item {
  flex: 1;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  gap: 0.5rem;
  color: var(--thirdColor);
}

.fixed-menu .fixed-menu-item .fixed-menu-item-title {
  font-size: 0.9375rem;
  line-height: 1;
}

/**========================================================================
  *                           Modals
  *========================================================================**/
/*================================ Search Modal ==============================*/

#SearchBoxModal {
  background-color: rgba(217, 217, 217, 0.6);
  backdrop-filter: blur(0.625rem);
  height: 100%;
}

#SearchBoxModal .btn-close {
  position: absolute;
  top: 1.5rem;
  inset-inline-end: 1.5rem;
  background-size: 1.5rem;
}

#SearchBoxModal .search-modal {
  height: 100%;
  display: flex;
  align-items: center;
  margin: auto;
}

#SearchBoxModal .search-modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 2rem;
}

#SearchBoxModal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.modal-search-input {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.modal-search-input input {
  padding: 0.625rem 2.1875rem 0.625rem 0.625rem;
  border: none;
  border-bottom: 0.0625rem solid var(--borderColor);
  background-color: transparent;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: bolder;
  line-height: 1.5;
  color: var(--lightTextColor);
  outline: none;
  width: 100%;
}

.modal-search-input input::placeholder {
  font-size: 1.125rem;
  font-weight: bolder;
  line-height: 1.5;
  color: var(--color5);
}

.modal-search-input a {
  position: absolute;
  font-size: 1.5rem;
  color: var(--textColorL1);
  line-height: 1;
  inset: 0 auto 0 0.25rem;
  margin: auto;
}

/*================================ Mobile Menu Navigation ==============================*/

#mobileMenuNavigation {
  transition: all 0.5s linear;
  background: rgba(0, 0, 0, 0);
}

#mobileMenuNavigation.show {
  background: rgba(0, 0, 0, 0.5);
}

#mobileMenuNavigation .modal-dialog {
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transform: translatex(-100%);
  margin: 0;
  margin-inline-end: auto;
  max-width: 22.5rem;
}

.mobile-navigation-logo img {
  max-height: 4.375rem;
}

#mobileMenuNavigation .search-box {
  position: relative;
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: solid 0.0625rem var(--borderColor);
}

#mobileMenuNavigation .search-box input {
  width: 100%;
  border-radius: var(--borderRadius);
  border: 0.0625rem solid var(--borderColor);
  transition: var(--mainTransition);
  padding: 0.5rem;
}

#mobileMenuNavigation .search-box input:hover,
#mobileMenuNavigation .search-box input:focus {
  border-color: var(--primaryColor);
  box-shadow: none;
  outline: none;
}

#mobileMenuNavigation .search-box button {
  all: unset;
  position: absolute;
  inset: 0 1.25rem 0 auto;
  margin: auto;
  color: var(--textColorL1);
}

#mobileMenuNavigation .modal-dialog .modal-content {
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  max-height: 100vh;
  overflow-y: auto;
}

#mobileMenuNavigation.show .modal-dialog {
  transform: translatex(0);
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

#mobileMenuNavigation .btn-close {
  color: var(--lightTextColor);
  background: none;
  font-size: 3rem;
  opacity: 0.8;
  padding: 0;
  inset-inline-end: 1.5625rem;
  top: 0.75rem;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
}

/*================================ Mobile Navigation ==============================*/

.mobile-navigation-item {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.mobile-navigation-item-link,
.mobile-navigation-item-title {
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  padding: 0.625rem;
  padding-inline-end: 0.625rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  transition: var(--mainTransition);
  color: rgba(0, 0, 0, 0.7);
}

.mobile-navigation-item-title:hover,
.mobile-navigation-item-link:hover,
.open-mobile-navigation-accordion > a {
  color: rgb(0, 0, 0);
  transition: var(--mainTransition);
}

.mobile-navigation-item-link {
  font-size: 0.9375rem;
  padding-inline-start: 2.5rem;
}

.mobile-navigation-item-link:has(.fa) {
  padding: 0.625rem 2.5rem;
}

.mobile-navigation-accordion li {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.mobile-navigation-item-title .fa,
.mobile-navigation-item-link .fa {
  border-inline-start: 0.0625rem solid rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 0 0.75rem;
  position: absolute;
  transition: var(mainTransition);
  inset-inline-end: 0;
}

.mobile-navigation-accordion {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  padding: 0;
}

.mobile-navigation-item .fa::before {
  transition: var(--mainTransition);
}

.open-mobile-navigation-accordion > .mobile-navigation-accordion {
  opacity: 1;
  visibility: visible;
  background-color: #f5f5f5;
  max-height: 187.5rem;
  overflow-y: auto;
}

.open-mobile-navigation-accordion > a .fa::before {
  transform: rotate(180deg);
}

/*================================ Filter Modal ==============================*/

#filterModal {
  transition: all 0.5s linear;
  background: rgba(0, 0, 0, 0);
}

#filterModal.show {
  background: rgba(0, 0, 0, 0.5);
}

#filterModal .modal-dialog {
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  background-color: transparent;
  transform: translatex(-100%);
  margin: 0;
  margin-inline-end: auto;
  width: 100%;
  max-width: 100%;
}

#filterModal.show .modal-dialog {
  transform: translatex(0);
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

#filterModal .btn-close {
  transition: var(--mainTransition);
  font-size: 2.25rem;
  background: none;
  opacity: 0.85;
  color: #fff;
  padding: 0;
}

#filterModal .btn-close:hover {
  color: var(--secondColor);
  transform: scale(1.1);
  opacity: 1;
}

.modal-header .btn-close {
  margin: unset;
}

#filterModal .modal-dialog {
  max-width: 25rem;
}

#filterModal .modal-header {
  border-bottom-color: var(--borderColor);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
}

#filterModal .filter-modal-heading {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.25rem;
  width: 100%;
}

#filterModal .modal-dialog .modal-content {
  border-radius: 0;
  background-color: #fff;
  max-height: 100vh;
  overflow-y: auto;
}

#filterModal .filter-modal-heading .submit-form {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 14px;
}

#filterModal .selected-filter-list .selected-filter-item,
#filterModal .modal-header .filter-modal-title,
#filterModal .modal-header .clear-filter {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  text-shadow: var(--textShadow);
  color: var(--textColorL2);
  align-items: center;
  line-height: 1;
  font-weight: 400;
  display: flex;
  gap: 0.25rem;
  margin: 0;
}

#filterModal .modal-header .clear-filter,
#filterModal .selected-filter-list .selected-filter-item {
  transition: var(--mainTransition);
  background-color: #fce5e6;
  padding: 0.125rem 0.75rem;
  font-size: 0.9375rem;
  border-radius: 5rem;
  line-height: 1.65;
  color: #ea5455;
}

#filterModal .modal-header .clear-filter {
  justify-self: end;
}

#filterModal .modal-header .clear-filter:hover,
#filterModal .selected-filter-list .selected-filter-item:hover {
  opacity: 0.85;
}

#filterModal .selected-filter-list {
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.375rem;
}

#filterModal .selected-filter-list .selected-filter-item {
  background-color: #9df49db9;
  font-size: 0.875rem;
  text-shadow: none;
  color: #008631;
}

#filterModal .accordion-body {
  padding: 0 1rem;
}

#filterModal .search-box button {
  inset-inline-end: 0.75rem;
}

#filterModal .filter-list-group {
  padding: 0.75rem 0.375rem;
}

#filterModal .accordion-button {
  padding-block: 0.75rem;
}

.filter-list-group .filter-list-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
  cursor: pointer;
}

.filter-list-group .filter-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-list-group .filter-list-item .open-filter-option {
  justify-content: space-between;
  color: var(--textColorL3);
  align-items: center;
  font-size: 14px;
  display: flex;
  gap: 0.25rem;
}

.filter-list-group .filter-list-item .open-filter-option .isopen-status {
  justify-content: center;
  align-items: center;
  position: relative;
  display: flex;
}

.filter-list-group .filter-list-item .open-filter-option .isopen-status span {
  background-color: var(--thirdColor);
  transition: var(--mainTransition);
  border-radius: 3px;
  height: 0.1rem;
  width: 16px;
}

.filter-list-group .filter-list-item .open-filter-option .isopen-status span:nth-child(2) {
  transform: rotate(-90deg) translateY(0);
  position: absolute;
  margin: auto;
  inset: 0;
}

.filter-list-group .filter-list-item:has(.filter-list-item-options.open) .open-filter-option .isopen-status span:nth-child(2) {
  transform: rotate(-90deg) translateX(1rem);
  visibility: hidden;
  opacity: 0;
}

.filter-list-item-options {
  padding: 0.25rem 0.375rem 0 0.375rem;
  overflow: hidden;
  max-height: 0;
}

.filter-list-item-options.open {
  max-height: 350px;
  overflow: auto;
}

.filter-options-list {
  flex-direction: column;
  padding-block: 0.5rem;
  display: flex;
  gap: 0.25rem;
}

#filterModal .toggle-container {
  border-bottom: 1px solid var(--borderColor);
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.filter-options-list .filter-option-item {
  color: var(--textColorL3);
  padding-block: 0.125rem;
  vertical-align: middle;
  font-size: 0.9375rem;
  align-items: center;
  display: flex;
  gap: 0.25rem;
}

.filter-options-list .filter-option-item input {
  font-size: 0.9375rem;
  margin: 0;
}

.filter-options-list .filter-option-item input:focus,
.filter-options-list .filter-option-item input:checked {
  box-shadow: none;
}

/**========================================================================
 *                           Responsive
 *========================================================================**/
/*================================  LG Monitor ==============================*/

@media (max-width: 1200px) {
  header > .container {
    max-width: 100%;
    padding-inline: 1.5rem;
  }
}

/*================================  MD Monitor  ==============================*/

@media (max-width: 1024px) {
  .header-top-side {
    padding-block: 0.25rem;
  }

  .about-img {
    max-width: 31.25rem;
  }

  .section-image {
    min-height: 250px;
  }

  .counseling-title-box {
    justify-content: center;
  }

  .counseling-banner p {
    text-align: center;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-sidebar {
    margin-bottom: 2rem;
  }

  .price-range-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .quantity-unit-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mlp-left-panel {
    min-height: 40vh;
    padding: 2rem;
  }
  .mlp-left-panel-content h1 {
    font-size: 2rem;
  }
  .mlp-left-panel-content p {
    font-size: 1rem;
  }
  .mlp-logo {
    font-size: 1.2rem;
    margin-bottom: 1.5rem !important;
  }
  .mlp-right-panel {
    padding: 2rem 1rem;
  }

  .footer-news-desc {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  footer .footer-top .container > .row {
    padding: 0;
  }

  footer .footer-top .col-sm-12 {
    margin-bottom: 0;
  }

  footer .footer-top .footer-widget .footer-links .footer-link:not(:last-child) {
    margin-bottom: 15px;
  }

  footer .footer-top .footer-widget .footer-heading {
    margin-bottom: 15px;
  }

  footer .footer-top .col-sm-12.col-lg-3 {
    margin-bottom: 5px;
    width: 100%;
  }

  footer .footer-top .col-sm-12.col-lg-3.footer-contact {
    width: 100%;
    margin-bottom: 5px;
  }

  footer .footer-top .footer-contact .footer-widget .footer-heading {
    margin-bottom: 15px;
  }

  .footer-contact {
    margin-bottom: 0;
  }

  .footer-news-title {
    font-size: 20px;
  }

  .subscribe-form {
    flex: 0 0 58%;
  }

  .heading-res {
    inset-inline-start: 0;
    inset-inline-end: 0;
    position: absolute;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: block;
    text-align: end;
    padding-inline-end: 10px;
  }

  .footer-links.footer-dropdown {
    display: none;
    padding: 0 0 15px 0;
  }

  .footer-bottom-copy {
    text-align: center;
  }

  .footer-bottom .col {
    flex: 1 0 100%;
  }

  .col.footer-bottom-right {
    margin: 15px auto;
  }

  .footer-bottom-payment.d-flex.justify-content-end {
    justify-content: center !important;
  }

  footer .footer-social ul {
    margin-top: 15px;
  }

  footer .footer-top .footer-widget .s-head {
    display: block;
  }
}

/*================================ Tablet ==============================*/

@media (max-width: 767px) {
  .hero-slider {
    min-height: unset;
    height: auto;
    aspect-ratio: 3/2;
    width: 100%;
  }
  .company-description .section-title {
    text-align: center;
    margin: 0;
  }

  .company-description .section-thumbnail {
    max-width: 25rem;
    margin: 0 auto;
  }
  .mainexpo-reg-form-container {
    flex-direction: column;
    min-height: auto;
  }
  .mainexpo-reg-form-container .mrf-left-panel {
    flex-basis: auto;
    min-height: 250px;
    padding: 20px;
  }
  .mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text h1 {
    font-size: 1.8rem;
  }
  .mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text h2 {
    font-size: 1.5rem;
  }
  .mainexpo-reg-form-container .mrf-left-panel .mrf-left-panel-text p {
    font-size: 0.9rem;
  }
  .mainexpo-reg-form-container .mrf-right-panel {
    flex-basis: auto;
    padding: 20px;
  }
    .categories-accordion-container {
    margin: 10px 0;
  }
  
  .categories-accordion .accordion-button {
    padding: 12px 15px;
    font-size: 13px;
  }
  
  .subcategory-content {
    max-height: 250px;
  }
}

/*================================ Phone ==============================*/

@media (max-width: 575px) {
  header .container {
    padding-inline: 0.5rem;
  }

  header .container .row {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  header .container .row > * {
    padding-inline-start: 0.125rem;
    padding-inline-end: 0.125rem;
  }

  .header-contact {
    align-items: flex-end;
  }

  .language-select-box a {
    aspect-ratio: 1/1;
    justify-content: center;
    min-height: 2.5rem;
    min-width: unset;
  }

  .language-select-box a span {
    display: none;
  }

  .language-select-box a img {
    border-inline-end: none;
    padding-inline-end: 0;
    margin-inline-end: 0;
    width: 100%;
    max-width: 1.375rem;
  }

  .language-select-box ul {
    min-width: unset;
  }

  .language-select-box ul li a {
    min-height: 2.5rem;
  }

  .hero-slider .swiper-slide .container {
    padding: 2rem 1rem 5rem 1rem;
  }

  .product-hero-section {
    height: fit-content;
  }

  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .sidebar-section-content {
    padding: 0.75rem;
  }

  .min-order-group,
  .lead-time-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .min-order-text,
  .lead-time-text {
    font-size: 0.75rem;
  }
  .categories-accordion-container {
    margin: 10px 0;
    border-radius: var(--borderRadius);
  }
  
  .subcategory-content {
    max-height: 200px;
  }
  
  .subcategory-items a {
    padding: 6px 10px;
    font-size: 11px;
  }
}
  #mobileMenuNavigation .modal-dialog {
    max-width: 62.5rem;
  }

  #mobileMenuNavigation .btn-close {
    color: var(--textColorL1);
    font-size: 2rem;
    top: 0.625rem;
    inset-inline-end: 0.625rem;
  }

  #scrollToTop {
    bottom: 4.375rem;
  }

  .fixed-menu {
    border-radius: 0;
    max-width: unset;
  }

  .footer-news-desc {
    max-width: 100%;
  }

  .subscribe-form .button {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    width: 100%;
    max-width: 300px;
  }

  footer .footer-top .footer-widget .footer-links .footer-link:not(:last-child) {
    margin-bottom: 10px;
  }
}
