/**========================================================================
 *                               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: 60px;
  /*--------------------- Main Colors ---------------------*/
  --primaryColor: rgb(43, 160, 218);
  --secondColor: #f3fafd;
  --thirdColor: rgb(248, 246, 242);
  --fourthColor: rgb(255, 230, 140);
  /*----------------- BackGround Colors --------------------*/
  --grayBack: #f8f8f8;
  --whiteColor: #ffffff;
  --fa-primary-color: #333;
  --fa-secondary-color: #d71a20;
  /*----------------- Mobile Navigation --------------------*/
  --mobileMenuColor: rgb(255, 255, 255);
  --mobileMenuAccordionBack: #f5f5f5;
  --mobileMenuBorderColor: rgba(0, 0, 0, 0.1);
  /*-----------------=---- Text Colors ---------------------*/
  --footerTextColor: #4c4c4c;
  --lightTextColor: #fff;
  --grayTextColor: #7b7b7b;
  --textColorL1: #21252b;
  --textColorL2: #353535;
  --textColorL3: #4b4b4b;
  /*-----------------=---- Border Colors ---------------------*/
  --borderColor: #cadfe9;
  /*-----------------=---- Border Radius ---------------------*/
  --borderRadius: 0.375rem;
  --borderRadiusLg: 1rem;
  /*--------------------- Box Shadow ---------------------*/
  --boxShadow: 0 0 8px rgba(0, 0, 0, 0.05);
  --boxShadowL2: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  --boxShadowHover: 0 0 12px rgba(214, 26, 35, 0.2);
  /*-----------------=---- Transition ---------------------*/
  --baseTransition: all ease-in-out 300ms;
  /*--------------------- Font Size ---------------------*/
  --card-title-fontSize: 1.5rem;
  --sub-title-fontSize: 1.125rem;
  /*---------------------- Fonts ---------------------*/
  --fontIcons: "Font Awesome 6 Pro";
  --baseFont: "IRANSansWeb";
  /*--------------------- Text Shadow ---------------------*/
  --textShadowL1: 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.8;
}

p a {
  color: var(--primaryColor);
  font-weight: 500;
}

p a:hover {
  color: var(--textColorL2);
}

a {
  transition: var(--baseTransition);
  color: var(--textColorL1);
  text-decoration: none;
}

a:hover {
  color: var(--primaryColor);
}
.border-bottom {
  border-color: var(--borderColor) !important;
}

/*=================================  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 {
  width: 100%;
  flex: 1;
}

/*================================  Colors ==============================*/

.bg-second {
  background-color: var(--secondColor);
}
.bg-third {
  background-color: var(--thirdColor);
}

.bg-gray {
  background-color: var(--grayBack);
}

.color {
  color: var(--primaryColor) !important;
}
/*================================  Scroll Bar ==============================*/

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
  border-radius: 0.125rem;
}

::-webkit-scrollbar-track {
  background-color: var(--grayBack);
}

/*================================ Container Style ==============================*/

.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media (min-width: 36rem) {
  .container-sm,
  .container {
    max-width: 33.75rem;
  }
}

@media (min-width: 48rem) {
  .container-md,
  .container-sm,
  .container {
    max-width: 45rem;
  }
}

@media (min-width: 64rem) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 60rem;
  }
}

@media (min-width: 75rem) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 72.5rem;
  }
}

@media (min-width: 83.75rem) {
  .container-xl,
  .container-lg,
  .container {
    max-width: 78.75rem;
  }
}

@media (min-width: 87.5rem) {
  .container-xl,
  .container-lg,
  .container {
    max-width: 83.75rem;
  }
}

/*================================ Colors ==============================*/

.bg-gray {
  background-color: var(--grayBack);
}

/*================================ Image ==============================*/

figure {
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: flex;
  margin: 0;
}

figure:has(figcaption) {
  flex-direction: column;
  gap: 1rem;
}
figure:has(figcaption) img {
  max-width: 900px;
  width: 100%;
}
figure figcaption {
  color: var(--textColorL2);
  font-size: 0.9375rem;
  line-height: 1.75;
  font-weight: 500;
}
figure img {
  max-height: 100%;
  max-width: 100%;
}

.thumbnail-zoom figure img {
  transition: var(--baseTransition);
}

.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[type="password"],
input[type="search"],
input[type="number"],
input[type="email"],
input[type="text"],
input[type="url"],
input[type="tel"],
input[type="date"],
textarea.form-control,
select.form-control,
textarea,
select {
  border: 0.06rem solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  color: var(--textColorL1);
  font-size: 0.9375rem;
  padding: 0.625rem;
  box-shadow: none;
  outline: none;
  height: 3rem;
  width: 100%;
  margin: 0;
}
.default-input {
  position: relative;
}
.default-input:has(i) input,
.default-input:has(i) input.form-control {
  padding-right: 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 {
  background-image: url(../images/arrow-down.svg);
  background-position: left 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem 1.75rem;
  padding-left: 3rem;
}

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(--baseTransition);
  color: var(--whiteColor);
  justify-content: center;
  padding: 0.5rem 1.5rem;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
  gap: 0.25rem;
}

.submit-form:hover {
  background-color: #101010;
}

/*================================ Buttons ==============================*/

.default-button {
  border-radius: var(--borderRadius);
  background-color: var(--primaryColor);
  transition: var(--baseTransition);
  color: var(--lightTextColor);
  border: 1px solid transparent;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  line-height: normal;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  gap: 0.25rem;
}
.default-button.border-button {
  border: 1px solid var(--primaryColor);
  background-color: transparent;
  color: var(--primaryColor);
}
.default-button.lg {
  max-width: 300px;
  width: 100%;
}

.default-button i {
  font-size: 17px;
}

.default-button:hover {
  background-color: var(--whiteColor);
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.default-button.border-button:hover {
  filter: contrast(1.2) brightness(0.75);
  border: 1px solid var(--primaryColor);
  background-color: transparent;
  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;
}
.default-button.light {
  background-color: var(--whiteColor);
  color: var(--textColorL1);
}

.default-button.light:hover {
  background-color: var(--secondColor);
  border-color: var(--primaryColor);
  color: var(--textColorL2);
}
/*================================ Slider ==============================*/

.carousel-section {
  position: relative;
  padding: 0 1.75rem;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
}

.swiper-button-next,
.swiper-button-prev {
  transition: var(--baseTransition);
  color: var(--textColorL1);
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  display: flex;
  width: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--primaryColor);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: 300;
}

.swiper-pagination-bullet {
  background-color: var(--primaryColor);
  opacity: 0.3;
  border-radius: var(--borderRadius);
  transition: var(--baseTransition);
  height: 0.625rem;
  width: 0.625rem;
}

.swiper-pagination-bullet-active {
  width: 1.75rem;
  opacity: 1;
}

/*================================ Default Section Title Area ==============================*/

.section-heading {
  padding-block: 2rem;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 1rem;
}
.section-heading .section-heading-title {
  color: var(--textColorL1);
  font-size: clamp(1.125rem, 3vw, 1.75rem);
  margin-bottom: 0;
  font-weight: 600;
}

.section-heading p {
  color: var(--textColorL2);
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: center;
  font-weight: 400;
  margin: 0;
}

/*================================ Card Style ==============================*/

.default-card {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--baseTransition);
  overflow: hidden;
  padding: 1rem;
}
.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;
}

/*================================ Pagination ==============================*/
.pagination {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
}
.page-item {
  justify-content: center;
  align-items: center;
  display: flex;

}
.page-link {
  border: 0.0625rem solid var(--primaryColor);
  transition: var(--baseTransition);
  background-color: transparent;
  color: var(--textColorL3);
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 0;
  display: flex;
  width: 35px;
  height: 35px;
}

.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 {
  border: 0.0625rem solid var(--primaryColor);
  color: var(--lightTextColor) !important;
  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;
  flex-direction: column;
  background-color: var(--whiteColor);
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  right: 0;
}

.header-cta {
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
  font-size: 0.875rem;
  padding: 0.375rem 0;
  align-items: center;
  display: flex;
  width: 100%;
}
.header-cta:hover {
  background-color: var(--secondColor);
  color: var(--textColorL1);
}
/*================================ Header Main Section ==============================*/

.header-main-section {
  justify-content: space-between;
  padding-block: 0.75rem;
}
.header-logo {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 0;
}
.header-logo img {
  max-height: 5.625rem;
  max-width: 9.375rem;
}

header a {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9375rem;
  font-weight: 500;
}

header a:hover {
  color: rgba(0, 0, 0, 0.8);
}

/*================================ Navigation ==============================*/

.menu-dropdown-open {
  position: relative;
  list-style: none;
}

.menu-dropdown-list {
  border: 0.0625rem solid var(--borderColor);
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius) 0 var(--borderRadius) var(--borderRadius);
  transition: var(--baseTransition);
  box-shadow: var(--boxShadowL2);
  transform: translateY(2.5rem);
  top: calc(100% + 0.75rem);
  transition-delay: 300ms;
  padding-inline: 1rem;
  visibility: hidden;
  position: absolute;
  width: 13.75rem;
  z-index: 100;
  opacity: 0;
  right: 0;
}

.menu-dropdown-open:hover > .menu-dropdown-list {
  transform: translateY(0);
  transition-delay: 100ms;
  visibility: visible;
  opacity: 1;
}

.navigation-item {
  position: relative;
  height: 100%;
}

.navigation-item::after {
  transition: var(--baseTransition);
  top: calc(100% + 0.75rem - 3px);
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
}
.navigation-item:hover::after {
  background-color: var(--primaryColor);
}

.navigation-item-title {
  color: var(--textColorL2);
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  height: 100%;
  display: flex;
  gap: 0.25rem;
  height: 100%;
}

.navigation-item:hover .navigation-item-title {
  color: var(--primaryColor);
}

.navigation-item-title i {
  font-size: 1rem;
}

.navigation-item-title .fa-chevron-down {
  scale: 0.8;
}

.navigation-item ul li {
  padding: 0.625rem 1.5rem 0.625rem 0.25rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--borderColor);
}
.navigation-item ul li:last-child {
  border-bottom: none;
}

.navigation-item ul li::before {
  position: absolute;
  inset: 1.125rem 0.5rem auto auto;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background-color: var(--textColorL1);
  margin-left: 10px;
  transform: rotate(0);
  transition: var(--baseTransition);
}
.navigation-item ul li:hover:before {
  transform: rotate(45deg);
  background-color: var(--primaryColor);
}

.navigation-item-link {
  justify-content: space-between;
  font-size: 0.9375rem;
  align-items: center;
  display: flex;
}

header .navigation-item-title .fa {
  line-height: 1.75rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.products-navigation-dropdown {
  inset: calc(var(--headerHeight) + 20px) 0 auto 0;
  height: calc(100vh - var(--headerHeight));
  background-color: var(--whiteColor);
  transition: var(--baseTransition);
  transition-delay: 300ms;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  text-align: start;
  overflow: hidden;
  position: fixed;
  display: flex;
  width: 100vw;
  margin: auto;
  padding: 0;
  opacity: 0;
}

.products-navigation-open:hover > .products-navigation-dropdown {
  top: var(--headerHeight);
  transition-delay: 100ms;
  visibility: visible;
  opacity: 1;
}

.products-list {
  justify-content: stretch;
  align-items: center;
  display: flex;
  gap: 1rem;
}
.products-list .products-item {
  background-color: var(--secondColor);
  border-radius: var(--borderRadiusLg);
  transition: var(--baseTransition);
  padding: 1.25rem;
  display: block;
  flex: 1;
}
.products-list .products-item:hover {
  background-color: var(--thirdColor);
}
.products-list .products-item img {
  margin-bottom: 1.25rem;
}
.products-list .products-item .products-name {
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  color: var(--textColorL2);
  font-weight: 500;
}
.products-list .products-item p {
  color: var(--textColorL2);
  font-size: 0.875rem;
  font-weight: 300;
}
.products-list .products-item .default-button {
  font-size: 0.875rem;
  font-weight: normal;
}

/*================== 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;
}

.header-icon-button {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  transition: var(--baseTransition);
  color: var(--textColorL1);
  padding: 0.125rem 0.5rem;
  aspect-ratio: 1/1;
  width: 2.5rem;
}
.header-icon-button:hover {
  background-color: #4d4d4d;
  color: var(--whiteColor);
  cursor: pointer;
}

/*================================ Select Language ==============================*/

.language-select-box {
  position: relative;
}

.language-select-box .languages-item {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  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:hover {
  background-color: #404040;
}
.language-select-box .languages-item img {
  box-sizing: content-box;
  width: 100%;
}

.language-select-box ul {
  border-radius: var(--borderRadius);
  transition: all linear 300ms;
  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;
  right: 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;
}

/*============================ END OF Header ============================*/

/**========================================================================
 *                           Main Styles
 *========================================================================**/

main {
  padding-top: calc(var(--headerHeight) + 24px);
  background-color: var(--secondColor);
  flex-direction: column;
  display: flex;
}
main.no-gap {
  padding-top: var(--headerHeight);
}
/*================================ Home Page ==============================*/
.hero-slider {
  height: calc(100vh - var(--headerHeight));
  width: 100%;
}
.hero-slider .swiper-slide {
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px;
  display: flex;
}
.slide-back {
  background-color: var(--secondColor);
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero-slider .swiper-slide .slide-back-image {
  object-position: center;
  object-fit: cover;
  min-height: 100%;
  width: 100%;
}
.hero-slider .swiper-slide .slide-thumbnail img,
.category-thumbnail img {
  max-width: 600px;
  width: 100%;
}
.hero-slider .swiper-slide .slide-description {
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  gap: 0.5rem;
}
.hero-slider .swiper-slide .slide-description .slide-title {
  font-size: clamp(1rem, 3vw, 1.75rem);
  color: var(--textColorL1);
  font-weight: bold;
  line-height: 1.7;
}
.hero-slider .swiper-slide .slide-description p {
  color: var(--textColorL2);
  font-size: 0.9375rem;
  text-align: justify;
  line-height: 1.75;
  font-weight: 500;
}
.hero-slider .swiper-slide .slide-description .default-button {
  justify-content: center;
  font-size: 1rem;
  min-width: 40%;
}

/*================================ Products Card ==============================*/
.product-card {
  border-radius: var(--borderRadiusLg);
  padding: 2rem;
  height: 100%;
}

.product-card img {
  max-width: 100%;
  max-height: 260px;
}
.product-card .card-tag {
  background-color: #ffe68c;
  padding: 0.25rem 0.5rem;
  width: fit-content;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
}
.vertical-product-card {
  border-radius: var(--borderRadiusLg);
  background-color: var(--whiteColor);
  border: 1px solid var(--borderColor);
  overflow: hidden;
  height: 100%;
  max-width: 400px;
}
.product-card-badge{
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 5rem;
  background-color: #f8a563;
  color: var(--lightTextColor);
  font-size: 1.125rem;
  font-weight: 500;
}
.vertical-product-card .product-card-thumbnail {
  background-color: var(--fourthColor);
  padding: 0.5rem 0.5rem 0 0.5rem;
  position: relative;
}
.vertical-product-card .product-card-thumbnail img{
  max-width: 100%;
}
.product-card .default-button,
.vertical-product-card .default-button{
  max-width: 100%;
}
.product-card .product-title,
.vertical-product-card .product-title {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--textColorL1);
  font-weight: 600;
}
.price-box {
  flex-direction: column;
  display: flex;
  gap: 0.25rem;
}
.before-price {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}
.before-price .before-price-value {
  text-decoration: line-through;
  color: var(--textColorL3);
  font-size: 0.875rem;
}
.before-price .offer-amount {
  background-color: #bd0e09;
  color: var(--lightTextColor);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.price-box .price-value {
  color: var(--textColorL1);
  border-radius: 0.25rem;
  font-size: 1.125rem;
  font-weight: 500;
}
/*================================ Categories Section ==============================*/

.category-section .category-description {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  display: flex;
  gap: 0.5rem;
}
.category-section .category-description .category-title {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--textColorL1);
  font-weight: 500;
  line-height: 1.7;
}
.category-section .category-description p {
  color: var(--textColorL2);
  font-size: 0.875rem;
  text-align: justify;
  line-height: 1.75;
  font-weight: 500;
  max-width: 600px;
}
.category-section .category-description .default-button {
  justify-content: center;
  font-size: 1rem;
}

.image-card {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  border: 1px solid var(--borderColor);
  padding: 0.625rem 1rem;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}
.image-card .image-card-detail {
  flex-direction: column;
  justify-content: center;
  display: flex;
  gap: 0.1875rem;
}
.image-card .image-card-detail .image-card-title {
  color: var(--textColorL1);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
}
.image-card .image-card-detail p {
  color: var(--grayTextColor);
  font-size: 0.8125rem;
  font-weight: 400;
  margin: 0;
}

/*================================ Feature Section ==============================*/

.feature-card {
  max-width: 300px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  display: flex;
  height: 100%;
  gap: 0.5rem;
}

.feature-card img {
  max-width: 100px;
}

.feature-card .feature-title {
  color: var(--grayTextColor);
  font-size: 0.875rem;
  font-weight: 600;
}

/*================================ Counseling Banner ==============================*/

.counseling-banner {
  background: #4ebde6;
  color: var(--lightTextColor);
  padding: 3rem 2rem 0 2rem;
}
.counseling-title-box {
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}
.counseling-title {
  font-size: clamp(1.0625rem, 2.5vw, 1.625rem);
  font-weight: bold;
  line-height: 1.75;
  margin: 0;
}

/*================================ Blog Card ==============================*/

.article-card {
  border: 0.0625rem solid var(--borderColor);
  transition: var(--baseTransition);
  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;
  right: 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: var(--sub-title-fontSize);
  transition: var(--baseTransition);
  color: var(--textColorL2);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.article-card.new .article-title {
  text-shadow: var(--textShadowL1);
  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 {
  -webkit-box-orient: vertical;
  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;
}

.published-date {
  color: var(--grayTextColor);
  font-size: 0.825rem;
  font-weight: 400;
}

.article-card-bottom .read-more {
  transition: var(--baseTransition);
  color: var(--primaryColor);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  font-weight: 500;
  opacity: 0.7;
}

.article-card-bottom .read-more:hover {
  opacity: 1;
}

/*================================ Customers Comments Slider ==============================*/

.customer-profile {
  border-radius: 100%;
  height: 120px;
  width: 120px;
}

.customer-info {
  background: url(../images/quot.webp) no-repeat center top;
  background-size: contain;
}

.customer-info .customer-name {
  color: var(--textColor1);
  font-size: 1.125rem;
  font-weight: 500;
}

.customer-info p {
  color: var(--grayTextColor);
  font-weight: 400;
  font-size: 1rem;
}

.customer-comment {
  max-width: 1022px;
}

.customer-rating {
  color: #f47e27;
}

/*================================ Accordion ==============================*/

.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(--mainColor);
  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-left: 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, left top, left 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;
  right: 0;
  left: 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);
}

/*================================ Product Single Page ==============================*/

.product-slider-next,
.product-slider-prev {
  color: var(--whiteColor);
  background-color: rgba(0, 0, 0, 0.3);
  height: 35px;
  width: 35px;
  border-radius: 100%;
}
.product-slider-next {
  left: 15px !important;
}
.product-slider-prev {
  right: 15px !important;
}
.product-image-slider {
  box-shadow: none;
}
.product-image-slider .swiper-slide {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  display: flex;
}
.product-image-slider img {
  border-radius: 5px;
  max-width: 100%;
}

.product-slider-thumbnail .swiper-wrapper .swiper-slide {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
}

.product-slider-thumbnail .swiper-slide img {
  border-radius: 3px;
  object-fit: cover;
  max-height: 100%;
  opacity: 0.75;
  width: 100%;
}
.product-slider-thumbnail .swiper-slide-thumb-active img {
  opacity: 1;
}

.product-detail .category-title {
  font: size 0.875rem;
  color: var(--primaryColor);
  font-weight: 500;
}
.product-detail .title {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  color: var(--textColorL1);
  font-weight: bold;
  line-height: 1.75;
}
.product-detail .sub-title {
  font-size: clamp(1rem, 1.5vw, 1rem);
  color: var(--textColorL2);
  margin-bottom: 1.25rem;
  font-weight: bold;
}
.product-detail .description {
  color: var(--textColorL3);
  font-size: 0.875rem;
  font-weight: 500;
}
.green {
  color: rgb(60, 174, 42) !important;
}

.product-feature-list {
  flex-direction: column;
  display: flex;
  gap: 0.75rem;
}
.product-feature-list .product-feature-item {
  color: var(--textColorL2);
  align-items: center;
  line-height: 1.75;
  font-size: 0.9375rem;
  display: flex;
  gap: 0.375rem;
}
.product-feature-list .product-feature-item i {
  color: var(--primaryColor);
  font-size: 1.5rem;
}

.product-quantity-inputs {
  align-items: center;
  max-width: 300px;
  display: flex;
  width: 100%;
}

.product-quantity-inputs input {
  border: 0.0625rem solid var(--primaryColor);
  transition: border-color 0.5s ease;
  color: var(--textColor6);
  background: transparent;
  font-size: 0.8125rem;
  text-align: center;
  font-weight: 600;
  height: 2.625rem;
}

.product-quantity-inputs input[type="button"] {
  transition: var(--baseTransition);
  font-weight: 400;
  font-size: 1rem;
  padding: 0 1rem;
}

.product-quantity-inputs input[type="button"]:hover,
.product-quantity-inputs input[type="button"]:focus {
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
}

.product-quantity-inputs .minus {
  border-radius: 0 0.25rem 0.25rem 0;
}

.product-quantity-inputs .plus {
  border-radius: 0.25rem 0 0 0.25rem;
}

.product-quantity-inputs input[type="number"] {
  font-size: 0.875rem;
  border-right: none;
  border-left: none;
  border-radius: 0;
  flex: 1;
}

.product-quantity-inputs input[type="number"]:hover,
.product-quantity-inputs input[type="number"]:focus {
  box-shadow: none;
}

.video-section {
  background-color: #c7d8ed;
}

.video-play-button {
  position: absolute;
  inset: 0;
  width: 6.5rem;
  height: 6.5rem;
  background-color: rgba(255, 255, 255, 0.4);
  margin: auto;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--textColorL1);
  text-shadow: var(--textShadowL1);
}
.video-play-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--textColorL1);
}

.nav-tabs {
  background-color: #dcebf2;
  justify-content: center;
  border-radius: 5rem;
  border-bottom: none;
}

.nav-tabs .nav-link {
  border-radius: var(--borderRadius);
  color: var(--textColorL2);
  padding: 0.25rem 1rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: transparent;
}

.nav-tabs .nav-link.active {
  border: 1px solid var(--borderColor);
  border-radius: 5rem;
}
.special-product-section{
  background-color: #ffd61a;
}
/*============================ END OF Main Styles ============================*/

/**========================================================================
 *                              Footer Section
 *========================================================================**/

footer {
  background-color: var(--secondColor);
  color: var(--textColorL1);
}

footer .title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

footer a {
  color: var(--textColorL2);
  opacity: 0.8;
}

footer a:hover {
  color: var(--primaryColor);
  opacity: 1;
}

footer p {
  color: var(--grayTextColor);
  font-size: 0.875rem;
  text-align: justify;
  font-weight: 400;
}

/*================================ Footer Social Medias ==============================*/

.footer-social {
  background-color: var(--primaryColor);
  padding-block: 1.25rem;
}

.social-medias-list {
  list-style: none;
  gap: 1rem;
  display: flex;
}
.social-medias-list li {
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-medias-list .social-link {
  transition: var(--baseTransition);
  color: var(--whiteColor);
  padding: 0.1875rem;
  font-size: 2rem;
  line-height: 0;
  opacity: 1;
}

.social-medias-list .social-link:hover {
  color: var(--thirdColor);
}
/*================================ Footer Company Description ==============================*/

.footer-main-section {
  padding-block: 3rem 4rem;
}

.footer-description img {
  max-height: 6.25rem;
  max-width: 12.5rem;
}

.footer-description p {
  font-size: 0.875rem;
  color: var(--textColorL3);
}

/*================================ Footer Links Section ==============================*/

.footer-links-section ul {
  flex-direction: column;
  list-style: none;
  display: flex;
  gap: 0.375rem;
}

.footer-links-section ul li a {
  font-size: 0.875rem;
}

.footer-symbol-card figure {
  background-color: rgb(255, 255, 255);
  border-radius: var(--borderRadius);
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0.5rem;
}
.footer-symbol-card figure img {
  width: 100%;
  max-width: 70px;
}

/*================================ Footer Copyright==============================*/

.footer-copyright {
  background-color: var(--textColorL1);
  border-top: 0.0625rem solid var(--borderColor);
  padding: 0.75rem 0;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--whiteColor);
  margin: 0;
}

.footer-copyright p a {
  color: var(--whiteColor);
  opacity: 1;
}

.footer-copyright p a:hover {
  color: var(--primaryColor);
}

/*============================ END OF Footer ============================*/

/**========================================================================
 *                           Fixed Elements
 *========================================================================**/
/*================================ Scroll Up Button ==============================*/

#scrollToTop {
  background-color: var(--textColorL1);
  border-radius: var(--borderRadius);
  transition: var(--baseTransition);
  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;
  right: 0.9375rem;
  position: fixed;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  z-index: 100;
}
#scrollToTop:hover {
  background-color: var(--primaryColor);
}

/**========================================================================
  *                           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;
  left: 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;
  padding: 0.625rem 0.625rem 0.625rem 2.1875rem;
  border-bottom: 0.0625rem solid var(--borderColor);
  background-color: transparent;
  color: var(--lightTextColor);
  padding-bottom: 0.75rem;
  font-weight: bolder;
  font-size: 1.125rem;
  border-radius: 0;
  line-height: 1.5;
  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-left: 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(--baseTransition);
  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: var(--mobileMenuColor);
  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;
  left: 1.5625rem;
  top: 0.75rem;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
}

/*================================ Mobile Navigation ==============================*/

.mobile-navigation-item {
  border-bottom: 0.0625rem solid var(--mobileMenuBorderColor);
  width: 100%;
}

.mobile-navigation-item-link,
.mobile-navigation-item-title {
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  padding: 0.625rem;
  padding-left: 0.625rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  transition: var(--baseTransition);
  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(--baseTransition);
}

.mobile-navigation-item-link {
  font-size: 0.9375rem;
  padding-right: 2.5rem;
}

.mobile-navigation-item-link:has(.fa) {
  padding: 0.625rem 2.5rem;
}

.mobile-navigation-accordion li {
  border-top: 0.0625rem solid var(--mobileMenuBorderColor);
}

.mobile-navigation-item-title .fa,
.mobile-navigation-item-link .fa {
  border-right: 0.0625rem solid var(--mobileMenuBorderColor);
  height: 100%;
  padding: 0 0.75rem;
  position: absolute;
  transition: var(baseTransition);
  left: 0;
}

.mobile-navigation-accordion {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  padding: 0;
}
.mobile-navigation-item .fa::before {
  transition: var(--baseTransition);
}
.open-mobile-navigation-accordion > .mobile-navigation-accordion {
  opacity: 1;
  visibility: visible;
  background-color: var(--mobileMenuAccordionBack);
  max-height: 187.5rem;
  overflow-y: auto;
}

.open-mobile-navigation-accordion > a .fa::before {
  transform: rotate(-180deg);
}

/**========================================================================
 *                           Responsive
 *========================================================================**/
/*================================  LG Monitor ==============================*/

@media (max-width: 1200px) {
  header > .container {
    max-width: 100%;
    padding-inline: 1.5rem;
  }
}

/*================================  MD Monitor  ==============================*/

@media (max-width: 1024px) {
  .hero-slider {
    height: auto;
  }
  .hero-slider .swiper-slide {
    padding: 0;
  }
  .hero-slider .swiper-slide .slide-description,
  .category-section .category-description {
    padding: 2rem 1rem 3rem 1rem;
    align-items: center;
  }
  .hero-slider .swiper-slide .slide-description .slide-title,
  .category-section .category-description .category-title {
    text-align: center;
  }
  .hero-slider .swiper-slide .slide-description p,
  .category-section .category-description p {
    text-align-last: center;
  }
  .about-img {
    max-width: 31.25rem;
  }

  .section-image {
    min-height: 250px;
  }
  .counseling-title-box {
    justify-content: center;
  }
  .counseling-banner p {
    text-align: center;
  }
  .footer-copyright p {
    text-align: center;
  }
  footer .social-medias-list {
    justify-content: center;
  }
}

/*================================ Tablet ==============================*/

@media (max-width: 767px) {
  .company-description .section-title {
    text-align: center;
    margin: 0;
  }

  .company-description .section-thumbnail {
    max-width: 25rem;
    margin: 0 auto;
  }

  .video-section .container {
    padding: 0;
    max-width: 100%;
  }

  .video-play-button {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
    padding: 0;
  }
}

/*================================ Phone ==============================*/

@media (max-width: 575px) {
  header .container {
    padding-inline: 0.5rem;
  }

  header .container .row {
    margin-right: 0;
    margin-left: 0;
  }

  header .container .row > * {
    padding-right: 0.125rem;
    padding-left: 0.125rem;
  }

  .header-contact {
    align-items: flex-end;
  }
  .header-cta{
    font-size: 0.75rem;
  }
  .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;
    left: 0.625rem;
  }

  #scrollToTop {
    bottom: 4.375rem;
  }

  .fixed-menu {
    border-radius: 0;
    max-width: unset;
  }
}
