/**========================================================================
 *                               Base Styles
 *========================================================================**/
/*================================ Fonts Face ==============================*/

@font-face {
  font-family: "Nautigal";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/TheNautigal-Regular.woff") format("woff");
}

@font-face {
  font-family: "Nautigal";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/TheNautigal-Regular.woff2") format("woff2");
}

/* @font-face {
  font-family: "Karla";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Karla-Regular.woff") format("woff");
}

@font-face {
  font-family: "Karla";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Karla-Regular.woff2") format("woff2");
} */
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/RobotoCondensed-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/RobotoCondensed-Regular.woff") format("woff");
}

/*================================  Css Variable ==============================*/

:root {
  --headerHeight: 150px;
  /*--------------------- Main Colors ---------------------*/
  --primaryColor: #5b775e;
  --secondColor: #4760b8ee;
  /*----------------- BackGround Colors --------------------*/
  --grayBack: #f8f8f8;
  --darkBack: #212121;
  --whiteColor: #ffffff;
  /*---------------------- Text Colors ---------------------*/
  --lightTextColor: #fff;
  --grayTextColor: #7d7d7d;
  --textColorL1: #21252b;
  --textColorL2: #353535;
  --textColorL3: #656565;
  --greenColor: #5b775e;
  /*---------------------- 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: "Roboto";
  /*--------------------- Text Shadow ---------------------*/
  --textShadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

/*================================ Basic Style ==============================*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  scroll-behavior: smooth;
}

body {
  font-family: var(--baseFont);
  color: var(--textColorL1);
  font-weight: 400;
  line-height: 1.75;
  direction: ltr;
}

body.modal-open,
.modal {
  padding: 0 !important;
}

i {
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  color: var(--grayTextColor);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

p a {
  color: var(--primaryColor);
  font-weight: 500;
}

p a:hover {
  color: var(--textColorL2);
}

a {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  text-decoration: none;
}

a:hover {
  color: var(--primaryColor);
}

/*=================================  Basic Class ===============================*/

.flex {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.flex-column {
  flex-direction: column;
  display: flex;
}

.img-fluid {
  max-height: 100%;
}

.row {
  flex: 1;
}

/*================================  Colors ==============================*/

.bg-gray {
  background-color: var(--grayBack);
}

.bg-primary {
  background-color: var(--primaryColor) !important;
}

.bg-secondary {
  background-color: var(--secondColor) !important;
}

.bg-gradient {
  background: linear-gradient(-45deg, #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);
  inset: 0.25rem 0 auto auto;
  justify-content: center;
  font-size: 0.625rem;
  align-items: center;
  position: absolute;
  aspect-ratio: 1/1;
  font-weight: 900;
  content: "\f111";
  color: #ffbf00;
  line-height: 1;
  display: flex;
  margin: auto;
  width: 1.25rem;
}

.base-list li {
  color: var(--textColorL3);
  padding-inline-start: 1.5625rem;
  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: #e8edf0;
  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: 220px;
  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;
}

/*================================ Social Medias ==============================*/

.social-medias-list {
  list-style: none;
  gap: 0.625rem;
  display: flex;
}

.social-medias-list .social-link {
  transition: var(--mainTransition);
  color: var(--whiteColor);
  align-items: center;
  font-size: 1.25rem;
  padding: 0.1875rem;
  line-height: 0;
  display: flex;
  opacity: 0.7;
}

.social-medias-list .social-link:hover {
  opacity: 1;
}

ul {
  list-style-type: none;
}
/*================================ 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 {
  inset-inline-start: 0;
  align-items: center;
  background: #fff;
  position: fixed;
  display: flex;
  z-index: 100;
  width: 100%;
  top: 0;
}
header.scrolled {
  top: -41px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.header-top-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top-side a {
  font-size: clamp(12px, 1.125vw, 16px);
}
.header-top h5 {
  font-weight: 900;
}

.header-top span {
  font-size: 20px;
  font-weight: 900;
}

.header-bottom-side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 28px;
  overflow: hidden;
}
.header-logo {
  padding: 0 40px 0 0;
  margin-inline-end: 10px;
  flex: 0 0 auto;
  min-width: 120px;
}
.header-bottom-side > nav > ul {
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.navigation-item {
  .navigation-item {
    flex-shrink: 1;
    min-width: 0;
  }
}
.navigation-item a {
  padding-inline-start: 15px;
  font-size: 16px;
  color: #222;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  font-variation-settings: "wght" 500;
  overflow: hidden;
  white-space: nowrap;
}
.navigation-item a:hover {
  color: #15721e;
}
nav.navbar {
  overflow: hidden;
}
.header-icons {
  margin: 0 70px;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
}
.header-icons .custom-icon {
  font-size: 24px;
  padding: 0 15px;
}

/* Slide-in menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  inset-inline-start: -280px;
  width: 260px;
  height: 100vh;
  background: white;
  z-index: 1050;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: inset-inline-start 0.3s ease, opacity 0.3s ease;
}

.mobile-slide-menu.active {
  inset-inline-start: 0;
  opacity: 1;
  pointer-events: auto;
}

.mobile-slide-menu .close-btn {
  font-size: 1.8rem;
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  text-align: start;
}

@media (min-width: 992px) {
  .mobile-slide-menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-logo,
  .header-icons,
  .navbar {
    display: none !important;
  }

  .header-bottom-side {
    background-color: #fff;
    border-top: 1px solid #ddd;
  }

  .mobile-toggle {
    font-size: 1.5rem;
    color: #333;
  }
  .mobile-logo {
    margin-inline-start: 90px;
  }
  .mobile-logo span {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .mobile-logo .small {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .mobile-bottom-nav {
    display: none !important;
  }
}

.mobile-menu-logo span {
  font-size: 20px;
  letter-spacing: 2px;
}

.mobile-menu-logo .small {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
}

.mobile-slide-menu ul.navbar-nav {
  align-items: center;
  padding-inline-start: 0 !important;
}

.mobile-slide-menu .nav-link {
  font-size: 16px;
  padding: 10px 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .navigation-item a {
    padding-inline-start: 8px;
    font-size: 14px;
  }

  .header-icons {
    margin: 0 20px;
  }
}

/* ============================== Main Section ============================== */
main {
  padding-top: var(--headerHeight);
  padding-bottom: 1.75rem;
  flex-direction: column;
  display: flex;
  gap: 1.75rem;
  background-color: #ffffff;
}

.card-category {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: start;
}

.card-category > img {
  transition: var(--mainTransition);
  object-fit: cover;
  aspect-ratio: 2/1;
  width: 100%;
  overflow: hidden;
}

.hero-section {
  padding-top: 40px;
}

.card-category:hover {
  background-color: #4d4d4d;
}

.middle-section {
  margin-top: 30px;
}

.image-hover-container {
  position: relative;
  overflow: hidden;
  display: block;
}

.image-hover-container .overlay {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(104, 102, 102, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

.image-hover-container:hover .overlay {
  opacity: 1;
  overflow: hidden;
}

/* ============================== Middle Section ============================== */
.middle-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.middle-title {
  padding-top: 20px;
  font-family: "Nautigal";
  font-size: 42px;
  line-height: 50px;
}

.middle-text {
  text-align: center;
  color: var(--greenColor);
  font-size: 1.75rem;
  font-weight: 900;
}

/* ============================== Product Section ============================== */
.product-section {
  margin-bottom: 40px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  height: 94%;
  justify-content: space-between;
}
.product-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  aspect-ratio: 2/3;
}

.image-link {
  display: block;
  overflow: hidden;
}
.product-card:hover .product-image {
  transform: scale(1.026);
}
.product-card-body {
  padding: 20px;
  font-weight: bold;
  text-align: center;
  width: 280px;
}
.product-card-body h6 {
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 900;
  color: #000000;
}
.product-card-body span {
  font-size: 14px;
}
.product-card-price {
  position: relative;
  overflow: hidden;
  height: 60px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}

.hover-button {
  width: 100%;
  position: absolute;
  bottom: -100%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  transition: bottom 0.1s ease-in-out;
  z-index: 2;
}

.product-card:hover .hover-button {
  bottom: 0;
}

.product-card:hover .price {
  opacity: 0.2;
}

.product-card-body .btn-primary {
  background-color: var(--greenColor);
  color: var(--whiteColor);
  border-radius: 0;
  border: none;
}

/* ============================= Footer ============================ */

.footer-heading {
  color: #2b6432;
}
.border-start {
  border-inline-start: 1px solid #e9e9e9;
}
.footer-bottom-copy {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #d8d8d8;
}

/*================================  Page Title section ==============================*/
.page-title-title {
  padding: 30px 0;
}
.page-title-text {
  text-align: center;
  color: var(--greenColor);
}
/*================================ Product Detail Page ==============================*/
.product-detail-card {
  display: flex;
  flex-direction: row;
}

.product-detail-image {
  margin-bottom: 30px;
  max-height: 600px;
  object-fit: cover;
  width: 80%;
  display: flex;
  cursor: pointer;
  margin-inline-start: auto;
  margin-inline-end: auto;
  box-shadow: var(--boxShadow);
  border: 1px solid #868686;
}
.product-image-gallery {
  margin-inline-start: 25px;
}
.product-gallery-images {
  object-fit: cover;
  height: 150px;
  width: 120px;
  margin-inline-end: 0;
  border: 1px solid #868686;
}

.product-detail-title {
  font-size: 2.5rem;
}
.product-detail-text {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #222;
}
.product-detail-price {
  margin-top: 30px;
}
.product-detail-price > p {
  font-size: 2.2rem;
  color: #222;
}
.product-detail-select {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
}
.form-select {
  width: 80px;
  border-radius: 0;
  border: 0.5px solid #b1b1b1;
  cursor: pointer;
}

.btn-buy {
  all: unset;
  width: 130px;
  height: 48px;
  margin-inline-start: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 1rem;
  background-color: var(--greenColor);
  color: var(--whiteColor);
  cursor: pointer;
}
.btn-buy:hover {
  background-color: #435745;
  color: var(--whiteColor);
}
.btn-whatsapp {
  background-color: var(--greenColor);
  color: var(--whiteColor);
}
.btn-whatsapp:hover {
  background-color: #435745;
  color: var(--whiteColor);
}

/* ================================ Line Section================================= */
.line-hr {
  color: #8b8b8b;
  margin: 70px 0;
}
/* =============================== Similar Product Section ====================== */
.similar-product-title {
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

/*================================  Bredcrumb section ==============================*/
.breadcrumb-links {
  border-top: 1px solid #eeecec;
  padding-top: 20px;
  color: #8b8b8b;
}

/*================================  Login Page ==============================*/
.login-section {
  margin: 10px 0 40px 0;
}
.login-section-icon {
  font-size: 60px;
  color: #8b8b8b;
}
.login-section-title {
  color: var(--textColorL3);
}
.login-section-input input {
  width: 373px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 3px;
  border-radius: 0;
}
.login-section-button .btn {
  background-color: var(--greenColor);
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  height: 50px;
  width: 373px;
  color: var(--whiteColor);
  border-radius: 0;
}
.login-section-button .btn:hover {
  background-color: #435745;
}

/*================================ Shopping Bag Page ==============================*/
.shopping-table {
  font-size: 17px;
}
.order-summary {
  background-color: #f8f9fa;
  padding: 1rem;
  border: 1px solid #fffdfd;
  border-radius: 0.5rem;
}
.order-summary p {
  font-size: 17px;
  color: #8b8b8b;
}
.complete-btn {
  background-color: var(--greenColor, #4c6b57);
  color: white;
  height: 53px;
}
.complete-btn:hover {
  color: var(--whiteColor);
  background-color: #1d3a20;
}
.product-img {
  width: 53px;
  max-height: 80px;
  height: auto;
  flex-shrink: 0;
}
.delete-btn {
  cursor: pointer;
  color: red;
  font-size: 1.2rem;
}
.table-responsive {
  overflow-x: auto;
}
.select-qty {
  width: 50px;
  padding-inline-end: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}
table.table {
  border-color: #ddd !important;
  border-width: 1px;
}

.table th,
.table td {
  border-bottom: 1px solid #e0e0e0;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #e0e0e0;
}

/*================================ 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);
}

/* ============================== Articles page ============================= */

.articles-section-heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
}

.article-card {
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease;
  background-color: #fff;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #c0c0c0;
}

.article-card img.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.article-card img.card-img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.article-card .card-body {
  padding: 25px;
}

.article-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.article-tags .badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3em 0.6em;
  margin-right: 5px;
  background-color: #f0f0f0;
  color: #555;
  border: 1px solid #ddd;
}
.article-tags .badge:hover {
  background-color: #e0e0e0;
}

.article-card .btn-primary {
  background-color: var(--greenColor);
  border-color: var(--greenColor);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.article-card .btn-primary:hover {
  background-color: var(--greenColor);
  border-color: var(--greenColor);
}
.article-card .btn-primary i {
  margin-left: 5px;
  transition: transform 0.2s ease-out;
}
.article-card .btn-primary:hover i {
  transform: translateX(3px);
}

/* Featured Article Specific Styling */
.featured-article {
  border-left: 5px solid var(--greenColor);
  background-color: #fdf6f9;
}
.featured-article .card-title {
  font-size: 1.8rem;
}
.featured-article .badge-primary {
  background-color: var(--greenColor);
  color: white;
  font-size: 0.8rem;
}

/* Sidebar Styling */
.sidebar .sidebar-widget {
  margin-bottom: 2rem;
}
.sidebar .sidebar-widget h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--greenColor);
  display: inline-block;
}

/* Search Form in Sidebar */
.search-form .form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}
.search-form .btn-sm {
  padding: 0.25rem 0.6rem;
}
.search-form .btn-outline-primary {
  border-color: var(--greenColor);
  color: var(--greenColor);
}
.search-form .btn-outline-primary:hover {
  background-color: #4c6b57;
  color: white;
}

/* Category List Style */
.category-list .list-group-item {
  border: none;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed #eee;
}
.category-list .list-group-item:last-child {
  border-bottom: none;
}
.category-list .list-group-item a {
  color: #454545;
  text-decoration: none;
  transition: color 0.2s ease;
}
.category-list .list-group-item a:hover {
  color: var(--greenColor);
}
.category-list .list-group-item i {
  color: #aaa;
  transition: color 0.2s ease;
}
.category-list .list-group-item a:hover i {
  color: var(--greenColor);
}
.category-list .list-group-item .badge {
  background-color: #e9ecef;
  color: #495057;
  font-weight: 500;
}

/* Recent Posts List Style */
.recent-posts-list .list-group-item {
  border: none;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #eee;
}
.recent-posts-list .list-group-item:last-child {
  border-bottom: none;
}
.recent-posts-list .list-group-item a {
  color: #454545;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.recent-posts-list .list-group-item a:hover {
  color: var(--greenColor);
}
.recent-post-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.pagination .page-item .page-link {
  color: #4c6b57;
}
.pagination .page-item.active .page-link {
  background-color: var(--greenColor);
  border-color: var(--greenColor);
  color: white;
}

/* Load More" Button Style*/
#loadMoreArticles {
  border-color: var(--greenColor);
  color: var(--greenColor);
  padding: 10px 30px;
  font-weight: 500;
}
#loadMoreArticles:hover {
  background-color: #1d3a20;
  color: white;
}

/* =============================== Single Article Page ==================== */

.article-main-header .article-title {
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.article-meta-info {
  font-size: 0.9rem;
  color: #6c757d;
}

.article-meta-info a {
  color: var(--greenColor);
  text-decoration: none;
}

.article-meta-info a:hover {
  text-decoration: underline;
}

.article-tags-single .badge {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4em 0.7em;
  margin-right: 8px;
  margin-bottom: 5px;
  background-color: #f1f1f1;
  color: #555;
  border: 1px solid #ddd;
}
.article-tags-single .badge:hover {
  background-color: #e0e0e0;
}

/* Featured Image */
.article-featured-image img {
  max-height: 450px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

.article-featured-image figcaption {
  font-style: italic;
}

/* Article Body Typography & Elements */
.article-body-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #343a40;
}

.article-body-content p {
  margin-bottom: 1.25rem;
}

.article-body-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.5rem;
}
.article-body-content h3:first-child {
  margin-top: 1rem;
}

.article-body-content .blockquote.border-left-custom {
  border-left: 4px solid var(--greenColor);
  font-size: 1.15rem;
  font-style: italic;
  color: #555;
}

.article-body-content .blockquote.border-left-custom .blockquote-footer {
  font-size: 0.9rem;
  color: #777;
}

/* Social Sharing Section */
.social-sharing-section h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.social-sharing-section .btn-sm {
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
}
.social-sharing-section .btn i {
  margin-right: 5px;
}

/* Comments Section */
.comments-section h3,
.comments-section h4 {
  color: #333;
  font-weight: 600;
}

.comments-section .form-group label {
  font-weight: 500;
  color: #444;
}

.comments-section .comment-list .comment:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comments-section .comment-list img.rounded-circle {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.comments-section .comment-list strong {
  font-size: 1rem;
  color: #2c3e50;
}

.comments-section .comment-list p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.comments-section .comment-list .small.text-muted {
  font-size: 0.8rem;
}
.comments-section .comment-list a.small {
  color: var(--greenColor);
  text-decoration: none;
  font-weight: 500;
}
.comments-section .comment-list a.small:hover {
  text-decoration: underline;
}

.comments-section .btn-primary,
.author-bio-section .btn-outline-secondary:hover {
  background-color: var(--greenColor);
  border-color: var(--greenColor);
  color: white;
}
.comments-section .btn-primary:hover {
  background-color: #1d3a20;
  border-color: #1d3a20;
}

.sidebar .sidebar-widget h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--greenColor);
  display: inline-block;
}

/* ================================= Contact Us Page =========================== */
.muge-contact-section {
  padding: 60px 0;
  font-family: "Arial", sans-serif;
}

.muge-contact-section .muge-section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  color: var(--greenColor);
}

.muge-contact-info-left h4,
.muge-contact-form-right h4 {
  font-weight: 600;
  color: var(--greenColor); 
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  text-align: left; 
}

.muge-contact-details p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  text-align: left; 
}

.muge-contact-details i {
  color: var(--greenColor); 
  margin-right: 12px; 
  font-size: 1.2rem;
  width: 20px; 
  text-align: center;
}

.muge-insta-links .btn-muge-insta {
  background-color: var(
    --greenColor
  ); 
  border-color: var(--greenColor); 
  color: white;
  font-weight: 500;
  padding: 10px 20px;
  margin: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.muge-insta-links .btn-muge-insta:hover {
  background-color: #204423; 
  border-color: var(
    --greenColor
  ); 
  transform: translateY(-2px);
}

.muge-insta-links .btn-muge-insta i {
  margin-right: 8px;
}

.muge-social-media-links h5 {
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left; 
}

.muge-social-media-links a {
  color: #555;
  font-size: 1.8rem;
  margin-right: 18px; 
  margin-left: 0; 
  transition: color 0.3s ease, transform 0.2s ease;
}
.muge-social-media-links a:last-child {
  margin-right: 0;
}

.muge-social-media-links a:hover {
  color: #204423; 
  transform: scale(1.1);
}

.muge-contact-form-right .form-control {
  border: 1px solid #ced4da;
  padding: 12px 15px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-align: left; 
}

.muge-contact-form-right .form-control:focus {
  border-color: var(--greenColor); 
  box-shadow: 0 0 0 0.2rem rgba(2, 97, 23, 0.25); 
}

.muge-contact-form-right .form-group label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.3rem;
  display: block; 
  text-align: left; 
}

.muge-contact-form-right .btn-muge-submit-message {
  background-color: var(
    --greenColor
  ); 
  border-color: var(--greenColor);
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.muge-contact-form-right .btn-muge-submit-message:hover {
  background-color: #204423; 
  border-color: var(--greenColor);
  transform: translateY(-2px);
}

.muge-contact-form-right .form-group {
  text-align: left;
}
/* ================================= About Us Page =========================== */
.about-muge-section {
  padding: 60px 0;
  background-color: #fff; 
  font-family: "Arial", sans-serif; 
  color: #4a4a4a; 
  direction: ltr;
}

.about-muge-section .muge-section-title.display-4 {
  font-weight: 700;
  color: var(--greenColor); 
  margin-bottom: 20px;
}

.about-muge-section .lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-muge-section .section-intro p:not(.lead) {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  text-align: justify;
}

.about-muge-section .muge-subsection-title {
  font-weight: 600;
  color: var(--greenColor); 
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}


.about-muge-section .muge-subsection-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(
    --greenColor
  ); 
  opacity: 0.7;
}
.about-muge-section .muge-subsection-title.text-left::after {
  left: 0;
  transform: translateX(0);
}

.about-muge-section .our-story-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.about-muge-section .our-values-section .value-item {
  margin-bottom: 30px;
}

.about-muge-section .our-values-section .value-icon i {
  color: var(--greenColor); 
  transition: transform 0.3s ease;
}
.about-muge-section .our-values-section .value-item:hover .value-icon i {
  transform: scale(1.1);
}

.about-muge-section .our-values-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.about-muge-section .our-values-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/*  Muge Experience section */
.about-muge-section .the-muge-experience-section {
  padding: 50px 0;
}

.about-muge-section .the-muge-experience-section .muge-subsection-title {
  text-align: center;
  margin-bottom: 15px; 
}
.about-muge-section .the-muge-experience-section .muge-subsection-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-muge-section .the-muge-experience-section .lead {
  font-size: 1.1rem; 
  color: #666;
  max-width: 800px; 
  margin-left: auto;
  margin-right: auto;
}

.about-muge-section .experience-item {
  margin-bottom: 30px;
  padding: 15px;
}

.about-muge-section .experience-icon i {
  font-size: 3rem; 
  color: var(--greenColor); 
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.about-muge-section .experience-item:hover .experience-icon i {
  transform: translateY(-8px) scale(1.05);
  color: var(
    --greenColor
  ); 
}

.about-muge-section .experience-item h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.about-muge-section .experience-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.about-muge-section img.rounded,
.about-muge-section img.rounded-circle {
  border: 3px solid #f0f0f0;
}
.about-muge-section img.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.about-muge-section img.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/**========================================================================
 *                           Responsive
 *========================================================================**/
/*================================  LG Monitor ==============================*/

@media (max-width: 1200px) {
  header > .container {
    max-width: 100%;
    padding-inline: 1.5rem;
  }
}

/*================================  MD Monitor  ==============================*/

@media (max-width: 1024px) {
  .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) {
  .company-description .section-title {
    text-align: center;
    margin: 0;
  }

  .company-description .section-thumbnail {
    max-width: 25rem;
    margin: 0 auto;
  }
}

/*================================ Phone ==============================*/

@media (max-width: 575px) {
  header .container {
    padding-inline: 0.5rem;
  }

  header .container .row {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  header .container .row > * {
    padding-inline-start: 0.125rem;
    padding-inline-end: 0.125rem;
  }

  .header-contact {
    align-items: flex-end;
  }

  .header-logo {
    max-height: 40px;
    cursor: pointer;
  }

  .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;
  }
}

/*================================ 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;
  }
}
