/**========================================================================
 *                               Base Styles
 *========================================================================**/
/*================================ Fonts Face ==============================*/

@font-face {
  font-family: "IRANSansWeb";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/IRANSansWeb(FaNum)_Bold.woff") format("woff");
}

@font-face {
  font-family: "IRANSansWeb";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/IRANSansWeb(FaNum)_Medium.woff") format("woff");
}

@font-face {
  font-family: "IRANSansWeb";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/IRANSansWeb(FaNum)_Light.woff") format("woff");
}

@font-face {
  font-family: "IRANSansWeb";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/IRANSansWeb(FaNum)_UltraLight.woff") format("woff");
}

@font-face {
  font-family: "IRANSansWeb";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/IRANSansWeb(FaNum).woff") format("woff");
}

/*================================  Css Variable ==============================*/

:root {
  --headerHeight: 110px;
  /*--------------------- Main Colors ---------------------*/
  --primaryColor: #ff1818;
  --secondColor: #5463ff;
  --thirdColor: #ffc300;
  /*----------------- BackGround Colors --------------------*/
  --grayBack: #f8f8f8;
  --darkBack: #212121;
  --whiteColor: #ffffff;
  /*---------------------- Text Colors ---------------------*/
  --lightTextColor: #fff;
  --grayTextColor: #7d7d7d;
  --textColorL1: #21252b;
  --textColorL2: #353535;
  --textColorL3: #656565;
  /*---------------------- Border Colors ---------------------*/
  --borderColor: #d2d2d2;
  /*---------------------- Border Radius ---------------------*/
  --borderRadius: 7px;
  /*--------------------- 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: "IRANSansWeb";
  /*--------------------- 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: rtl;
}

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, #df4a45, rgb(223, 47, 47)) !important;
}

/*================================  Scroll Bar ==============================*/

::-webkit-scrollbar {
  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: 1024px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 60rem;
  }

  .col-lg-2-5 {
    width: 20%;
  }
}

@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(--grayTextColorL2);
  margin-bottom: 0.25rem;
  font-size: 0.825rem;
}

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: 3rem;
  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: 0.09rem 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,
select.form-control {
  padding-inline-end: 2rem;
  -webkit-appearance: none;
  appearance: none;
}

.select-container {
  position: relative;
}

.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 auto 0 0.25rem;
  justify-content: center;
  align-items: center;
  position: absolute;
  line-height: 32px;
  content: "\f078";
  font-size: 1rem;
  display: flex;
  margin: auto;
  height: 32px;
  z-index: 10;
  width: 32px;
}

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: #fff;
  color: #0508c4;
}

.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;
}

/*================================ List Style ==============================*/

.list-title {
  color: var(--thirdColor);
  font-size: 1.125rem;
  font-weight: bold;
}

.base-list {
  flex-direction: column;
  list-style: none;
  display: flex;
}

.base-list li::after {
  font-family: var(--fontIcons);
  color: var(--thirdColor);
  inset-inline-start: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  aspect-ratio: 1/1;
  font-size: 1rem;
  font-weight: 900;
  content: "\f32e";
  inset-block: 0;
  line-height: 1;
  width: 1.25rem;
  display: flex;
  margin: auto;
}

.base-list li {
  color: var(--textColorL3);
  padding-inline-start: 1.5625rem !important;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
}

.base-list.gear li::after {
  color: var(--primaryColor);
  font-size: 0.8375rem;
  content: "\f013";
}

.base-list.gear li {
  border-bottom: 0.0625rem solid var(--borderColor);
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.base-list.gear li:last-child {
  padding-bottom: none;
  border-bottom: none;
}

/*================================ Buttons ==============================*/

.default-button {
  border-radius: var(--borderRadius);
  background-color: var(--primaryColor);
  transition: var(--mainTransition);
  border: 1px solid transparent;
  color: var(--lightTextColor);
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  line-height: normal;
  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.dark {
  background-color: #c0c0c0;
  color: var(--textColorL1);
}

.default-button.dark:hover {
  background-color: #4d4d4d;
  color: var(--whiteColor);
  border-color: #4d4d4d;
}

/*================================ Slider ==============================*/

.carousel-section {
  position: relative;
  padding: 0 2.25rem;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  inset-inline-end: 0;
  inset-inline-start: auto;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #e5e5e572;
  border: 1px solid rgb(212, 212, 212);
  transition: var(--mainTransition);
  color: var(--textColorL1);
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  display: flex;
  border-radius: 0.375rem;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}

.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-heading {
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.25rem;
  display: flex;
}

.section-heading-right-side {
  flex-direction: column;
  max-width: 300px;
  display: flex;
  gap: 0.375rem;
}

.section-heading-left-side {
  flex: 1;
  display: flex;
  align-items: center;
}

.section-heading-left-side::before {
  background: linear-gradient(90deg, hsla(180, 2%, 91%, 0.3), #e8e9e9 10%, #e8e9e9 90%, hsla(180, 2%, 91%, 0.3));
  height: 0.125rem;
  display: block;
  margin: 0 10px;
  content: "";
  flex: 1;
}

.section-heading-left-side .default-button {
  padding-block: 0.25rem;
}

.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 {
  font-size: 1.125rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--textColorL1);
}

.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;
}

/*================================ Card Style ==============================*/

.default-card {
  border-block: 3px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  box-shadow: var(--boxShadow);
  padding: 1rem;
}

.default-card.sm {
  border-block-width: 2px;
}

.default-card.hover:hover {
  box-shadow: var(--boxShadowHover);
  border-color: var(--primaryColor);
}

/*================================ Page Breadcrumb ==============================*/

.page-breadcrumb {
  justify-content: flex-start;
  padding: 1.25rem 0.625rem;
  align-items: center;
  font-size: 1rem;
  flex-wrap: wrap;
  display: flex;
  gap: 0.625rem;
}

.page-breadcrumb a {
  transition: all ease-in-out 200ms;
  color: var(--textColorL1);
}

.page-breadcrumb a:hover {
  color: var(--primaryColor);
}

.separator {
  color: var(--primaryColor);
}

.page-breadcrumb .last {
  color: var(--textColorL1);
  opacity: 0.7;
}

/*================================ Breadcrumb ==============================*/

.breadcrumb {
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 4/1;
  flex-direction: column;
  max-height: 340px;
  padding: 2rem 0;
  display: flex;
  flex-wrap: nowrap;
  z-index: 10;
  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 .breadcrumb-title {
  font-size: clamp(1.25rem, 2vw, 2.5rem);
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  padding-bottom: 0.25rem;
  position: relative;
}

.breadcrumb .breadcrumb-title::after {
  background: var(--secondColor);
  inset: auto 0 -1px 0;
  position: absolute;
  margin: auto;
  content: "";
  width: 100%;
  height: 1px;
}

.breadcrumb-links {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.breadcrumb-links a {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  margin-inline-end: 18px;
  position: relative;
}

.breadcrumb-links a:hover {
  color: var(--primaryColor);
}

.breadcrumb-links a:after {
  font-family: var(--fontIcons);
  inset-inline-end: -14px;
  position: absolute;
  content: "\f104";
  top: 0;
}

.breadcrumb-links .end-item {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  text-shadow: var(--textShadow);
  color: var(--whiteColor);
  margin: 0;
}

/*================================ Social Medias ==============================*/

.social-medias-list {
  list-style: none;
  flex-wrap: wrap;
  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: 0 var(--borderRadius) var(--borderRadius) 0;
}

.pagination .page-item:nth-last-child(2) a {
  border-radius: var(--borderRadius) 0 0 var(--borderRadius);
}

.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);
  min-height: 4.375rem;
  align-items: center;
  display: flex;
  background-color: var(--whiteColor);
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  inset-inline-start: 0;
}

/*================================ Header Toolbar ==============================*/

.header-toolbar {
  background-color: var(--darkBack);
}

.header-toolbar .header-slogan {
  color: var(--lightTextColor);
  font-size: 2rem;
}

.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: #e8edf0;
}

.language-select-box .languages-item:hover {
  background-color: #404040;
}

.language-select-box .languages-item img {
  box-sizing: content-box;
  width: 30px;
}

.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-top-side {
  justify-content: space-between;
  padding-block: 0.5rem;
  position: relative;
  z-index: 1;
  background-size: 100% 100%;
  border-image-repeat: unset;
  background-image: url("../images/bg-header.jpeg");
}

/* .header-top-side::before{
  background: url(../images/header-back.webp) no-repeat center right;
  background-size: contain;
  position: absolute;
  margin: auto;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -1;
  inset: 0;
} */

.header-logo {
  box-sizing: border-box;
  object-fit: contain;
  max-height: 100px;
  width: 260px;
  padding: 0;
}

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);
}

/*================================ Navigation ==============================*/

.header-bottom-side {
  justify-content: center;
  align-items: center;
  display: flex;
  background: #2496d8;
}

.header-bottom-side > nav > ul {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 1.25rem;
}

.menu-dropdown-open {
  position: relative;
  list-style: none;
}

.menu-dropdown-list {
  border-radius: 0 0 var(--borderRadius) var(--borderRadius);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  box-shadow: var(--boxShadow);
  transform: translateY(2.5rem);
  transition-delay: 300ms;
  visibility: hidden;
  position: absolute;
  width: 12.25rem;
  z-index: 100;
  opacity: 0;
  padding: 0;
  top: 100%;
  inset-inline-start: 0;
}

.menu-dropdown-open:hover > .menu-dropdown-list {
  transform: translateY(0);
  transition-delay: 100ms;
  visibility: visible;
  opacity: 1;
}

.navigation-item {
  height: 100%;
}

.navigation-item-title {
  transition: var(--mainTransition);
  padding: 0.625rem 0 0.25rem 1rem;
  align-items: center;
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
  height: 100%;
  color: var(--whiteColor);
}

.navigation-item-title i {
  transition: var(--mainTransition);
  font-size: 1rem;
}

.navigation-item-title:hover i {
  color: var(--secondColor);
}

.navigation-item-title .fa-chevron-down {
  scale: 0.8;
}

.navigation-item ul li {
  padding: 0.25rem 1.5rem 0.25rem 0.25rem;
  justify-content: space-between;
  position: relative;
  display: flex;
}

.navigation-item ul li::before {
  background-color: var(--textColorL1);
  transition: var(--mainTransition);
  inset: 0.75rem 0.5rem auto auto;
  transform: rotate(0);
  position: absolute;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  margin-inline-end: 10px;
}

.navigation-item ul li:hover:before {
  transform: rotate(45deg);
  background-color: var(--primaryColor);
}

.navigation-item-link {
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  display: flex;
}

header .navigation-item-title .fa {
  line-height: 1.75rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.products-navigation-dropdown {
  width: 70%;
  min-height: 500px;
  padding: 0;
  display: flex;
  overflow: hidden;
  text-align: start;
  position: fixed;
  inset: var(--headerHeight) 0 auto 0;
  margin: auto;
}

.menu-dropdown-open:hover > .products-navigation-dropdown {
  visibility: visible;
  opacity: 1;
}

.products-navigation-dropdown .nav-tabs {
  max-height: calc(100vh - var(--headerHeight));
  background-color: var(--darkBack);
  flex-direction: column;
  flex-wrap: nowrap;
  min-width: 200px;
  overflow-y: auto;
  padding: 20px 0;
  direction: ltr;
  display: flex;
  border: none;
  height: 100%;
}

.products-navigation-dropdown .nav-tabs .nav-link {
  background-color: transparent;
  color: var(--lightTextColor);
  justify-content: flex-start;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  direction: rtl;
  display: flex;
  gap: 0.25rem;
  border: 0;
}

.products-navigation-dropdown .nav-tabs .nav-link.active,
.products-navigation-dropdown .nav-tabs .nav-link:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-radius: 0;
  border: none;
}

/* .products-navigation-dropdown .tab-content{
  position: relative;
} */
/* .products-navigation-dropdown .tab-content::before{
  background: url(../images/pattern.jpg) repeat top right;
  background-size: 180px;
  position: absolute;
  opacity: 0.75;
  margin: auto;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -1;
  inset: 0;
} */
.products-navigation-dropdown .tab-pane {
  position: relative;
  padding-top: 0;
}

.products-navigation-dropdown .tab-content > .active {
  display: flex;
}

.products-navigation-dropdown .category-image {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 0;
  display: flex;
  justify-content: end;
  align-items: end;
  width: 100%;
  max-width: 300px;
  opacity: 0.75;
  height: 100%;
  z-index: -1;
}
.products-navigation-dropdown .category-image img {
  object-position: left bottom;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.category-list {
  max-height: calc(94vh - var(--headerHeight));
  border-radius: var(--borderRadius);
  flex-direction: column;
  height: fit-content;
  align-items: start;
  overflow-y: auto;
  transition: 0.3s;
  display: flex;
  width: 100%;
  z-index: 99;
}

.navigation-item ul.category-list li {
  padding: 0.25rem;
  display: inline-block;
}

.navigation-item ul.category-list li::before {
  all: unset;
}

.category-list li a {
  display: block;
}

.category-list a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #565656;
}

.category-list-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--textColorL3);
}

.category-list-link:hover,
.products-navigation-dropdown .category-list-title:hover {
  transition: var(--mainTransition);
  color: var(--primaryColor);
}

.products-navigation-dropdown .category-list-title {
  color: var(--textColorL2);
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  gap: 0.5rem;
}

.products-navigation-dropdown .category-list-title:before {
  content: "";
  background-color: var(--th);
  height: 7px;
  width: 3px;
}

/*================================ Select Language ==============================*/
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 700px;
  width: 100%;
  justify-content: center;
}

.header-search input {
  height: 36px;
  border: none;
  background-color: var(--grayBack);
}

.header-search input::placeholder {
  font-size: 0.75rem;
  color: #919191;
}

.header-search button {
  all: unset;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: absolute;
  aspect-ratio: 1/1;
  inset: 0 auto 0 4px;
  display: flex;
  margin: auto;
}

.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);
}

header .default-button {
  aspect-ratio: 1/1;
  height: 40px;
  width: 40px;
}

/*================== 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: var(--grayBack);
  padding-bottom: 1.75rem;
  flex-direction: column;
  display: flex;
  gap: 1.75rem;
}

/*================================ Home Page ==============================*/

.hero-slider .swiper-slide {
  /* border-radius: var(--borderRadius); */
  aspect-ratio: 10/3;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  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%;
}

.hero-slider .swiper-slide .slide-thumbnail {
  object-position: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-slider .swiper-slide.swiper-slide-active img {
  animation: hero-slide-effect s linear;
}

@keyframes hero-slide-effect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/*================================ Link Card ==============================*/
.link-images-slider .swiper-wrapper {
  max-width: 60%;
}

.link-image-card {
  border-radius: var(--borderRadius);
  aspect-ratio: 5/2;
  overflow: hidden;
  display: flex;
}

.link-image-card img {
  object-position: center;
  object-fit: cover;
  min-height: 100%;
  width: 100%;
}

/*================================ 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: contain;
  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: 1rem;
  margin: 0;
}

.category-card-link {
  color: var(--textColorL2);
  align-items: baseline;
  font-size: 12px;
  display: flex;
  gap: 0.25rem;
  margin: 0;
}

/*================================ Feature Section ==============================*/

.feature-card {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: 3.125rem;
  transition: var(--mainTransition);
  justify-content: center;
  flex-direction: column;
  margin-top: 1.875rem;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
  cursor: pointer;
  display: flex;
  height: 100%;
  width: 100%;
  gap: 0.5rem;
}

.feature-card:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transform: scale(1.1);
}

.feature-card .feature-detail {
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-card img {
  mix-blend-mode: multiply;
  max-width: 80px;
}

.feature-card i {
  transition: var(--mainTransition);
  text-shadow: var(--textShadow);
  color: var(--thirdColor);
  max-width: 80px;
  font-size: 50px;
}

.feature-card:hover i {
  color: #fcd205;
}

.feature-card .feature-title {
  color: var(--textColorL1);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.feature-card .feature-description {
  color: var(--textColorL3);
  font-size: 0.8125rem;
  font-weight: 400;
  margin: 0;
}

/*================================ Product Card ==============================*/

.product-card {
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  border: 1px solid #e6e5e5;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-image-container {
  position: relative;
  overflow: hidden;
}

.product-card-image-link {
  display: block;
  overflow: hidden;
}

.product-card-main-image,
.product-card-hover-image {
  transition: var(--mainTransition);
  background-color: #fdfdfd;
  object-fit: contain;
  aspect-ratio: 4/3;
  width: 100%;
}

.product-card-hover-image {
  position: absolute;
  margin: auto;
  opacity: 0;
  inset: 0;
}

.product-card-badge {
  background: var(--primaryColor);
  color: var(--lightTextColor);
  text-transform: uppercase;
  inset-inline-start: 10px;
  border-radius: 3px;
  position: absolute;
  padding: 5px 10px;
  font-weight: 500;
  font-size: 12px;
  z-index: 2;
  top: 10px;
}

.product-card-content {
  border-top: 1px solid var(--borderColor);
  background: var(--whiteColor);
  flex-direction: column;
  text-align: start;
  padding: 16px;
  display: flex;
  gap: 0.75rem;
  flex: 1;
}

.product-card-detail {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.product-card-category {
  color: var(--primaryColor);
  margin-bottom: 0;
  font-size: 14px;
}

.product-made-flag {
  justify-content: end;
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.product-made-flag img {
  width: 40px;
}

.product-card-title {
  font-size: 16px;
  margin: 0;
}

.product-card-title a {
  color: var(--textColorL2);
  text-overflow: ellipsis;
  text-decoration: none;
  overflow: hidden;
  display: block;
}

.product-card-description {
  color: var(--grayTextColor);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  margin-bottom: 0;
  overflow: hidden;
  font-size: 0.875rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-cta {
  border-top: 1px solid var(--borderColor);
  text-align: center;
}

.product-card-button {
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  justify-content: center;
  border-radius: 0;
}

.product-card:hover {
  box-shadow: var(--boxShadowHover);
}

.product-card:hover .product-card-main-image {
  transform: scale(1.1);
  opacity: 0;
}

.product-card:hover .product-card-hover-image {
  opacity: 1;
}

.product-card-button:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

/* arrow icons */

/*================================  Counseling Banner  ==============================*/

.counseling-banner {
  border-radius: var(--borderRadius);
  background: var(--secondColor);
  color: var(--lightTextColor);
  margin-inline: auto;
  position: relative;
  margin-top: 8rem;
  width: 100%;
}

.counseling-title-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.counseling-title,
.counseling-title-box i {
  font-size: 1.5rem;
  margin: 0;
}

.counseling-banner p {
  color: var(--lightTextColor);
  font-size: 0.9375rem;
  margin-block: 1rem;
}

.section-image {
  position: relative;
  height: 100%;
}

.counseling-banner img {
  animation: tranition-y linear infinite 3s;
  max-height: calc(100% + 7rem);
  position: absolute;
  max-width: 100%;
  bottom: 0;
}
.motion-image-section img {
  animation: tranition-y linear infinite 3s;
  max-width: 456px;
  width: 100%;
}

@keyframes tranition-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

/*================================ Home About ==============================*/

.home-about-section {
  border: 1px solid var(--borderColor);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 0;
}

.home-about-content {
  background: linear-gradient(-45deg, var(--secondColor), rgb(40, 56, 197));
  color: var(--lightTextColor);
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  display: flex;
}

.home-about-content .home-about-title {
  font-size: clamp(1.25rem, 2vw, 2rem);
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  line-height: 1.6;
}

.home-about-content p {
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  text-align: justify;
  font-size: 15px;
}

.home-about-content .default-button {
  width: fit-content;
}

.home-about-video {
  position: relative;
  width: 100%;
  aspect-ratio: 3/1;
}

.home-about-video img {
  filter: brightness(0.75) contrast(1.1);
  transition: var(--mainTransition);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-about-video a {
  background-color: rgba(255, 255, 255, 0.75);
  transition: var(--mainTransition);
  color: var(--primaryColor);
  justify-content: center;
  border-radius: 100%;
  align-items: center;
  aspect-ratio: 1/1;
  position: absolute;
  font-size: 40px;
  display: flex;
  margin: auto;
  width: 80px;
  inset: 0;
}

.home-about-video a:hover {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--primaryColor);
}

.home-about-video:has(a:hover) img {
  filter: brightness(0.85) contrast(1.1);
  color: var(--primaryColor);
}

/* Education Page */

.video-play-card {
  cursor: pointer;
}

.video-play-card a {
  background-color: rgba(255, 255, 255, 0.75);
  transition: var(--mainTransition);
  color: var(--primaryColor);
  justify-content: center;
  border-radius: 100%;
  align-items: center;
  aspect-ratio: 1/1;
  position: absolute;
  font-size: 40px;
  display: flex;
  margin: auto;
  width: 80px;
  inset: 0;
}

.video-play-card:hover a {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--primaryColor);
}

.footer-text {
  line-height: 1.6;
}

/*================================ 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: 1px solid var(--borderColor);
  border-radius: var(--borderRadiusLg);
  background-color: var(--grayBack);
  margin-inline: auto;
  aspect-ratio: 1/1;
  max-width: 200px;
  padding: 2rem;
  width: 100%;
  cursor: pointer;
}

.logos-slider .logo-slide-card img {
  transition: var(--mainTransition);
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.logos-slider .logo-slide-card img:hover {
  transform: scale(1.1);
}

.logos-slider .swiper-slide.active img {
  transform: scale(1.1);
}

/*================================ Accordion ==============================*/

.faq-section {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 0;
}

.faq-section .faq-banner {
  width: 100%;
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 0.0625rem solid var(--borderColor);
  border-radius: 0 !important;
}

.accordion .accordion-item:last-child {
  border-bottom: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primaryColor);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--borderColor);
  box-shadow: none;
  z-index: 3;
  outline: 0;
}

.accordion-button {
  justify-content: space-between;
  border-radius: 0 !important;
  align-items: center;
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button::after {
  background-image: none;
  font-family: var(--fontIcons);
  height: fit-content;
  width: fit-content;
  font-weight: 400;
  content: "\f078";
  font-size: 1.25rem;
  line-height: 0;
  margin-inline-end: 0;
}

.accordion-body p {
  text-align: justify;
  margin-bottom: 0;
  color: var(--grayTextColor);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1rem;
}

/*================================ Seo Content Box ==============================*/
.seo-section {
  position: relative;
}

.more-description {
  padding-bottom: 50px;
  max-height: 250px;
  overflow: hidden;
}

.more-description::after {
  mask: -webkit-gradient(linear, inset-inline-end top, inset-inline-end bottom, from(transparent), to(#000));
  mask: linear-gradient(transparent, #000 100%);
  transition: ease-in-out 300ms;
  backdrop-filter: blur(3px);
  position: absolute;
  height: 70px;
  width: 100%;
  content: "";
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
}

.all-description {
  padding-bottom: 70px;
  max-height: fit-content;
  overflow-y: auto;
}

.more-description ~ .default-button {
  position: absolute;
  width: fit-content;
  margin: auto;
  inset: auto 0 20px 0;
}

.more-description.all-description::after {
  visibility: hidden;
  opacity: 0;
}

.more-description .title,
.more-description .sub-title {
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.more-description .sub-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.more-description p {
  text-align: justify;
  line-height: 1.9;
  font-size: 0.875rem;
  color: var(--textColorL3);
}

.more-description p strong {
  color: var(--textColorL2);
}

/*================================ About Us ==============================*/
.about-us-content .textual-content {
  flex-direction: column;
  display: flex;
}

.about-us-content .textual-content .title,
.about-us-content .textual-content .sub-title {
  font-size: clamp(1.125rem, 1.75vw, 2rem);
  text-shadow: var(--textShadow);
  color: var(--primaryColor);
  font-weight: bold;
}

.about-us-content .textual-content .sub-title {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.about-us-content .textual-content .description {
  font-size: clamp(0.9375rem, 1.25vw, 1.125rem);
  color: var(--textColorL3);
  text-align: justify;
  font-weight: 500;
}

.counters-list {
  background-color: rgb(25, 25, 25);
  border-radius: 2rem;
  padding: 24px 12px;
  margin-top: 100px;
}

.counter-section {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--boxShadow);
  border-radius: 1.25rem;
  margin-top: -100px;
  padding: 24px;
  height: calc(100% + 100px);
}

.counter-section i {
  color: var(--primaryColor);
  text-shadow: var(--textShadow);
  margin-bottom: 20px;
  font-size: 72px;
  opacity: 0.8;
}

.counter-section .counter-value {
  text-shadow: var(--textShadow);
  color: var(--textColorL1);
  font-weight: bold;
  font-size: 50px;
  direction: rtl;
}

.counter-section .counter-value::after {
  color: rgb(35, 35, 35);
  font-size: 40px;
  content: "+";
  opacity: 0.5;
}

.counter-section .counter-title {
  font-size: 1.125rem;
  text-shadow: var(--textShadow);
  color: var(--textColorL2);
  font-weight: bold;
}

.about-thumbnail {
  border-radius: var(--borderRadius);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*================================ Default Section Title Area ==============================*/

.section-title {
  flex-direction: column;
  margin-bottom: 1rem;
  display: flex;
}

.section-title .subject {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  text-shadow: var(--textShadow);
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title .title {
  font-size: clamp(1.125rem, 1.75vw, 2rem);
  text-shadow: var(--textShadow);
  color: var(--textColorL1);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.section-title .title.divider {
  padding-bottom: 0.25rem;
  width: fit-content;
  position: relative;
}

.section-title.middle .title.divider {
  margin-inline: auto;
}

.section-title .title.divider::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--secondColor), rgba(0, 0, 0, 0));
  inset: auto 0 -1px 0;
  position: absolute;
  margin: auto;
  content: "";
  height: 1px;
  width: 100%;
}

.section-title p {
  text-shadow: var(--textShadow);
  color: var(--grayTextColor);
  font-size: 0.9375rem;
  text-align: justify;
}

.section-title.middle p {
  text-align-last: center;
}

.section-title.middle {
  margin-inline: auto;
  text-align: center;
  max-width: 45rem;
}

.section-title.dark .title {
  color: var(--textColorL2);
}

.section-title.dark p {
  color: var(--textColorL3);
}

/*================================ Contact Us Page ==============================*/

.partnership-description,
.contact-us-contact,
.product-page,
.about-us-content {
  background-color: var(--grayBack);
  padding-block: 2rem;
}

.bg-gradient .section-title .subject {
  color: var(--textColorL1);
}

.bg-gradient .section-title .title {
  color: var(--whiteColor);
}

.bg-gradient .section-title p {
  color: var(--textColorL2);
}

.contact-us-contact .section-title .title {
  color: var(--textColorL1);
}

.contact-us-social .social-medias-list .social-link {
  border: 0.0625rem solid var(--lightTextColor);
  color: var(--lightTextColor);
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  align-items: center;
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
  opacity: 1;
}

.contact-us-social .social-medias-list .social-link i {
  font-size: 1.125rem;
}

.contact-us-social .social-medias-list .social-link:hover {
  background-color: var(--lightTextColor);
  border-color: var(--whiteColor);
  color: black;
}

.contact-item {
  border-bottom: 0.0625rem solid var(--borderColor);
  flex-direction: column;
  padding-bottom: 0.5rem;
  display: flex;
  height: 100%;
  gap: 0.5rem;
}

.contact-item-title {
  color: var(--textColor2);
  text-shadow: var(--textShadow);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1.0625rem;
}

.contact-item-title i {
  color: var(--primaryColor);
  font-size: 1.125rem;
}

.contact-item-value {
  color: var(--textColorL3);
  font-weight: 500;
  font-size: 1rem;
}

.routing-list {
  display: flex;
  align-items: center;
}

.Routing-item {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Routing-item img {
  max-width: 100%;
  width: 3.125rem;
}

.map-location {
  min-height: 450px;
}
/* ========================================================================
 *                           Gallery Page Styles
 * ======================================================================== */

.gallery-section {
  width: 100%;
}

/* Grid container for gallery items */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Individual gallery card styles */
.gallery-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  transition: var(--mainTransition);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background-color: var(--grayBack);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--boxShadowHover);
}

/* Gallery image styles */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:  var(--mainTransition);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Overlay for hover effect */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  transition:  var(--mainTransition);
  opacity: 0;
  color: var(--whiteColor);
  text-align: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Icon style inside overlay */
.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--whiteColor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: var(--textShadow);
  transition: var(--mainTransition);
}
.gallery-card:hover .gallery-overlay i {
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-overlay .gallery-caption {
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================================================
 *                      Gallery Category Filter Buttons
 * ======================================================================== */

.gallery-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-filter-btn {
  background-color: transparent;
  border: 2px solid var(--borderColor);
  color: var(--textColorL3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--mainTransition);
}

.gallery-filter-btn:hover {
  background-color: var(--secondColor);
  color: var(--whiteColor);
  border-color: var(--secondColor);
}

.gallery-filter-btn.active {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
}

/* Styling for gallery items during filtering transition */
.gallery-card ,
.gallery-item {
  transition:  var(--mainTransition);
}

.gallery-item.hidden {
  transform: scale(0.8);
  opacity: 0;
  font-size: 0;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: none;
  overflow: hidden;
  transition:  var(--mainTransition);
}
/* ========================================================================
 *                      Fancybox Iframe Specific Styles
 * ======================================================================== */

.fancybox__content:has(.fancybox__iframe) {
  aspect-ratio: 16 / 9 !important;
  max-width: 900px !important;
  height: auto !important;
  width: 100% !important;
  padding: 0 !important;
  background-color: var(--darkBack);
}

.fancybox__iframe {
  border: none;
}
/* ========================================================================
 *                           Gallery Tabs Styles
 * ======================================================================== */

/* Main tab navigation container */
.gallery-tabs-nav {
  border-bottom: 2px solid #e0e0e0;
}

/* Individual tab link styles */
.gallery-tabs-nav .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--textColorL3, #656565);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all var(--mainTransition, 0.3s ease);
  margin-bottom: -2px; /* To align border with the container's border */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hover effect for tab links */
.gallery-tabs-nav .nav-link:hover {
  color: var(--textColorL1, #21252b);
}

/* Active tab link styles */
.gallery-tabs-nav .nav-link.active {
  color: var(--primaryColor, #ff1818);
  border-bottom-color: var(--primaryColor, #ff1818);
  background-color: transparent;
}

/* Icon style in tabs */
.gallery-tabs-nav .nav-link i {
  color: var(--secondColor);
  transition: all var(--mainTransition, 0.3s ease);
}
.gallery-tabs-nav .nav-link.active i {
  color: var(--primaryColor);
  transform: scale(1.1);
}

/* Tab content spacing */
.tab-content {
  padding-top: 2rem;
}

/*================================ Blog Page ==============================*/
/*================================ World Brands Page ==============================*/

.brand-card {
  border: 0.0625rem solid var(--borderColor);
  border-radius: 40px 10px 40px 10px;
  transition: var(--mainTransition);
  background: var(--whiteColor);
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 0.9375rem;
  height: 100%;
  max-height: 700px;
  text-align: center;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 25px 50px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.07);
  transform: perspective(1000px) translateZ(10px);
}

.brand-card:hover {
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15), 0 10px 15px rgba(0, 0, 0, 0.07);
}

.brand-card:hover {
  transform: scale(1.12);
}

.brand-card .brand-card-title {
  border-top: 2px solid var(--borderColor);
  font-size: var(--title-fontSize);
  color: var(--textColorL1);
  padding: 1rem;
  width: 100%;
}

.brand-card .brand-card-text {
  color: var(--textColorL2);
  font-size: var(--sub-title-fontSize);
}

.brand-card .brand-card-button {
  border-radius: var(--borderRadius);
  border: 2px solid var(--borderColor);
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
  transition: var(--mainTransition);
  gap: 10px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card .brand-card-button:hover {
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  transform: scale(1.08);
}

.brand-card .card-image-top {
  object-fit: contain;
  aspect-ratio: 1/1;
  max-width: 200px;
  overflow: hidden;
  width: 100%;
}

/*================================ End World Brands Page ==============================*/

/*================================ Blog Card ==============================*/
.article-card {
  border: 0.0625rem solid var(--borderColor);
  transition: var(--mainTransition);
  background: var(--whiteColor);
  flex-direction: column;
  border-radius: 0.375rem;
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
}

.article-card:hover {
  border-color: var(--primaryColor);
  color: var(--textColorL1);
}

.article-badge {
  background-color: var(--primaryColor);
  border-radius: var(--borderRadius);
  padding: 0.3125rem 0.625rem;
  color: var(--whiteColor);
  font-size: 0.875rem;
  position: absolute;
  inset-inline-start: 0.5rem;
  top: 0.5rem;
}

.article-thumbnail {
  aspect-ratio: 16/9;
  max-width: 43.75rem;
  overflow: hidden;
  width: 100%;
}

.article-thumbnail img {
  object-fit: cover;
  width: 100%;
}

.article-card.new .article-thumbnail img {
  filter: saturate(50%);
}

.article-card.new:hover .article-thumbnail img {
  filter: saturate(100%);
}

.article-card .card-body {
  justify-content: space-between;
  flex-direction: column;
  display: flex;
}

.article-title {
  font-size: 1.125rem;
  transition: var(--mainTransition);
  color: var(--textColorL2);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.article-card.new .article-title {
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  padding: 0.5rem 0.75rem;
  position: absolute;
  font-weight: 500;
  z-index: 2;
  bottom: 0;
  margin: 0;
}

.article-card.new:hover .article-title {
  color: var(--secondColor);
}

.article-card:hover .article-title {
  color: var(--textColorL4);
}

.article-card p {
  color: var(--textColorL6);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 0.915rem;
  overflow: hidden;
  width: 100%;
}

.article-card-bottom {
  justify-content: space-between;
  display: flex;
  border-top: 1px solid var(--borderColor);
  padding-top: 10px;
}

.published-date {
  color: var(--grayTextColor);
  font-size: 0.825rem;
  font-weight: 400;
}

.article-card-bottom .read-more {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  font-weight: 500;
  opacity: 0.7;
}

.article-card-bottom .read-more:hover {
  opacity: 1;
}

.blog-sidebar .title {
  margin-bottom: 0.75rem;
  line-height: 2;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--darkBack);
  text-shadow: var(--textShadow);
  position: relative;
}

.blog-sidebar .title::after {
  content: "";
  width: 35%;
  height: 0.15rem;
  background-color: var(--primaryColor);
  display: block;
}

.blog-sidebar .search-box {
  padding: 0.625rem;
}

.blog-categories ul {
  gap: 0.125rem;
}

.blog-categories a {
  color: var(--textColorL2);
  font-size: 0.9375rem;
  font-weight: 500;
}

.blog-categories a:hover {
  color: var(--primaryColor);
}

.popular-articles-section {
  position: sticky;
  top: calc(var(--headerHeight) + 16px);
}

.sidebar-articles-list {
  list-style: none;
}

.sidebar-article-item {
  border-bottom: 0.0625rem solid var(--borderColor);
  padding-block: 0.75rem;
}

.sidebar-article-item > a {
  align-items: start;
  justify-content: center;
  display: flex;
  gap: 1rem;
}

.sidebar-article-item figure {
  border-radius: var(--borderRadius);
  aspect-ratio: 1/1;
  width: 4.375rem;
}

.sidebar-article-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-article-textual-content {
  justify-content: center;
  flex-direction: column;
  display: flex;
  gap: 0.625rem;
  flex: 1;
}

.sidebar-article-textual-content .sidebar-article-title {
  color: var(--textColorL2);
  font-size: 0.9375rem;
  font-weight: 500;
}

.sidebar-article-textual-content .sidebar-article-date {
  color: var(--textColorL3);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.sidebar-articles-list .sidebar-article-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

/*================================ Blog Single Page ==============================*/

.blog-single-page {
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.blog-single-page .category-link {
  transition: var(--baseTransition);
  color: var(--primaryColor);
  font-size: 0.875rem;
}

.blog-single-page .category-link:hover {
  color: var(--thirdColor);
}

.blog-single-page .article-title {
  font-size: var(--title-fontSize);
  text-shadow: var(--textShadow);
  color: var(--textColorL1);
  font-weight: bold;
  margin: 0;
}

.blog-single-page .article-sub-title {
  font-size: var(--sub-title-fontSize);
  color: var(--textColorL2);
  font-weight: 600;
  margin: 0;
}

.blog-single-page .article-thumbnail {
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
  max-width: 100%;
  flex: 1;
}

.blog-single-page .article-thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.blog-single-page img {
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  margin-bottom: 0.5rem;
  max-width: 100%;
  width: 100%;
}

.blog-single-page p {
  color: var(--textColorL3);
  font-size: 0.9375rem;
}

.blog-single-page ul,
.blog-single-page ol {
  padding-inline-start: 1.125rem;
}

.share-article {
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.share-article .title {
  color: var(--textColorL2);
  font-size: 0.8375rem;
  font-weight: 500;
}

.share-article .social-medias-list .social-link {
  color: var(--secondColor);
  font-size: 1.125rem;
  padding: 0.125rem;
}

.card {
  border-radius: var(--borderRadius);
  border-color: var(--borderColor);
  padding: 0.625rem;
}

@keyframes slideInTop {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*================================ Products Page ==============================*/
/*================================ Circle ==============================*/
.circle-sec {
  border-radius: var(--borderRadius);
  color: var(--lightTextColor);
  padding-block: 2rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.paralex-back {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
}

.paralex-back::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  inset: 0;
  margin: auto;
  backdrop-filter: brightness(0.5) blur(2px);
}

.circle-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
}

.circle-text {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-weight: bold;
  font-size: 1.2rem;
}

.circle-sec p {
  color: var(--whiteColor);
}

.circle-svg circle {
  fill: none;
  stroke: red;
  stroke-width: 8;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 2s ease;
}

.circle-svg.animate circle {
  stroke-dashoffset: 0;
}

.circle-title {
  margin: auto;
  font-size: 2rem;
  font-weight: 300;
}

/* =============================================== End Circle ====================================== */
.products-page-header {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  background-color: #fff;
  padding: 0.5rem;
}

.products-page-header input,
.products-page-header select,
.products-page-header button {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  padding-block: 0.625rem;
  line-height: 1.25rem;
  height: 2.5rem;
}

.products-page-header .default-button {
  background-color: transparent;
  color: var(--textColorL2);
}

.products-page-header .default-button:hover {
  color: var(--primaryColor);
}

.products-page-header .select-container:hover select {
  border-color: var(--primaryColor) !important;
}

.sort-section {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}

.sort-section .sort-section-title {
  color: var(--textColorL2);
  align-items: center;
  font-size: 13px;
  display: flex;
  gap: 0.25rem;
}

/*================================ Product Single Page ==============================*/

/*================================ Product Slider ==============================*/

.product-slider-next,
.product-slider-prev {
  color: var(--primaryColor);
  padding: 1rem;
}

.product-image-slider {
  box-shadow: none;
  display: flex;
}

.product-image-slider .swiper-slide {
  aspect-ratio: 1/1;
  width: 100%;
}

.product-image-slider img {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  object-position: center center;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.product-slider-thumbnail {
  margin-top: 0.5rem;
  width: 100%;
}

.product-slider-thumbnail .swiper-wrapper .swiper-slide {
  width: fit-content !important;
}

.product-slider-thumbnail .swiper-slide img {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--baseTransition);
  box-shadow: var(--boxShadow);
  max-height: 85px;
  opacity: 0.6;
}

.product-slider-thumbnail .swiper-slide:hover img {
  opacity: 0.8;
}

.product-slider-thumbnail .swiper-slide-thumb-active img {
  opacity: 1;
}

.product-info {
  flex-direction: column;
  display: flex;
}

.product-info .product-title {
  font-size: clamp(1.25rem, 2vw, 2rem);
  color: var(--textColorL1);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.product-info p {
  color: var(--textColorL3);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--borderColor);
  font-size: 1rem;
}

.product-info .product-colors-box {
  justify-content: start;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--borderColor);
}

.product-info .product-colors-box .product-colors-title {
  color: var(--textColorL1);
  font-weight: bold;
  font-size: 1rem;
}

.product-info .product-colors-box .product-color-item {
  padding: 3px;
  height: 35px;
  width: 35px;
}

.product-info .product-add-cart-box {
  gap: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.product-info .product-price {
  color: var(--secondColor);
  font-weight: 600;
  font-size: 1rem;
}

.product-info .product-price .price-value {
  text-shadow: var(--textShadow);
}

.product-info .product-price .price-value small {
  font-size: 1.25rem;
}

.product-info .product-price .price-unit {
  font-size: clamp(0.875rem, 1.1vw, 1.25rem);
  color: var(--textColorL3);
  font-weight: 600;
}

.product-quantity-inputs {
  align-items: center;
  display: flex;
}

.product-quantity-inputs input[type="number"] {
  border: 0.0625rem solid var(--primaryColor);
  transition: var(--baseTransition);
  color: var(--textColorL3);
  background: transparent;
  font-size: 0.8125rem;
  border-inline: none;
  text-align: center;
  border-radius: 0;
  font-weight: 600;
  height: 35px;
  width: 70px;
}

.product-quantity-inputs input[type="number"]:hover,
.product-quantity-inputs input[type="number"]:focus {
  box-shadow: none;
}

.product-quantity-inputs button {
  border: 0.0625rem solid var(--primaryColor);
  transition: var(--baseTransition);
  color: var(--textColorL3);
  background: transparent;
  padding-inline: 0.75rem;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  height: 35px;
}

.product-quantity-inputs button:hover,
.product-quantity-inputs button:focus {
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
}

.product-quantity-inputs .minus {
  border-radius: 0 var(--borderRadius) var(--borderRadius) 0;
}

.product-quantity-inputs .plus {
  border-radius: var(--borderRadius) 0 0 var(--borderRadius);
}

.products-buttons-list {
  border-top: 1px dashed var(--borderColor);
  align-items: start;
  padding-top: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
}

.btn-add-to-cart {
  all: unset;
  border-radius: var(--borderRadius);
  background: var(--thirdColor);
  box-shadow: var(--boxShadow);
  justify-content: center;
  position: relative;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  border: none;
}

.btn-add-to-cart:after {
  transition: var(--baseTransition);
  background: var(--primaryColor);
  position: absolute;
  height: 100%;
  content: "";
  width: 0%;
  inset-inline-start: 0;
}

.btn-add-to-cart:hover::after {
  width: 100%;
  inset-inline-start: auto;
  inset-inline-end: 0;
}

.btn-add-to-cart span {
  transition: var(--baseTransition);
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  padding: 0.375rem 1.25rem;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
  height: 45px;
  z-index: 20;
  width: 100%;
}

.btn-add-to-cart:hover span {
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.product-details-section {
  padding-block: 2rem;
}

.product-details-section .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  transition: var(--baseTransition);
  background-color: transparent;
  color: var(--textColorL2);
  justify-content: center;
  align-items: center;
  font-weight: 500;
  opacity: 0.75;
  display: flex;
  margin: 0;
}

.product-details-section .nav-tabs .nav-link:hover {
  opacity: 1;
}

.product-details-section .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--primaryColor);
  text-shadow: var(--textShadow);
  color: var(--thirdColor);
  opacity: 1;
}

.product-details-section .nav-tabs .nav-link.active span {
  color: var(--thirdColor);
  opacity: 1;
}

.product-details-section .tab-pane {
  padding-block: 1rem;
}

.product-features-table th {
  color: var(--textColorL3);
  font-weight: 500;
}

.product-features-table td {
  color: var(--textColorL1);
}

.product-features-table tr:nth-of-type(odd) {
  background-color: rgb(245, 245, 245);
}

.product-features-table tr:nth-of-type(even) {
  background-color: rgb(250, 250, 250);
}

#productDescriptionPanel .title {
  font-size: clamp(1.0625rem, 1.375vw, 1.25rem);
  text-shadow: var(--textShadow);
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

#productDescriptionPanel p {
  font-size: clamp(15px, 1.1vw, 1rem);
  color: var(--textColorL3);
  font-weight: 500;
}

#productDescriptionPanel p strong {
  color: var(--thirdColor);
}

.nested-comments {
  border-inline-start: 0.125rem solid var(--secondColor);
  padding-inline-start: 1rem;
  border-radius: 0;
}

/*================================ BlowUoLens Library ==============================*/

#BlowupLens {
  min-width: 0;
  min-height: 0;
  animation: none;
  border: none;
  float: none;
  margin: 0;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  text-indent: 0;
  transform: none;
  transition: none;
}

#BlowupLens {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  /* Multiple box shadows to achieve the glass lens effect */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  cursor: none;
  display: none;
  z-index: 99;
}

#BlowupLens.loading {
  background: #333 !important;
  opacity: 0.8;
}

#BlowupLens.loading:after {
  /* Loading text */
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  width: 100%;
  color: #fff;
  content: "Loading...";
  font: italic normal 16px/1 Calibri, sans-serif;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

@media (max-width: 768px) {
  .zoom-box {
    width: 240px !important;
    height: 240px !important;
  }
}

@media (max-width: 548px) {
  .zoom-box {
    width: 60% !important;
    height: auto !important;
    aspect-ratio: 1/1;
  }
}

/*================================ Project List ==============================*/

.project-card {
  flex-direction: column;
  align-items: start;
  cursor: pointer;
  display: flex;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--borderColor);
  width: 100%;
  gap: 0.5rem;
}

.project-card:hover {
  box-shadow: var(--boxShadowHover);
}

.project-card-thumbnail {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
}

.project-card:hover .project-card-thumbnail {
  box-shadow: var(--boxShadowHover);
  border-color: var(--primaryColor);
  filter: brightness(0.75);
}

.project-card-title {
  color: var(--primaryColor);
  text-shadow: var(--textShadow);
  font-size: 1.25rem;
  margin: 0;
}

.project-card-description {
  color: var(--textColorL3);
  margin: 0;
}

.project-card-link {
  color: var(--primaryColor);
  align-items: baseline;
  align-self: flex-end;
  font-size: 13px;
  display: flex;
  gap: 0.25rem;
  margin: 0;
}

/*============================ END OF Main Styles ============================*/

/**========================================================================
 *                              Footer Section
 *========================================================================**/
footer {
  color: var(--whiteColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-bg-image {
  filter: brightness(0.3) blur(2px);
  pointer-events: none;
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  margin: auto;
  z-index: -1;
  inset: 0;
}

footer p {
  color: var(--whiteColor);
  margin: 0;
}

footer .footer-top {
  border-top: 1px solid #3c3c3c;
}

footer .footer-top .container > .row {
  padding: 0 20px;
}

footer .footer-top .footer-widget .footer-heading {
  color: var(--whiteColor);
  text-transform: uppercase;
  padding-bottom: 7px;
  margin-bottom: 18px;
  position: relative;
  font-weight: 500;
  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(--whiteColor);
  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: 16px;
}
footer .footer-top .footer-widget {
  flex-direction: column;
  display: flex;
  height: 100%;
}
footer .footer-top .footer-widget .footer-links.oversize {
  padding-inline-end: 0.5rem;
  flex-direction: column;
  max-height: 270px;
  overflow-y: auto;
  direction: ltr;
  display: flex;
  flex: 1;
}
footer .footer-top .footer-widget .footer-links.oversize .footer-link {
  direction: rtl;
}
footer .footer-top .footer-widget .footer-links.oversize::-webkit-scrollbar {
  width: 0.125rem;
}
footer .footer-top .footer-widget .footer-links .footer-link a {
  transition: var(--mainTransition);
  color: var(--whiteColor);
  display: inline-block;
  word-break: break-all;
  position: relative;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
  direction: rtl;
  opacity: 0.5;
  padding: 0;
}

footer .footer-top .footer-widget .footer-links .footer-link a:hover {
  color: var(--primaryColor);
  opacity: 1;
}

footer .footer-top .footer-contact .footer-widget .footer-links li:first-child {
  align-items: self-start;
}

footer .footer-top .footer-contact .footer-widget .footer-links li p {
  font-weight: 300;
  opacity: 0.5;
}

footer .footer-top .footer-contact .footer-widget .footer-links a {
  text-transform: unset;
}

footer .footer-top .footer-contact .footer-widget .footer-links li a,
footer .footer-top .footer-contact .footer-widget .footer-links li p {
  font-size: 18px;
  opacity: 0.9;
}

footer .footer-top .footer-contact .footer-widget .footer-links .footer-link span {
  flex: 0 0 auto;
  font-size: 18px;
  width: 35px;
  display: flex;
}

footer .footer-top .footer-social {
  margin-bottom: 0;
}

footer .footer-top .footer-social ul {
  flex-wrap: wrap;
  display: flex;
}

footer .footer-top .footer-social .footer-widget .footer-links .footer-link {
  padding-inline-end: 5px;
}

footer .footer-top .footer-social .footer-widget .footer-links .footer-link:not(:last-child) {
  margin-bottom: 0;
}

footer .footer-top .footer-social .footer-widget .footer-links .footer-link a {
  text-transform: capitalize;
  align-items: center;
  font-size: 15px;
  display: flex;
}

footer .footer-top .footer-social .footer-widget .footer-links .footer-link a i {
  font-size: 25px;
  margin-inline-end: 10px;
}

.footer-news-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  flex-direction: column;
  max-width: 990px;
  margin: 0 auto;
}

.footer-news-stitle {
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--whiteColor);
  font-size: 50px;
  text-transform: uppercase;
  z-index: 1;
}

.footer-news-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--whiteColor);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
  z-index: 1;
}

.footer-news-desc {
  max-width: 66%;
  font-size: 14px;
  line-height: 28px;
  padding: 0;
  color: var(--whiteColor);
  margin-bottom: 20px;
  opacity: 0.5;
  letter-spacing: 0;
  font-weight: 300;
}

.subscribe-form {
  position: relative;
  width: 100%;
}

.subscribe-form .email {
  margin-bottom: 30px;
  padding: 5px 15px;
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  height: 40px;
  color: var(--whiteColor);
  font-size: 14px;
  max-width: 500px;
  border: 0;
  border: 1px solid #6a6a6a;
  background: transparent;
  border-radius: 0;
  text-align: center;
  letter-spacing: 0;
  opacity: 0.5;
}

.subscribe-form .email::-webkit-input-placeholder {
  color: var(--whiteColor);
}

.subscribe-form .email::-moz-placeholder {
  color: var(--whiteColor);
}

.subscribe-form .email:-ms-input-placeholder {
  color: var(--whiteColor);
}

.subscribe-form .email::-ms-input-placeholder {
  color: var(--whiteColor);
}

.subscribe-form .email::placeholder {
  color: var(--whiteColor);
}

.subscribe-form .email:focus {
  border-color: var(--borderColor);
  border-radius: 0;
}

.subscribe-form .button {
  font-size: 18px;
  border: 0;
  height: 50px;
  width: 300px;
  flex: 0 0 auto;
  line-height: 50px;
  text-align: center;
  font-weight: 500;
  min-width: 300px;
  text-transform: uppercase;
}

div#ec_news_signup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-contact {
  margin-bottom: 30px;
}

.svg_img.foo_svg {
  height: 25px;
  fill: var(--whiteColor);
  width: auto;
  opacity: 0.5;
}

.foo-location .svg_img.foo_svg {
  margin-top: 3px;
}

.foo-call .svg_img.foo_svg {
  height: 24px;
}

.foo-mail .svg_img.foo_svg {
  height: 20px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #3c3c3c;
}

.footer-bottom .copy {
  color: var(--whiteColor);
  font-size: 13px;
  text-align: center;
  opacity: 0.5;
  font-weight: 300;
}

.footer-bottom .copy a {
  color: var(--whiteColor);
  margin: 0 5px;
}

.footer-bottom .copy .site-name:hover {
  color: var(--primaryColor);
}

.footer-bottom-payment {
  margin-bottom: 15px;
}

.heading-res {
  display: none;
}

.section-space-footer-p {
  padding: 40px 0;
}

/*============================ 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 {
  border: none;
  border-bottom: 0.0625rem solid var(--borderColor);
  padding: 0.625rem 0.625rem 0.625rem 2.1875rem;
  background-color: transparent;
  color: var(--lightTextColor);
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: bolder;
  line-height: 1.5;
  border-radius: 0;
  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;
}

.search-box {
  position: relative;
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: solid 0.0625rem var(--borderColor);
}

.search-box input {
  width: 100%;
  border-radius: var(--borderRadius);
  border: 0.0625rem solid var(--borderColor);
  transition: var(--mainTransition);
  padding: 0.5rem;
}

.search-box input:hover,
.search-box input:focus {
  border-color: var(--primaryColor);
  box-shadow: none;
  outline: none;
}

.search-box button {
  all: unset;
  position: absolute;
  inset: 0 auto 0 1.25rem;
  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);
}

.mobile-menu-contact-info {
  border-top: 1px solid var(--primaryColor);
  flex-direction: column;
  font-size: 0.875rem;
  display: flex;
  padding: 1rem;
  gap: 1rem;
}

.mobile-menu-contact-info .mobile-menu-contact-heading {
  color: var(--primaryColor);
  font-weight: 500;
  font-size: 1rem;
}
.mobile-menu-contact-item {
  justify-content: start;
  align-items: start;
  display: flex;
  gap: 0.5rem;
}
.mobile-menu-contact-info i {
  color: var(--primaryColor);
  line-height: 1.25;
  font-size: 1rem;
}

.mobile-menu-contact-title {
  color: var(--textColorL2);
  font-size: 1rem;
  display: block;
}

.mobile-menu-contact-info a {
  color: var(--primaryColor);
  text-decoration: none;
  display: block;
}

.mobile-menu-contact-info a:hover {
  text-decoration: underline;
}

/*================================ 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(--baseTransition);
  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(--baseTransition);
  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(--baseTransition);
  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;
  }

  .counter-section {
    margin-top: 0;
    height: 100%;
  }

  .about-img {
    max-width: 31.25rem;
  }

  .section-image {
    min-height: 250px;
  }

  .counseling-title-box {
    justify-content: center;
  }

  .counseling-banner p {
    text-align: center;
  }

  .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-top .footer-social ul {
    margin-top: 15px;
  }

  footer .footer-top .footer-widget .s-head {
    display: block;
  }
}

/*================================ Tablet ==============================*/

@media (max-width: 767px) {
  :root {
    --headerHeight: 70px;
  }
  .company-description .section-title {
    text-align: center;
    margin: 0;
  }

  .company-description .section-thumbnail {
    max-width: 25rem;
    margin: 0 auto;
  }
  .breadcrumb {
    max-height: fit-content;
    aspect-ratio: unset;
    flex-wrap: wrap;
    padding: 2rem 0;
  }
  .breadcrumb .breadcrumb-title {
    text-align: center;
  }
}

/*================================ Phone ==============================*/

@media (max-width: 575px) {
  header .container {
    padding-inline: 0.5rem;
  }

  .style-lang-sm {
    width: 20px;
    margin-top: 11px;
  }

  .dis-sm-none {
    display: none;
  }

  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;
  }

  .header-logo {
    max-height: 80px;
  }

  .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;
  }

  #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;
  }
}

.space-one {
  width: unset !important;
  padding: 0 7px;
}

.categoryMenu a {
  color: black !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  gap: 0 !important;
}
