/**========================================================================
 *                               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");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts_en/static/Montserrat-Regular.ttf") format("truetype");
}

.font_en > * {
  font-family: "Montserrat" !important;
}
/*================================  Css Variable ==============================*/

:root {
  --headerHeight: 72px;
  /*--------------------- Main Colors ---------------------*/
  /* --primaryColor: #1d4c73 ; */
  --primaryColor: #1d4c73;
  --secondColor: #14416b;
  --thirdColor: #616161;
  /*----------------- BackGround Colors --------------------*/
  --grayBack: #f9f9f9;
  --darkBack: #212121;
  --whiteColor: #ffffff;
  /*---------------------- Text Colors ---------------------*/
  --lightTextColor: #fff;
  --grayTextColor: #7b7b7b;
  --textColorL1: #21252b;
  --textColorL2: #353535;
  --textColorL3: #5d596c;
  /*---------------------- Border Colors ---------------------*/
  --borderColor: #f0f2f5;
  /*---------------------- Border Radius ---------------------*/
  --borderRadius: 0.5rem;
  --borderRadiusLg: 1rem;
  /*--------------------- Box Shadow ---------------------*/
  --boxShadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
  --boxShadowLg: 0px 15px 30px 0px rgba(40, 37, 37, 0.5);
  --boxShadowHover: 0px 15px 30px 0px rgba(20, 65, 107, 0.5);
  /*---------------------- Transition ---------------------*/
  --mainTransition: all ease-in-out 300ms;
  /*---------------------- Fonts ---------------------*/
  --fontIcons: "Font Awesome 6 Pro";
  --bodyFont: "IRANSansWeb";
  /*--------------------- Text Shadow ---------------------*/
  --textShadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

.clear_button {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: inherit;
  border-radius: 0;
  box-shadow: none;
  text-align: inherit;
  text-decoration: none;
  user-select: auto;
}

/*================================ Basic Style ==============================*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(#ffffffd0 10%, #ffffff), url("../images/pattern-black.webp") repeat left top;
  background-size: cover, 2500px auto;
  background-attachment: fixed;
  font-family: var(--bodyFont);
  color: var(--textColorL1);
  flex-direction: column;
  line-height: 1.65;
  overflow: hidden;
  font-weight: 300;
  direction: rtl;
  display: flex;
  width: 100%;
}

body.modal-open,
.modal {
  padding: 0 !important;
}

i {
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

ul {
  padding: 0;
  margin: 0;
}
.textual-content-section ol,
.textual-content-section ul {
  padding-inline-start: 2rem;
  padding-inline-end: 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 ===============================*/

.row {
  flex: 1;
}

.flex {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.flex-column {
  flex-direction: column;
  display: flex;
}

.img-fluid {
  max-height: 100%;
}

.section-space {
  padding-block: 8rem;
}

.section-space.md {
  padding-block: 6rem;
}

.section-space.sm {
  padding-block: 4rem;
}

/*================================  Colors ==============================*/

.bg-gray {
  background-color: var(--grayBack);
}

.bg-primary {
  background-color: var(--primaryColor) !important;
}

.bg-secondary {
  background-color: var(--secondColor) !important;
}

.bg-image {
  background-image: url("../images/back.png");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg-gradient {
  background-image: linear-gradient(270deg, #1e3c72, #2a5298, #3e5f9c, #4671a0) !important;
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
}

.bg-pattern {
  --pattern-url: url("../images/pattern.png");
  background-image: linear-gradient(270deg, var(--primaryColor), var(--secondColor)) !important;
  animation: gradientAnimation 20s ease-in-out infinite;
  color: var(--lightTextColor);
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-pattern::before {
  background: var(--pattern-url) top left repeat;
  animation: patternDrift 40s linear infinite;
  mix-blend-mode: soft-light;
  background-size: 640px;
  filter: contrast(1.2);
  position: absolute;
  opacity: 0.3;
  content: "";
  z-index: -1;
  inset: 0;
}

@keyframes patternDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}

/*================================  Scroll Bar ==============================*/

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
}

::-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: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 75rem) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1340px) {
  .container-xl,
  .container-lg,
  .container {
    max-width: 1260px;
  }
}

@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 ==============================*/

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
select {
  -webkit-appearance: none;
  appearance: none;
}

.submit-btn-text {
  all: unset;
  transition: var(--mainTransition);
  color: var(--lightTextColor);
  justify-content: start;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  gap: 0.5rem;
}

.submit-btn-text i {
  font-size: 13px;
}

.submit-btn-text:hover {
  color: var(--primaryColor);
}

.input-box {
  justify-content: start;
  align-items: center;
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  z-index: 1;
}

.form-label {
  color: var(--grayTextColor);
  margin-bottom: 0.25rem;
  font-size: 0.825rem;
}

.input-box label,
.input-box .form-label {
  transition: linear all 500ms;
  color: var(--textColorL1);
  inset-inline-start: 0;
  inset-block: 3px auto;
  align-items: center;
  position: absolute;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  height: 30px;
  width: 100%;
  margin: auto;
  z-index: -1;
}

.input-box:has(input:focus) label,
.input-box:has(input:hover) label,
.input-box:has(input.form-control:focus) label,
.input-box:has(input.form-control:hover) label {
  transform: translateX(-200%);
  opacity: 0;
}

.input-box input,
.input-box input.form-control {
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  justify-content: start;
  padding: 2px 0 7px 0;
  align-items: center;
  position: relative;
  border-radius: 0;
  height: 2.5rem;
  display: flex;
}

.input-box input:focus,
.input-box input:hover,
.input-box input.form-control:focus,
.input-box input.form-control:hover {
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  background-color: transparent;
  box-shadow: none;
  outline: 0;
}

input,
input.form-control,
textarea.form-control,
select.form-control,
textarea,
select {
  border: 0.0625rem solid var(--borderColor);
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  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: var(--grayBack);
  box-shadow: none;
  outline: 0;
}

.custom-file-upload {
  border: 0.0625rem solid var(--borderColor);
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  transition: var(--mainTransition);
  color: var(--textColorL1);
  font-size: 0.9375rem;
  overflow: hidden;
  width: 100%;
  margin: 0;
}
.custom-file-upload:hover {
  border: 0.09rem solid var(--primaryColor);
  background-color: var(--grayBack);
}
.custom-file-upload input[type="file"] {
  display: none;
}

.custom-file-upload label {
  background-color: var(--darkBack);
  transition: var(--mainTransition);
  color: var(--lightTextColor);
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.custom-file-upload label:hover {
  background-color: var(--primaryColor);
}

.custom-file-upload .file-name {
  color: var(--textColorL1);
  margin-inline-start: 1rem;
  font-size: 0.85rem;
}

.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: #101010;
}

.form-check-input:checked[type="radio"],
.form-check-input:checked[type="checkbox"] {
  background-color: var(--primaryColor);
  border-color: var(--secondColor);
}

.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
  border-color: var(--borderColor);
  transition: all ease 200ms;
  border-width: 2px;
  box-shadow: none;
  padding: 8px;
}

/*================================ 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;
  color: var(--secondColor);
  justify-content: center;
  align-items: center;
  position: absolute;
  aspect-ratio: 1/1;
  font-weight: 900;
  content: "\f111";
  font-size: 6px;
  line-height: 1;
  display: flex;
  margin: auto;
  width: 1rem;
}

.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: 1px solid var(--primaryColor);
  background-color: var(--primaryColor);
  transition: var(--mainTransition);
  box-shadow: var(--boxShadowLg);
  color: var(--lightTextColor);
  border-radius: 0.625rem;
  justify-content: center;
  line-height: normal;
  align-items: center;
  padding: 12px 16px;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  gap: 0.375rem;
}

.default-button.sm {
  padding: 8px 12px;
}
.default-button.lg {
  padding: 1.125rem 2rem;
  font-size: 16px;
}

.default-button i {
  font-size: 18px;
}

.default-button:hover {
  background-color: var(--secondColor);
  box-shadow: var(--boxShadowHover);
  color: var(--lightTextColor);
}

.default-button.dark {
  border-radius: var(--borderRadius);
  background-color: var(--darkBack);
  color: var(--lightTextColor);
}

.default-button.dark:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

.default-button.light {
  border: 2px solid var(--primaryColor);
  background-color: transparent;
  color: var(--primaryColor);
  border-radius: 3rem;
}

.default-button.light:hover {
  background-color: var(--primaryColor);
  color: var(--lightTextColor);
}
.default-button .icon-wrapper {
  width: min(2.083vw, 35px);
  height: min(2.083vw, 35px);
  position: relative;
  border-radius: 50%;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
}
.default-button:has(.icon-wrapper) {
  border-radius: var(--borderRadius);
  padding: 8px;
  padding-inline-end: 14px;
  gap: 0.75rem;
}

.default-button .icon-wrapper .icon-svg,
.default-button .icon-wrapper .icon-svg-copy {
  transition: var(--mainTransition);
  height: min(1.042vw, 18px);
  width: min(1.042vw, 18px);
  position: absolute;
}

.default-button .icon-wrapper .icon-svg {
  transform: translate(0, 0);
}
.default-button .icon-wrapper .icon-svg-copy {
  transform: translate(150%, 150%);
}

.default-button:hover .icon-wrapper .icon-svg {
  transform: translate(-150%, -150%);
}
.default-button:hover .icon-wrapper .icon-svg-copy {
  transform: translate(0, 0);
}

.default-button.dark .icon-wrapper {
  background: var(--whiteColor);
  color: var(--darkBack);
}
.default-button.light .icon-wrapper {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.default-button.light:hover .icon-wrapper {
  background: var(--whiteColor);
}

.default-button.dark .icon-wrapper svg,
.default-button.light .icon-wrapper svg {
  fill: currentColor;
}

.default-button.dark .icon-wrapper svg path {
  stroke: var(--darkBack);
}
.default-button.dark .icon-wrapper .icon-svg-copy path {
  stroke: var(--secondColor);
}
.default-button.light .icon-wrapper svg path {
  stroke: var(--whiteColor);
}
.default-button.light:hover .icon-wrapper svg path {
  stroke: var(--primaryColor);
}

/*================================ Slider ==============================*/

.carousel-section {
  position: relative;
  padding: 0 2rem;
}

.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 {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  display: flex;
  width: 20px;
}

.light-arrow .swiper-button-next,
.light-arrow .swiper-button-prev {
  color: var(--lightTextColor);
  font-size: 1.25rem;
}

.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;
}

.carousel-section:has(.swiper-pagination-bullet) {
  padding-bottom: 2rem;
}

.carousel-section .swiper-pagination-bullet {
  bottom: 0;
}

.swiper-pagination-bullet {
  border: 1px solid var(--grayTextColor);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  border-radius: 2rem;
  height: 0.625rem;
  width: 0.625rem;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  width: 2rem;
}

/*================================ Default Section Title Area ==============================*/

.section-heading {
  justify-content: space-between;
  margin-bottom: 1.25rem;
  align-items: stretch;
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
}

.section-heading-right-side {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  max-width: 500px;
  display: flex;
  gap: 0.75rem;
}

.section-heading:not(.section-heading-left-side) .section-heading-right-side {
  max-width: 100%;
}

.section-heading-left-side {
  justify-content: start;
  align-items: end;
  max-width: 500px;
  display: flex;
}
.section-heading-left-side .default-button {
  border-radius: 3rem;
}

.section-heading-subject {
  color: var(--secondColor);
  margin-bottom: 0;
  font-weight: 300;
  font-size: 1rem;
}

.section-heading-title {
  color: var(--textColorL1);
  font-size: clamp(1.25rem, 2vw, 2rem);
  margin-bottom: 0;
  font-weight: 600;
}
.section-heading-title span {
  color: var(--primaryColor);
}

.section-heading p {
  color: var(--textColorL3);
  line-height: 1.75;
  font-weight: 300;
  font-size: 1rem;
  margin: 0;
}

.light .section-heading-title,
.light .section-heading-subject,
.light.section-heading p {
  color: var(--lightTextColor);
}

.light .section-heading-subject,
.light.section-heading p {
  opacity: 0.85;
}

/*================================ 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);
}

/*================================ Breadcrumb ==============================*/

.breadcrumb {
  padding-block: calc(var(--headerHeight) + 4rem) 4rem;
  border-radius: 0 0 3rem 3rem;
  color: var(--textColorL1);
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  display: flex;
  z-index: 1;
  margin: 0;
}

.breadcrumb img {
  filter: brightness(75%) contrast(110%);
  position: absolute;
  object-fit: cover;
  margin: auto;
  height: 100%;
  width: 100%;
  z-index: -1;
  display: none;
  inset: 0;
}

.breadcrumb:has(img)::after {
  background-color: #ffffff;
  position: absolute;
  opacity: 0.75;
  margin: auto;
  height: 100%;
  width: 100%;
  z-index: 0;
  inset: 0;
  /* content: ""; */
}

.breadcrumb .breadcrumb-title {
  font-size: clamp(1.25rem, 2vw, 2.5rem);
  color: var(--lightTextColor);
  margin-bottom: 1.25rem;
  position: relative;
  font-weight: bold;
}

.breadcrumb-links {
  box-shadow: 0 0.0625rem 0.5rem 0 rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  backdrop-filter: blur(3px);
  justify-content: center;
  padding: 0.75rem 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.75rem;
  z-index: 1;
}

.breadcrumb-links a {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  padding-inline-end: 0.75rem;
  color: var(--textColorL1);
  margin-inline-end: 18px;
  position: relative;
}

.breadcrumb-links a:hover {
  color: var(--primaryColor);
}

.breadcrumb-links a:after {
  font-family: var(--fontIcons);
  inset-inline-end: -15px;
  position: absolute;
  content: "\f104";
  top: 0;
}

.breadcrumb-links .end-item {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--textColorL1);
  margin: 0;
}

/*================================ Social Medias ==============================*/

.social-medias-list {
  justify-content: center;
  align-items: center;
  list-style: none;
  display: flex;
  gap: 0.625rem;
}

.social-medias-list li {
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-medias-list .social-link {
  transition: var(--mainTransition);
  justify-content: center;
  color: var(--whiteColor);
  align-items: center;
  padding: 0.1875rem;
  font-size: 1rem;
  line-height: 0;
  display: flex;
}

.social-medias-list .social-link:hover {
  color: var(--primaryColor);
}

/*================================ Pagination ==============================*/
.pagination {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  gap: 0.375rem;
}

.page-link {
  border: 0.0625rem solid var(--textColorL3);
  transition: var(--mainTransition);
  background-color: transparent;
  border-radius: var(--borderRadius);
  color: var(--textColorL3);
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  aspect-ratio: 1/1;
}

.pagination .page-item:first-child a,
.pagination .page-item:last-child a {
  border-radius: var(--borderRadius);
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}

.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(--grayTextColor) !important;
  background-color: transparent;
}

/*================================ Intro Section ==============================*/
.show-section {
  border-bottom: 1px solid var(--borderColor);
  background-blend-mode: overlay;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  display: flex;
  width: 100%;
  gap: 1rem;
}
.show-section.intro {
  transition: var(--mainTransition);
  position: fixed;
  z-index: 1000;
  margin: auto;
  inset: 0;
}

.show-section.intro.loaded {
  pointer-events: none;
  visibility: hidden;
  position: static;
  min-height: 0;
  max-height: 0;
  margin: unset;
  inset: unset;
  opacity: 0;
}

.show-section .show-logo {
  /* background-color: rgba(250, 250, 250, 0.75); */
  border-radius: var(--borderRadiusLg);
  object-fit: contain;
  max-height: 180px;
  max-width: 200px;
  padding: 1rem;
  height: 100%;
  width: 100%;
}

.loading {
  font-size: clamp(20px, 3vw, 60px);
  gap: clamp(2.265px, 0.332vw, 6.049px);
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 120%;
  font-weight: 600;
  flex-wrap: wrap;
  direction: ltr;
  display: flex;
}

.loading span {
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}

.loading span::after {
  animation: loading 6s infinite;
  color: var(--whiteColor);
  content: attr(data-text);
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes loading {
  0%,
  75%,
  100% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  25%,
  50% {
    transform: rotateY(0);
    opacity: 1;
  }
}
.scroll-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.scroll-motion {
  border: 3px solid var(--whiteColor);
  margin: 0 auto 16px auto;
  box-sizing: content-box;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  height: 50px;
  width: 30px;
}

.scroll-motion::before {
  box-shadow: 0px -5px 3px 1px #2a547066;
  animation: scroll-motion-anim 2s infinite;
  background-color: var(--whiteColor);
  border-radius: 100%;
  position: absolute;
  inset-inline: 0;
  content: "";
  margin: auto;
  bottom: 30px;
  width: 6px;
  height: 6px;
}
.scroll-motion.up {
  margin: 0;
}
.scroll-motion.up::before {
  box-shadow: 0px 5px 3px 1px #2a547066;
  animation: scroll-motion-anim-up 2s infinite;
  background-color: var(--whiteColor);
  bottom: 0;
}

@keyframes scroll-motion-anim {
  0% {
    opacity: 0;
    height: 6px;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    height: 10px;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
    height: 10px;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    height: 3px;
    transform: translateY(25px);
  }
}
@keyframes scroll-motion-anim-up {
  0% {
    opacity: 0;
    height: 6px;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    height: 10px;
    transform: translateY(-5px);
  }
  80% {
    opacity: 0;
    height: 10px;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    height: 3px;
    transform: translateY(-25px);
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-top: 54px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-motion.up .chevrons {
  margin-top: -20px;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--whiteColor);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}
.scroll-motion.up .chevrondown {
  border-width: 3px 0 0 3px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

/*============================ END OF Base Styles ============================*/

/**========================================================================
 *                                 Header
 *========================================================================**/

header {
  inset-inline-start: 0;
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
}

.header-content {
  box-shadow: 0 0.0625rem 0.5rem 0 rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  backdrop-filter: blur(3px);
  margin-top: 0.75rem;
  box-shadow: none;
  padding: 0.5rem;
  width: 100%;
}

header.dark-mode-active .header-content {
  background: rgba(29, 76, 115, 0.5);
  border: 2px solid var(--secondColor);
}

.header-section-scroll .header-content {
  box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
  background: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

header.dark-mode-active.header-section-scroll .header-content {
  background: rgba(29, 76, 115, 0.75);
  box-shadow: none;
}

/*================================ Header Main Section ==============================*/

.header-logo {
  justify-content: start;
  align-items: center;
  display: flex;
  height: 100%;
  padding: 0;
}

.header-logo img {
  border-radius: var(--borderRadius);
  padding: 0.25rem;
  max-height: 80px;
  max-width: 160px;
}
header.dark-mode-active .header-content .header-logo img {
  background-color: var(--whiteColor);
}

header a {
  color: var(--textColorL3);
  font-size: 0.9375rem;
  font-weight: 500;
}

header a:hover {
  color: var(--textColorL1);
}

/*================================ Navigation ==============================*/

.menu-dropdown-open {
  position: relative;
  list-style: none;
}

.menu-dropdown-list {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  transform: translateY(2.5rem);
  top: calc(100% + 0.75rem);
  transition-delay: 300ms;
  padding: 0.625rem 1rem;
  inset-inline-start: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 0;
  list-style: none;
  width: 13.75rem;
  z-index: 100;
  opacity: 0;
}

.menu-dropdown-open:hover > .menu-dropdown-list {
  transform: translateY(0);
  transition-delay: 100ms;
  visibility: visible;
  opacity: 1;
}

.menu-dropdown-open .menu-dropdown-open > a {
  justify-content: space-between;
  align-items: center;
  position: relative;
  display: flex;
  width: 100%;
}

.menu-dropdown-open .menu-dropdown-open > .menu-dropdown-list {
  inset-inline-start: calc(100% + 1rem);
  top: 0;
}

.menu-dropdown-open .menu-dropdown-open > a::after {
  font-family: var(--fontIcons);
  justify-content: center;
  display: inline-flex;
  align-items: center;
  content: "";
}

.navigation-item {
  position: relative;
  height: 100%;
}

.navigation-item-title {
  color: var(--textColorL2);
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  height: 100%;
  display: flex;
  gap: 0.25rem;
  height: 100%;
}
header.dark-mode-active .navigation-item .navigation-item-title {
  color: var(--lightTextColor);
}
.navigation-item-title::before {
  transition: var(--mainTransition);
  background: var(--textColorL2);
  bottom: calc(50% - 20px);
  display: inline-block;
  position: absolute;
  content: "";
  height: 1px;
  width: 0px;
  inset-inline-start: 50%;
  inset-inline-end: 50%;
}
header.dark-mode-active .navigation-item .navigation-item-title::before {
  background: var(--lightTextColor);
}
.navigation-item:hover .navigation-item-title::before {
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  width: 100%;
}

.navigation-item:hover .navigation-item-title {
  color: var(--textColorL1);
}
header.dark-mode-active .navigation-item:hover .navigation-item-title {
  color: var(--lightTextColor);
}

.navigation-item-title i {
  font-size: 1rem;
}

.navigation-item-title .fa-chevron-down {
  scale: 0.8;
}

.navigation-item ul li {
  padding: 0.625rem 0.25rem 0.625rem 0.25rem;
  border-bottom: 1px solid var(--borderColor);
  justify-content: space-between;
  position: relative;
  display: flex;
}

.navigation-item ul li:last-child {
  border-bottom: none;
}

.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;
}

/*================== Hamburger Menu Button =================*/

.hamburger-button {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.hamburger-button span {
  background: var(--textColorL2);
  transition: all 0.3s ease;
  transition-delay: 200ms;
  border-radius: 6.25rem;
  height: 0.25rem;
  width: 2rem;
}

.hamburger-button:hover span.top,
body:has(#mobileMenuNavigation.show) .hamburger-button span.top {
  transform: translateY(290%) rotate(45deg);
  background: var(--primaryColor);
}

.hamburger-button:hover span.bot,
body:has(#mobileMenuNavigation.show) .hamburger-button span.bot {
  transform: translateY(-290%) 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(--mainTransition);
  color: var(--textColorL1);
  padding: 0.125rem 0.5rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  width: 2.5rem;
}

.header-icon-button:hover {
  opacity: 0.9;
}

/*================================ Select Language ==============================*/

.language-select-box {
  position: relative;
}

.language-select-box .languages-item {
  border-radius: var(--borderRadius);
  background-color: var(--grayBack);
  transition: var(--mainTransition);
  padding: 0.125rem 0.5rem;
  justify-content: center;
  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;
  inset-inline-start: 0;
}

.language-select-box:hover > .languages-item + ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.language-select-box ul li .languages-item {
  min-height: 1.875rem;
  border-radius: 0;
}

.language-select-box ul li {
  border-bottom: 0.0625rem solid var(--borderColor);
}

.language-select-box ul li:last-child {
  border-bottom: none;
}

/*============================ END OF Header ============================*/

/**========================================================================
 *                           Main Styles
 *========================================================================**/

main {
  flex-direction: column;
  display: flex;
}

/*================================ Home Page ==============================*/

.hero-section {
  justify-content: center;
  flex-direction: column;
  padding-bottom: 5vw;
  align-items: center;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
}
.hero-section .hero-content {
  background: linear-gradient(138.18deg, #ffd6dc, #e7d4f3, #bcd2ff, #b8f2d0, #fff1a8, #f8c7b8, #c8f2f4);
  padding-block: calc(var(--headerHeight) + 4rem) clamp(7rem, 35vw, 23rem);
  animation: gradientAnimation 30s ease infinite;
  border-radius: 0 0 4rem 4rem;
  background-size: 400% 400%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  height: 100%;
  width: 100%;
  flex: 1;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-section .hero-content {
    animation: gradientAnimation 10s ease infinite;
  }
}

.hero-content .hero-title {
  background: linear-gradient(to right, #28c76f 0%, #5a4aff 47.92%, #ff3739 100%);
  animation: shine 2s ease-in-out infinite alternate;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  background-size: 200% auto;
  color: var(--textColorL1);
  margin-block: 1.25rem;
  background-clip: text;
  text-align: center;
  max-width: 550px;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  80% {
    background-position: 50% 90%;
  }
  100% {
    background-position: 91% 100%;
  }
}

.hero-content .hero-description {
  color: var(--textColorL3);
  text-align: center;
  line-height: 1.75;
  max-width: 500px;
  font-size: 1rem;
  margin: 0;
}
.hero-content .hero-subject {
  color: var(--primaryColor);
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
  max-width: 500px;
}
.hero-content .social-medias-list {
  margin-block: 1.25rem;
}
.hero-content .social-medias-list .social-link,
footer .social-medias-list .social-link {
  background-color: var(--primaryColor);
  box-shadow: var(--boxShadowLg);
  border-radius: 100%;
  height: 40px;
  width: 40px;
}
.hero-content .social-medias-list .social-link:hover,
footer .social-medias-list .social-link:hover {
  background-color: var(--secondColor);
  box-shadow: var(--boxShadowHover);
  color: var(--lightTextColor);
}

.hero-banner {
  margin-top: clamp(-20rem, -30vw, -7rem);
  width: 100%;
}
.hero-images {
  justify-content: center;
  align-items: start;
  aspect-ratio: 9/5;
  position: relative;
  display: flex;
  width: 100%;
}
.hero-images .hero-img {
  border-radius: 3rem;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero-images .object-image {
  background-color: rgba(250, 250, 250, 0.25);
  backdrop-filter: blur(2px);
  border: 1px solid var(--borderColor);
  box-shadow: var(--boxShadow);
  transform: translateZ(25px);
  border-radius: 15%;
  object-fit: contain;
  position: absolute;
  aspect-ratio: 1/1;
  margin: auto;
  z-index: 10;
  height: 20%;
}
.hero-images .object-image:nth-child(1) {
  inset: 2% 10% auto auto;
}

.hero-images .object-image:nth-child(2) {
  inset: auto auto 12.5% 12%;
}

.hero-images .object-image:nth-child(3) {
  inset: 12% auto auto 2%;
}

.hero-images .object-image:nth-child(4) {
  inset: auto 20% 0% auto;
}

.hero-images .object-image:nth-child(5) {
  inset: 0 auto auto 37.5%;
}

.hero-images .object-image:nth-child(6) {
  inset: 0 0 0 auto;
}

/*================================ Categories Card ==============================*/

.category-card {
  color: var(--primaryColor);
  justify-content: center;
  border-radius: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  height: 100%;
  width: 100%;
}

.category-card-thumbnail {
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
}

.category-card:hover .category-card-thumbnail {
  transform: scale(1.1);
}

.category-card-title {
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  border-radius: 2rem 2rem 0 0;
  color: var(--textColorL1);
  width: calc(100% - 120px);
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
  inset: auto 0 0 0;
  min-height: 50px;
  padding: 4px 8px;
  display: flex;
  margin: auto;
}

.category-card:hover .category-card-title {
  color: var(--primaryColor);
}
.category-card-title::after,
.category-card-title::before {
  background: url(../images/left.svg);
  inset: auto auto 0 -24px;
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
}
.category-card-title::before {
  background: url(../images/right.svg);
  inset: auto -24px 0 auto;
}

/*================================ Portfolios Section ==============================*/

.product-card {
  padding: clamp(16px, 1.667vw, 32px) clamp(12px, 1.25vw, 24px);
  background: url(../images/doots-card.png) top center no-repeat;
  border: 1px solid var(--borderColor);
  box-shadow: var(--boxShadow);
  background-size: cover;
  border-radius: 30px;
  position: relative;
  text-align: center;
  height: 100%;
  width: 100%;
}

.product-card .product-img {
  filter: drop-shadow(0 10px 30px #00000040);
  margin-bottom: 16px;
}

.product-card .product-img img {
  transition: transform 0.6s linear;
  width: 100%;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-card-title {
  transition: var(--mainTransition);
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: inherit;
}
.product-card-description {
  color: var(--textColorL3);
  margin-bottom: 0;
}

/*================================ Team Section ==============================*/

.team-member-card {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.team-member-card .team-member-image {
  justify-content: center;
  position: relative;
  aspect-ratio: 7/6;
  align-items: end;
  display: flex;
  width: 100%;
}

.team-member-card .team-member-image img {
  object-fit: contain;
  padding: 0px 20px;
  height: 100%;
  width: 100%;
}

.team-member-card .team-member-image::before {
  background-color: #1c1c1c;
  height: calc(100% - 73px);
  position: absolute;
  opacity: 0.4;
  content: "";
  width: 100%;
  z-index: -1;
  top: auto;
  bottom: 0;
  inset-inline-end: 0;
}

.team-member-info {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 0.125rem;
}

.team-member-info .team-member-role {
  color: var(--lightTextColor);
  font-weight: 300;
  font-size: 1rem;
  opacity: 0.75;
}

.team-member-info .team-member-name {
  color: var(--primaryColor);
  font-size: 1.125rem;
  font-weight: bold;
}

.team-member-info .social-medias-list {
  margin-top: 10px;
}

/*================================ Home About ==============================*/
.mouse-movment {
  transition: transform 0.1s ease;
  will-change: transform;
}

.home-about-content {
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  display: flex;
}

.home-about-content .home-about-subject {
  color: var(--primaryColor);
  font-size: 1.25rem;
}

.home-about-content .home-about-title {
  font-size: clamp(1.375rem, 2.5vw, 2.5rem);
  color: var(--textColorL1);
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}

.home-about-content p {
  color: var(--textColorL1);
  text-align: justify;
  font-size: 15px;
}

.home-about-content .home-about-title + p {
  margin-block: 1rem 0;
}

.about-feature-list {
  flex-direction: column;
  margin-block: 2rem 3rem;
  align-items: start;
  display: flex;
  gap: 1rem;
}

.about-feature-list li {
  align-items: center;
  font-weight: 500;
  display: flex;
  gap: 1rem;
}

.about-feature-list li > a {
  color: var(--textColorL1);
  font-weight: 500;
}

.about-feature-list li > a:hover {
  color: var(--grayTextColor);
}

.about-feature-list li > i {
  font-size: 10px;
}

.owner-box {
  justify-content: start;
  align-items: center;
  display: flex;
  width: 100%;
}

.owner-box .owner-image {
  border-radius: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 70px;
  width: 70px;
}

.owner-box .owner-info {
  border-inline-start: 1px solid var(--primaryColor);
  padding-inline-start: 1rem;
  margin-inline-start: 1rem;
  color: var(--textColorL1);
  align-items: center;
  display: flex;
  height: 70px;
  gap: 0.5rem;
}

.home-about-banner {
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 8/9;
  max-width: 570px;
  display: flex;
  z-index: 1;
  width: 100%;
}

.home-about-banner img {
  position: absolute;
  margin: auto;
}

.home-about-banner:hover .home-about-image-1 {
  transform: translateX(-20px);
}
.home-about-banner:hover .home-about-image-2 {
  transform: translateX(20px);
}

.home-about-banner .home-about-image-1 {
  border-radius: var(--borderRadiusLg);
  transition: var(--mainTransition);
  inset: 0 auto auto 0;
  object-fit: cover;
  aspect-ratio: 7/8;
  z-index: -1;
  width: 68%;
}

.home-about-banner .home-about-image-2 {
  border-radius: var(--borderRadiusLg);
  transition: var(--mainTransition);
  inset: auto 0 0 auto;
  object-fit: cover;
  aspect-ratio: 7/8;
  width: 68%;
  z-index: 1;
}

.home-about-banner .home-about-image-3 {
  inset: 0 0 auto auto;
  width: 40%;
  z-index: 2;
}

.home-about-banner .home-about-image-4 {
  inset: auto auto 0 0;
  width: 40%;
  z-index: 2;
}

.home-about-banner .home-about-image-5 {
  opacity: 0.25;
  z-index: -2;
  width: 100%;
  scale: 1.25;
  inset: 0;
}

/*================================ Accordion ==============================*/

.faq-section {
  border: 1px solid var(--borderColor);
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 0;
}

.faq-section .faq-banner {
  width: 100%;
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 0.0625rem solid var(--borderColor);
  border-radius: 0 !important;
}

.accordion .accordion-item:last-child {
  border-bottom: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primaryColor);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--borderColor);
  box-shadow: none;
  z-index: 3;
  outline: 0;
}

.accordion-button {
  justify-content: space-between;
  border-radius: 0 !important;
  align-items: center;
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button::after {
  background-image: none;
  font-family: var(--fontIcons);
  height: fit-content;
  width: fit-content;
  font-weight: 400;
  content: "\f078";
  font-size: 1.25rem;
  line-height: 0;
  margin-inline-end: 0;
}

.accordion-body p {
  text-align: justify;
  margin-bottom: 0;
  color: var(--grayTextColor);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1rem;
}

/*================================ Seo Content Box ==============================*/
.seo-section {
  position: relative;
}

.more-description {
  padding-bottom: 50px;
  max-height: 250px;
  overflow: hidden;
}

.more-description::after {
  mask: -webkit-gradient(linear, 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;
  inset-inline-start: 0;
  inset-inline-end: 0;
}

.all-description {
  padding-bottom: 70px;
  max-height: fit-content;
  overflow-y: auto;
}

.more-description ~ .default-button {
  inset: auto 0 20px 0;
  position: absolute;
  width: fit-content;
  margin: auto;
}

.more-description.all-description::after {
  visibility: hidden;
  opacity: 0;
}

.more-description .title,
.more-description .sub-title {
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.more-description .sub-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.more-description p {
  text-align: justify;
  line-height: 1.9;
  font-size: 0.875rem;
  color: var(--textColorL3);
}

.more-description p strong {
  color: var(--textColorL2);
}

/*================================ About Us ==============================*/
.work-steps-section {
  min-height: calc(100vh - var(--headerHeight));
}

.work-steps-section .work-step-item {
  background-color: #333;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  position: relative;
  padding: 50px;
  display: flex;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.work-steps-section .col-lg-3:nth-child(3) .work-step-item {
  background-color: var(--darkBack);
}

.work-steps-section .work-step-item:has(.work-step-back)::before {
  background-color: #101010;
  position: absolute;
  opacity: 0.75;
  margin: auto;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  inset: 0;
}

.work-steps-section .work-step-item .work-step-back {
  filter: brightness(75%) contrast(110%);
  position: absolute;
  object-fit: cover;
  height: 100%;
  margin: auto;
  z-index: -2;
  width: 100%;
  inset: 0;
}

.work-step-item .work-step-number {
  font-family: "Work Sans", sans-serif;
  color: var(--primaryColor);
  margin-bottom: 2rem;
  font-size: 100px;
  font-weight: 200;
  line-height: 1;
}

.work-step-item .work-step-title {
  font-size: clamp(1.125rem, 1.75vw, 2rem);
  color: var(--lightTextColor);
  line-height: 1.25;
  font-weight: bold;
}

.work-step-item .work-step-title::after {
  background-color: var(--primaryColor);
  margin-block: 1.25rem;
  max-width: 50px;
  display: flex;
  height: 2px;
  width: 100%;
  content: "";
}

.work-step-item p {
  color: var(--lightTextColor);
  text-align: justify;
  font-weight: 300;
  font-size: 1rem;
}

.textual-content-section {
  flex-direction: column;
  display: flex;
}
.textual-content-section img {
  width: 100%;
}
.textual-content-section .title,
.textual-content-section .sub-title {
  font-size: clamp(1.125rem, 1.75vw, 2rem);
  color: var(--textColorL1);
  font-weight: bold;
}

.textual-content-section .sub-title {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.textual-content-section .description {
  color: var(--grayTextColor);
  text-align: justify;
  font-weight: 400;
  font-size: 1rem;
}

.counters-list {
  margin-top: 1.25rem;
}

.counter-section {
  border-inline-end: 1px solid var(--whiteColor);
  text-align: center;
  padding: 24px;
}

.counters-list .col-lg-3:last-child .counter-section {
  border: none;
}

.counter-section i {
  text-shadow: var(--textShadow);
  color: var(--primaryColor);
  margin-bottom: 20px;
  font-size: 72px;
  opacity: 0.8;
}

.counter-section .counter-value {
  color: var(--lightTextColor);
  line-height: 1.125;
  font-weight: bold;
  font-size: 50px;
  direction: rtl;
}

.counter-section .counter-value::after {
  color: rgb(255, 255, 255);
  font-size: 40px;
  content: "+";
  opacity: 0.5;
}

.counter-section .counter-title {
  color: var(--lightTextColor);
  font-size: 1.125rem;
  font-weight: 500;
}

.about-image {
  border-radius: var(--borderRadius);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*================================ Default Section Title Area ==============================*/

.section-title {
  flex-direction: column;
  margin-bottom: 48px;
  display: flex;
}

.section-title .subject {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.section-title .title {
  font-size: clamp(1.125rem, 1.75vw, 2rem);
  color: var(--textColorL1);
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.6;
}
.section-title .title span {
  color: var(--primaryColor);
}

.section-title .title.divider {
  padding-bottom: 0.25rem;
  width: fit-content;
  position: relative;
}

.section-title.middle .title.divider {
  margin-inline: auto;
}

.section-title .title.divider::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--secondColor), rgba(0, 0, 0, 0));
  inset: auto 0 -1px 0;
  position: absolute;
  margin: auto;
  content: "";
  height: 1px;
  width: 100%;
}

.section-title p {
  text-shadow: var(--textShadow);
  color: var(--grayTextColor);
  font-size: 0.9375rem;
  text-align: justify;
}

.section-title.middle p {
  text-align-last: center;
}

.section-title.middle {
  margin-inline: auto;
  text-align: center;
  max-width: 37.5rem;
}

.section-title.light .subject {
  color: var(--lightTextColor);
}

.section-title.light .title {
  color: var(--lightTextColor);
}

.section-title.light p {
  color: var(--lightTextColor);
}

/*================================ Contact Us Page ==============================*/

.bg-gradient .section-title .subject,
.bg-gradient .section-title .title,
.bg-gradient .section-title p,
.bg-pattern .section-title .subject,
.bg-pattern .section-title .title,
.bg-pattern .section-title p,
.contact-us-contact .section-title .title {
  color: var(--lightTextColor);
}

.contact-us-social .social-medias-list .social-link {
  border: 0.0625rem solid var(--lightTextColor);
  color: var(--lightTextColor);
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  align-items: center;
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
  opacity: 1;
}

.contact-us-social .social-medias-list .social-link i {
  font-size: 1.125rem;
}

.contact-us-social .social-medias-list .social-link:hover {
  background-color: var(--lightTextColor);
  border-color: var(--thirdColor);
  color: var(--thirdColor);
}

.contact-box {
  border: 1px solid var(--borderColor);
  background-color: var(--grayBack);
  border-radius: var(--borderRadius);
  flex-direction: column;
  padding: 2rem;
  display: flex;
  gap: 16px;
}

.contact-box-title {
  border-bottom: 1px solid var(--primaryColor);
  font-size: clamp(1.125rem, 1.75vw, 2rem);
  color: var(--textColorL1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  line-height: 1.6;
}

.contact-us-contact .section-title .title {
  color: var(--textColorL1);
}
.contact-us-social .social-medias-list .social-link {
  border: 0.0625rem solid var(--lightTextColor);
  color: var(--lightTextColor);
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  align-items: center;
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
  opacity: 1;
}

.contact-us-social .social-medias-list .social-link i {
  font-size: 1.125rem;
}

.contact-us-social .social-medias-list .social-link:hover {
  background-color: var(--lightTextColor);
  border-color: var(--thirdColor);
  color: var(--thirdColor);
}

.contact-item {
  border-bottom: 0.0625rem solid var(--borderColor);
  flex-direction: column;
  padding-bottom: 0.5rem;
  display: flex;
  height: 100%;
  gap: 0.5rem;
}

.contact-item-title {
  color: var(--textColor1);
  font-size: 1.0625rem;
  align-items: center;
  font-weight: 500;
  display: flex;
  gap: 0.375rem;
}

.contact-item-title i {
  color: var(--primaryColor);
  font-size: 1.125rem;
}

.contact-item-value {
  color: var(--textColorL3);
  font-weight: 400;
  font-size: 1rem;
}

.map-location {
  min-height: 450px;
}

/*================================ Blog Page ==============================*/

.blog-card .img-block {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: -1;
}
.blog-card .img-block img {
  width: 100%;
  aspect-ratio: 7 / 4;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.6s ease;
}
.blog-card:hover .img-block img {
  transform: scale(1.05);
}

.blog-info-block {
  background: url(../images/Info-bg.png) center/cover no-repeat;
  justify-content: space-between;
  border-radius: 20px;
  margin: -15% 4% 0;
  padding: 1.25vw;
  z-index: 2;
  display: flex;
  align-items: start;
  flex-direction: column;
  border: 1px solid #e9e9e9;
}
.blog-info-block .default-button {
  box-shadow: none;
}

@media (max-width: 991px) {
  .blog-info-block {
    padding: 16px;
  }
}

.blog-analytic {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.blog-analytic li::before {
  content: "•";
  color: #c8102e;
  margin-inline-end: 8px;
}

.blog-card .title {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: bold;
}
.blog-card.blog-list .title {
  font-size: 2.083vw;
}
@media (max-width: 1199px) {
  .blog-card.blog-list .title {
    font-size: 3.1vw;
  }
}
@media (max-width: 991px) {
  .blog-card.blog-list .title {
    font-size: 4.2vw;
  }
}
@media (max-width: 767px) {
  .blog-card.blog-list .title {
    font-size: 3.1vw;
  }
}
@media (max-width: 575px) {
  .blog-card.blog-list .title {
    font-size: 5.2vw;
  }
}

/*================================ Blog Card ==============================*/

.article-card {
  border: 2px solid var(--borderColor);
  border-radius: var(--borderRadiusLg);
  transition: var(--mainTransition);
  background: var(--whiteColor);
  flex-direction: column;
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  z-index: 1;
}

.article-badge {
  background-color: var(--primaryColor);
  padding: 0.3125rem 0.625rem;
  justify-content: center;
  color: var(--whiteColor);
  align-self: flex-end;
  align-items: center;
  width: fit-content;
  margin-top: -22px;
  font-size: 1.0625rem;
  display: flex;
  height: 44px;
}

.article-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  z-index: -1;
  width: 100%;
}

.article-thumbnail img {
  transition: var(--mainTransition);
  object-fit: cover;
  width: 100%;
}

.article-card:hover .article-thumbnail img {
  filter: brightness(1.25);
  opacity: 0.85;
}

.article-card .card-body {
  justify-content: space-between;
  flex-direction: column;
  padding: 1.5rem;
  display: flex;
}

.article-card-top {
  justify-content: space-between;
  padding-bottom: 1.25rem;
  display: flex;
}

.article-title {
  font-size: clamp(1.0625rem, 1.5vw, 1.5rem);
  transition: var(--mainTransition);
  color: var(--textColorL1);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.article-card .article-title:hover {
  color: var(--primaryColor);
}

.article-card p {
  color: var(--grayTextColor);
  -webkit-box-orient: vertical;
  margin-bottom: 1.25rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 0.9375rem;
  overflow: hidden;
  font-weight: 300;
  width: 100%;
}

.article-card-bottom {
  justify-content: space-between;
  padding-top: 1.25rem;
  display: flex;
}

.article-publish-info {
  align-items: center;
  display: flex;
  gap: 1rem;
  flex: 1;
}

.published-date,
.publisher,
.read-more {
  transition: var(--mainTransition);
  color: var(--grayTextColor);
  justify-content: start;
  font-size: 0.9375rem;
  align-items: center;
  line-height: 1.125;
  display: flex;
}

.article-category-lable:hover,
.published-date:hover,
.publisher:hover,
.read-more:hover {
  color: var(--primaryColor);
}

.article-category-lable {
  transition: var(--mainTransition);
  color: var(--textColorL1);
  justify-content: end;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  display: flex;
  gap: 0.5rem;
}

.article-category-lable i {
  color: var(--primaryColor);
  font-size: 16px;
}

.article-card-bottom .read-more {
  border-inline-start: 1px solid var(--borderColor);
  justify-content: end;
}

.article-publish-info .publisher {
  border-inline-start: 1px solid var(--grayTextColor);
  padding-inline-start: 1rem;
  justify-content: end;
}

.article-publish-info .published-date {
  color: var(--primaryColor);
}

.article-card-bottom .published-date,
.article-card-bottom .read-more {
  flex: 1;
}

.article-card-bottom .default-button {
  box-shadow: none;
}

.blog-sidebar .search-card,
.blog-sidebar .blog-categories,
.blog-sidebar .articles-tags-section,
.blog-sidebar .popular-articles-section {
  border-radius: var(--borderRadiusLg);
  flex-direction: column;
  padding: 1.25rem;
  display: flex;
  border: none;
}
.blog-sidebar .search-card {
  border: 1px solid var(--borderColor);
}
.blog-sidebar .search-card input {
  background-color: var(--whiteColor);
}
.blog-sidebar .blog-categories,
.blog-sidebar .articles-tags-section,
.blog-sidebar .popular-articles-section {
  padding-inline: 0;
}

.blog-sidebar .title {
  font-size: clamp(1.0625rem, 1.25vw, 1.375rem);
  color: var(--textColorL1);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.blog-sidebar .search-box {
  padding: 0.625rem;
}

.blog-categories ul li {
  padding-block: 0.375rem;
  border-bottom: 1px solid var(--borderColor);
}

.blog-categories ul li:last-child {
  border-bottom: none;
}

.blog-categories .base-list li::after {
  inset: 0.8438rem 0 auto auto;
}

.blog-categories a {
  color: var(--grayTextColor);
  font-size: 0.875rem;
  line-height: 24px;
  font-weight: 300;
}

.blog-categories a:hover {
  color: var(--primaryColor);
}

.popular-articles-section {
  position: sticky;
  top: calc(var(--headerHeight) + 16px);
}

.sidebar-articles-list {
  list-style: none;
}

.sidebar-article-item {
  border-bottom: 0.0625rem solid var(--borderColor);
  padding-block: 0.75rem;
}

.sidebar-article-item > a {
  justify-content: center;
  align-items: stretch;
  display: flex;
  gap: 1rem;
}

.sidebar-article-item figure {
  aspect-ratio: 1/1;
  width: 90px;
}

.sidebar-article-item img {
  border-radius: var(--borderRadius);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-article-textual-content {
  justify-content: center;
  flex-direction: column;
  display: flex;
  gap: 0.625rem;
  flex: 1;
}

.sidebar-article-textual-content .sidebar-article-title {
  color: var(--textColorL2);
  font-size: 0.9375rem;
  font-weight: 500;
}

.sidebar-article-textual-content .sidebar-article-date {
  color: var(--textColorL3);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.sidebar-articles-list .sidebar-article-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.articles-tags-section .tag-list {
  justify-content: start;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  gap: 0.75rem;
}

.articles-tags-section .tag-list a {
  background-color: var(--primaryColor);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  color: var(--lightTextColor);
  padding: 0.625rem 1.25rem;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: flex;
}

.articles-tags-section .tag-list a:hover {
  background-color: var(--darkBack);
}

/*================================ Blog Single Page ==============================*/

.blog-single-page {
  border-radius: var(--borderRadiusLg);
  border: 2px solid var(--borderColor);
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  position: relative;
  padding: 0.75rem;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.blog-single-page .category-link {
  transition: var(--mainTransition);
  color: var(--primaryColor);
  font-size: 0.875rem;
}

.blog-single-page .category-link:hover {
  color: var(--thirdColor);
}

.blog-single-page .article-title {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: var(--textColorL1);
  margin-bottom: 1rem;
  font-weight: bold;
}

.blog-single-page .article-sub-title {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: var(--textColorL2);
  font-weight: bold;
}

.blog-single-page .article-thumbnail {
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
  max-width: 100%;
  flex: 1;
}

.blog-single-page .article-thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.blog-single-page img {
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  margin-bottom: 0.5rem;
  max-width: 100%;
  width: 100%;
}

.blog-single-page p {
  color: var(--textColorL3);
  font-size: 0.9375rem;
}

.blog-single-page ul,
.blog-single-page ol {
  padding-inline-start: 1.125rem;
}

.share-article {
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.share-article .title {
  color: var(--textColorL2);
  font-size: 0.8375rem;
  font-weight: 500;
}

.share-article .social-medias-list .social-link {
  color: var(--secondColor);
  font-size: 1.125rem;
  padding: 0.125rem;
}

.card {
  border-radius: var(--borderRadius);
  border-color: var(--borderColor);
  padding: 0.625rem;
}

/*================================ Products Page ==============================*/

.products-page-header {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  background-color: #fff;
  padding: 0.5rem;
}

.products-page-header input,
.products-page-header select,
.products-page-header button {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  padding-block: 0.625rem;
  line-height: 1.25rem;
  height: 2.5rem;
}

.products-page-header .default-button {
  background-color: transparent;
  color: var(--textColorL2);
}

.products-page-header .default-button:hover {
  color: var(--primaryColor);
}

.products-page-header .select-container:hover select {
  border-color: var(--primaryColor) !important;
}

.sort-section {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}

.sort-section .sort-section-title {
  color: var(--textColorL2);
  align-items: center;
  font-size: 13px;
  display: flex;
  gap: 0.25rem;
}

/*================================ Product Single Page ==============================*/

/*================================ BlowUoLens Library ==============================*/

#BlowupLens {
  min-width: 0;
  min-height: 0;
  animation: none;
  border: none;
  float: none;
  margin: 0;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  text-indent: 0;
  transform: none;
  transition: none;
}

#BlowupLens {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  /* Multiple box shadows to achieve the glass lens effect */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  cursor: none;
  display: none;
  z-index: 99;
}

#BlowupLens.loading {
  background: #333 !important;
  opacity: 0.8;
}

#BlowupLens.loading:after {
  /* Loading text */
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  width: 100%;
  color: #fff;
  content: "Loading...";
  font: italic normal 16px/1 Calibri, sans-serif;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

@media (max-width: 768px) {
  .zoom-box {
    width: 240px !important;
    height: 240px !important;
  }
}
@media (max-width: 548px) {
  .zoom-box {
    width: 60% !important;
    height: auto !important;
    aspect-ratio: 1/1;
  }
}

/*================================ Hero Banner ==============================*/

.hero-back {
  position: relative;
  height: 400vh;
}
.hero-banner-1 {
  background: radial-gradient(103.95% 102.72% at 53.02% 10.62%, rgba(255, 255, 255, 0.4) 0%, #2a5c7d 29.07%, #1e4d6b 83.9%, #14416b 100%), #14416b;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  height: 100vh;
  display: flex;
  width: 100vw;
  top: 0;
}
@media (max-width: 1199px) {
  .hero-banner-1 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.hero-banner-1 .content {
  width: 51.7708333333vw;
  height: 100%;
  position: relative;
  display: grid;
  height: 100%;
  align-content: center;
}
@media (min-width: 1200px) {
  .hero-banner-1 .content {
    padding: 0 5vw 0 0;
  }
}
@media (max-width: 1199px) {
  .hero-banner-1 .content {
    width: 100vw;
    padding: 0 2vw;
    height: 60%;
  }
}
.hero-banner-1 .content .element-vector {
  position: absolute;
  z-index: 20;
  top: 50%;
  inset-inline-end: 0;
  transform: translate(20%, -50%);
  width: 11.615vw;
  height: 9.531vw;
}
.hero-banner-1 .content::before {
  content: "";
  background: url(../images/text-bg.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  z-index: 10;
}
@media (max-width: 1199px) {
  .hero-banner-1 .content::before {
    background: url(../images/text-bg-md.png);
    background-position: bottom right;
    background-size: cover;
  }
}
@media (max-width: 575px) {
  .hero-banner-1 .content::before {
    background: url(../images/text-bg-sm.png);
    background-position: bottom right;
    background-size: cover;
  }
}
.hero-banner-1 .content .text-block {
  position: relative;
  display: inline-block;
  z-index: 20;
}
@media (max-width: 1199px) {
  .hero-banner-1 .content .text-block {
    padding-top: 10%;
  }
}

.hero-banner-1 .content .text-block .description {
  color: var(--textColorL1);
  margin-bottom: 24px;
}
.hero-banner-1 .content .text-block .order {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 2.5vw;
}
.hero-banner-1 .content .text-block .sm-image {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-banner-1 .content .text-block .sm-image .fill-block {
  position: relative;
  width: 122px;
  height: 122px;
  background: #282525;
}
.hero-banner-1 .image-block {
  margin-top: 9.167vw;
  width: 49.375vw;
  padding-bottom: 3.333vw;
  padding-top: 2.5vw;
}
@media (max-width: 1199px) {
  .hero-banner-1 .image-block {
    width: 100vw;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    height: 40%;
    display: grid;
    align-content: center;
  }
}
.hero-banner-1 .image-block .images {
  position: relative;
  height: 37.708vw;
  width: 100%;
}
@media (max-width: 575px) {
  .hero-banner-1 .image-block .images {
    height: 85vw;
  }
}
.hero-banner-1 .image-block .images .img {
  width: 100%;
  height: 37.708vw;
  position: absolute;
  top: 0;
  z-index: 100;
  scale: 0;
}
@media (max-width: 1199px) {
  .hero-banner-1 .image-block .images .img {
    position: relative;
    scale: 1;
    top: auto;
    width: fit-content;
    margin: 0 auto;
    position: relative;
  }
}
@media (max-width: 575px) {
  .hero-banner-1 .image-block .images .img {
    height: 75vw;
    margin-inline-start: 10%;
  }
}
@media (max-width: 1199px) {
  .hero-banner-1 .image-block .images .img.img-2 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hero-banner-1 .image-block .images .img.img-3 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hero-banner-1 .image-block .images .img.img-4 {
    display: none;
  }
}
.hero-banner-1 .image-block .images .img img {
  object-fit: contain;
  aspect-ratio: 1/1;
  height: 100%;
}

@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .content {
    padding: 0;
    padding-top: 10%;
    padding-inline-start: 20px;
    width: 60.7708333333vw;
    height: 100%;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .content .element-vector {
    display: none;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .content::before {
    background: url(../images/text-bg.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    width: 120%;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .content .text-block {
    padding-top: 0;
  }
}
.is-mobile .hero-banner-1 .content .text-block .banner-title {
  font-size: clamp(2rem, 4vw, 4rem);
}
.hero-banner-1 .content .text-block .banner-title {
  font-weight: 700;
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .content .text-block .banner-title {
    font-size: clamp(2rem, 4vw, 4rem);
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .content .text-block .description {
    display: none;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .image-block {
    margin-top: 9.167vw;
    width: 49.375vw;
    padding-bottom: 3.333vw;
    padding-top: 2.5vw;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .image-block .images {
    width: 200%;
    inset-inline-end: 32%;
    height: 25vw;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1100px) {
  .is-mobile .hero-banner-1 .image-block .images .img {
    height: 28vw;
  }
}
/*================================ Product Slider ==============================*/

.product-slider-next,
.product-slider-prev {
  width: 40px;
  color: var(--lightTextColor);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 2rem;
}

.product-image-slider {
  box-shadow: none;
  display: flex;
}

.product-image-slider .swiper-slide {
  aspect-ratio: 1/1;
  width: 100%;
}

.product-image-slider img {
  border-radius: var(--borderRadius);
  object-position: center center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.product-slider-thumbnail {
  margin-top: 0.5rem;
  width: 100%;
}

.product-slider-thumbnail .swiper-wrapper .swiper-slide {
  width: fit-content !important;
}

.product-slider-thumbnail .swiper-slide img {
  border-radius: var(--borderRadius);
  transition: var(--baseTransition);
  aspect-ratio: 1/1;
  object-fit: cover;
  max-height: 85px;
  opacity: 0.6;
}

.product-slider-thumbnail .swiper-slide:hover img {
  opacity: 0.8;
}
.product-slider-thumbnail .swiper-slide-thumb-active img {
  opacity: 1;
}

.product-details-section .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  transition: var(--mainTransition);
  background-color: transparent;
  color: var(--textColorL2);
  justify-content: center;
  align-items: center;
  font-weight: 500;
  opacity: 0.75;
  display: flex;
  margin: 0;
}

.product-details-section .nav-tabs .nav-link:hover {
  opacity: 1;
}

.tab-pane .textual-content-section .title {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}

.tab-pane .textual-content-section .sub-title {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.product-details-section .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--primaryColor);
  color: var(--thirdColor);
  opacity: 1;
}

.product-details-section .nav-tabs .nav-link.active span {
  color: var(--thirdColor);
  opacity: 1;
}

.product-details-section .tab-pane {
  padding-top: 1.5rem;
}

.product-features-table th {
  color: var(--textColorL3);
  font-weight: 500;
}

.product-features-table td {
  color: var(--textColorL1);
}

.product-features-table tr:nth-of-type(odd) {
  background-color: rgb(245, 245, 245);
}

.product-features-table tr:nth-of-type(even) {
  background-color: rgb(250, 250, 250);
}

.product-gallery-item {
  border-radius: var(--borderRadius);
  border: 1px solid var(--borderColor);
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  z-index: 1;
  width: 100%;
}

.gallery-title {
  transition: var(--mainTransition);
  color: var(--grayTextColor);
  margin-block: 1rem 0;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.product-gallery-item:hover + .gallery-title {
  color: var(--primaryColor);
}
.product-gallery-item.video {
  aspect-ratio: 3/2;
}
.product-gallery-item.video::after {
  background: linear-gradient(30deg, rgb(255, 130, 0) 20%, rgb(255, 38, 0) 80%);
  animation: 1.2s ease 0s infinite normal none running pulse;
  box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 0px 0px;
  font-family: var(--fontIcons);
  color: var(--lightTextColor);
  justify-content: center;
  border-radius: 100%;
  align-items: center;
  aspect-ratio: 1/1;
  position: absolute;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  margin: auto;
  content: "";
  height: 50px;
  width: 50px;
  inset: 0;
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.product-gallery-item.video img {
  filter: brightness(0.5) contrast(1.05);
}

.product-gallery-item img {
  transition: var(--mainTransition);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.product-gallery-item:hover img {
  filter: brightness(0.75) contrast(1.05);
}

/*================================ Client's Comments Slider ==============================*/

.customer-profile {
  border-radius: 100%;
  height: 100px;
  width: 100px;
}

.customer-info {
  background-image: url(../images/quot.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  margin-block: 1rem;
  text-align: center;
}

.customer-info .customer-name {
  color: var(--textColorL1);
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 18px;
}

.customer-comment {
  color: var(--grayTextColor);
  text-align: center;
  max-width: 748px;
}

.customer-rating {
  justify-content: center;
  align-items: center;
  color: #f7c201;
  display: flex;
  gap: 0.125rem;
}

.testimonial-card {
  background: url(../images/testimonial-card.png);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 0 0 30px 30px;
  padding: 35% 20px 5%;
}

@media (max-width: 1199px) {
  .testimonial-card {
    padding: 35% 16px 5%;
  }
}
@media (max-width: 991px) {
  .testimonial-card {
    padding: 35% 12px 5%;
  }
}
@media (max-width: 767px) {
  .testimonial-card {
    padding: 35% 12px 5%;
  }
}
@media (max-width: 575px) {
  .testimonial-card {
    padding: 35% 12px 7.5%;
  }
}
.testimonial-card:hover .testimonial-user-logo {
  transform: scale(0.95);
  transition: var(--mainTransition);
}
.testimonial-card .testimonial-user-logo {
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.25));
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  object-fit: contain;
  position: absolute;
  border-radius: 100%;
  padding: 1rem;
  width: 35%;
  inset-inline-end: 3.5%;
  top: 4.5%;
}
.testimonial-card .testimonial-user-logo {
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.25));
  background-color: var(--whiteColor);
  transition: var(--mainTransition);
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: absolute;
  overflow: hidden;
  display: flex;
  padding: 1rem;
  width: 35%;
  inset-inline-end: 3.5%;
  top: 4.5%;
}
.testimonial-card .testimonial-user-logo img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.testimonial-card .testimonial-card-content .testimonial-card-title {
  color: var(--lightTextColor);
  margin-bottom: 0.833vw;
}
.testimonial-card .testimonial-card-content .testimonial-card-desc {
  color: var(--lightTextColor);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  text-align: justify;
  overflow: hidden;
  margin-bottom: 0;
}

.testimonials-section {
  background: url(../images/testimonials-1-bg.png) center/cover no-repeat;
}

.testimonial-heading-block {
  background: linear-gradient(45deg, var(--primaryColor), var(--secondColor));
  border-radius: 1.25rem 0 0 1.25rem;
  color: var(--lightTextColor);
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: start;
  padding: 3rem 4vw;
  padding-inline-end: 10vw;
  text-align: start;
  display: flex;
  height: 35vw;
}
.testimonial-heading-block p {
  color: var(--lightTextColor);
}

.testimonials-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-block {
  position: relative;
  padding-top: 2rem;
  z-index: 2;
}

.quote-shape {
  position: absolute;
  top: -2vw;
  inset-inline-end: 10vw;
  width: 8vw;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(151, 151, 151, 0.25));
  z-index: 1;
}

.testimonial-slider-card {
  margin-inline-start: -10vw;
  border-radius: 1.25rem;
  max-width: 46vw;
  overflow: hidden;
}

.testimonial-slider-card img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .testimonial-heading-block {
    border-radius: 0;
    height: auto;
    text-align: center;
    align-items: center;
    padding: 3rem 2rem 6rem;
  }
  .testimonial-slider-card {
    margin: -4rem auto 0;
    max-width: 70vw;
  }
  .quote-shape {
    inset-inline-end: 12vw;
    top: -6vw;
  }
}

@media (max-width: 767px) {
  .testimonial-heading-block {
    padding: 2.5rem 1.5rem 5rem;
  }
  .testimonial-slider-card {
    max-width: 90vw;
    margin-top: -3rem;
  }
  .quote-shape {
    inset-inline-end: 2vw;
  }
}

/*================================ Logos Slider ==============================*/

.logos-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.logos-slider .swiper-slide {
  justify-content: center;
  align-items: center;
  display: flex;
}
.logos-slider .logo-slide-card {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadiusLg);
  background-color: var(--grayBack);
  margin-inline: auto;
  aspect-ratio: 1/1;
  max-width: 200px;
  padding: 2rem;
  width: 100%;
}
.logos-slider .logo-slide-card img {
  transition: var(--mainTransition);
  filter: grayscale(1);
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.logos-slider .logo-slide-card img:hover {
  filter: grayscale(0);
}
.logos-slider .swiper-slide.active img {
  transform: scale(1.05);
  filter: grayscale(0);
}

/*================================ Cta Form ==============================*/

.cta-form {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 1rem;
}
.cta-form .input-box {
  max-width: 300px;
}
.cta-form .default-button {
  box-shadow: none;
  padding-block: 5px;
}

/*============================ END OF Main Styles ============================*/

/**========================================================================
 *                              Footer Section
 *========================================================================**/

footer {
  border-radius: 4rem 4rem 0 0;
  color: var(--lightTextColor);
  overflow: hidden;
}

/* .footer-main-section::before {
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  margin: auto;
  content: "";
  z-index: 0;
  width: 100%;
  height: calc(100% + 140px);
  opacity: 0.15;
  background: url(../images/logo-2.png) -70px center no-repeat;
  background-size: auto 100%;
} */

.footer-main-section {
  padding-block: 120px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-main-section .container {
  position: relative;
  z-index: 1;
}
footer .title {
  text-shadow: var(--textShadow);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: bold;
}

footer a {
  color: var(--lightTextColor);
}

footer a:hover {
  color: var(--lightTextColor);
  opacity: 0.75;
}

footer p {
  color: var(--lightTextColor);
  font-size: 0.875rem;
}

/*================================ Footer Company Description ==============================*/

.footer-description .footer-logo {
  object-fit: contain;
  max-height: 6.25rem;
  max-width: 12.5rem;
  margin-bottom: 1rem;
}

.footer-symbol-card {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  aspect-ratio: 1/1;
  padding: 0.5rem;
  width: 100%;
}
.footer-symbol-card img {
  width: 100%;
  max-width: 70px;
}

.footer-links-section .row {
  align-items: end;
  flex: 1;
}

/*================================ Footer Links Section ==============================*/

.footer-links-section ul {
  padding-inline-start: 1.5rem;
  flex-direction: column;
  list-style: none;
  display: flex;
  gap: 0.375rem;
}

.footer-links-section ul li {
  position: relative;
}

.footer-links-section ul li::before {
  transition: var(--mainTransition);
  text-shadow: var(--textShadow);
  font-family: var(--fontIcons);
  inset-inline-start: -1.5rem;
  justify-content: start;
  align-items: center;
  position: absolute;
  font-size: 12px;
  width: 1.5rem;
  display: flex;
  inset-block: 0;
  margin: auto;
  height: 100%;
  content: "";
}

.footer-links-section ul li a {
  font-size: 0.875rem;
}

.footer-links-section ul li:has(a:hover)::before {
  color: var(--lightTextColor);
  opacity: 0.75;
}

.footer-symbol-card figure {
  background-color: var(--whiteColor);
  border-radius: var(--borderRadius);
  aspect-ratio: 1/1;
  padding: 0.5rem;
  width: 100%;
}

.footer-symbol-card figure img {
  max-width: 70px;
  width: 100%;
}

/*================================ Footer Contact Section ==============================*/

.footer-contact-item {
  align-items: start;
  display: flex;
  gap: 0.5rem;
}

.footer-contact-item i {
  text-shadow: var(--textShadow);
  color: var(--lightTextColor);
  justify-content: center;
  aspect-ratio: 1/1;
  line-height: 1.75;
  font-size: 1rem;
  display: flex;
  width: 28px;
}

.footer-contact-item .contact-content {
  flex-direction: column;
  display: flex;
  gap: 0.25rem;
}

.footer-contact-item .contact-content a,
.footer-contact-item .contact-content p {
  transition: var(--mainTransition);
  color: var(--lightTextColor);
  line-height: 1.75;
  font-size: 1rem;
  opacity: 1;
  margin: 0;
}

.footer-contact-item .contact-content a:hover,
.footer-contact-item .contact-content p:hover {
  color: var(--lightTextColor);
  opacity: 0.75;
}

footer .social-medias-list {
  justify-content: start;
}

footer .social-medias-list .social-link {
  font-size: 0.8125rem;
  box-shadow: none;
  width: 32px;
  height: 32px;
}

/*================================ Footer Copyright==============================*/

.footer-copyright {
  border-top: 0.0625rem solid var(--borderColor);
  background-color: var(--whiteColor);
  padding: 1.5rem 0;
}

.footer-copyright p {
  color: var(--textColorL3);
  font-size: 0.875rem;
  text-align: center;
  font-weight: 300;
  margin: 0;
}

.footer-copyright p a,
.footer-copyright p span {
  color: var(--textColorL2);
  font-weight: 400;
  opacity: 1;
}

.footer-copyright p a:hover,
.footer-copyright p span:hover {
  color: var(--primaryColor);
}

/*============================ END OF Footer ============================*/

/**========================================================================
 *                           Fixed Elements
 *========================================================================**/
/*================================ Scroll Up Button ==============================*/

#scrollToTop {
  background-color: var(--textColorL1);
  border-radius: var(--borderRadius);
  transition: var(--mainTransition);
  border: 1px solid transparent;
  box-shadow: var(--boxShadow);
  inset-inline-start: 1rem;
  justify-content: center;
  color: var(--whiteColor);
  align-items: center;
  visibility: hidden;
  font-size: 1.25rem;
  aspect-ratio: 1/1;
  position: fixed;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  bottom: 1rem;
  height: 45px;
  z-index: 100;
  width: 45px;
}

#scrollToTop:hover {
  background-color: var(--primaryColor);
}

/*================================ Fixed Menu ==============================*/

.whatsapp-btn {
  inset-inline-end: 1rem;
  position: fixed;
  bottom: 1rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  transition: var(--mainTransition);
}

.whatsapp-icon-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  border-radius: 10px;
  transition: var(--mainTransition);
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.whatsapp-btn-bg {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #00bf4c;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: var(--mainTransition);
}

.whatsapp-btn:hover .whatsapp-btn-bg {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.whatsapp-btn:hover .whatsapp-icon-container {
  background-color: rgba(156, 156, 156, 0.466);
  backdrop-filter: blur(4px);
}

/**========================================================================
  *                           Modals
  *========================================================================**/
/*================================ Search Modal ==============================*/

#SearchBoxModal {
  background-color: rgba(217, 217, 217, 0.6);
  cursor: url(../images/close.png), auto;
  transition: all 0.8s ease-in-out;
  -webkit-transform-origin: center;
  backdrop-filter: blur(0.625rem);
  transform-origin: center;
  transition-delay: 0.3s;
  transform: scale(0);
  border-radius: 100%;
  height: 100%;
}
#SearchBoxModal.show {
  border-radius: 0;
  transform: scale(1);
  transition-delay: 0s;
  opacity: 1;
  transition: all 1.6s cubic-bezier(0.4, 0, 0, 1);
}

#SearchBoxModal .btn-close {
  position: absolute;
  top: 1.5rem;
  inset-inline-end: 1.5rem;
  background-size: 1.5rem;
}

#SearchBoxModal .search-modal {
  height: 100%;
  display: flex;
  align-items: center;
  margin: auto;
}

#SearchBoxModal .search-modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 2rem;
}

#SearchBoxModal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.modal-search-input {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.modal-search-input input {
  border: none;
  border-bottom: 0.0625rem solid var(--borderColor);
  padding: 0.625rem 0.625rem 0.625rem 2.1875rem;
  background-color: transparent;
  color: var(--lightTextColor);
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: bolder;
  border-radius: 0;
  line-height: 1.5;
  outline: none;
  width: 100%;
}

.modal-search-input input::placeholder {
  color: var(--whiteColor);
  font-size: 1.125rem;
  font-weight: bolder;
  line-height: 1.5;
}

.modal-search-input a {
  position: absolute;
  font-size: 1.5rem;
  color: var(--textColorL1);
  line-height: 1;
  inset: 0 auto 0 0.25rem;
  margin: auto;
}

/*================================ Mobile Menu Navigation ==============================*/

#mobileMenuNavigation {
  transition: all 0.5s linear;
  background: rgba(0, 0, 0, 0);
}

#mobileMenuNavigation.show {
  background: rgba(0, 0, 0, 0.5);
}

#mobileMenuNavigation .modal-dialog {
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transform: translatex(100%);
  margin: 0;
  margin-inline-end: auto;
  max-width: 22.5rem;
}

.mobile-navigation-logo img {
  object-fit: contain;
  max-height: 100px;
  max-width: 100%;
}

.search-box {
  position: relative;
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: solid 0.0625rem var(--borderColor);
}

.search-box input {
  width: 100%;
  border-radius: var(--borderRadius);
  border: 0.0625rem solid var(--borderColor);
  transition: var(--mainTransition);
  padding: 0.5rem;
}

.search-box input:hover,
.search-box input:focus {
  border-color: var(--primaryColor);
  box-shadow: none;
  outline: none;
}

.search-box button {
  all: unset;
  position: absolute;
  inset: 0 auto 0 1.25rem;
  margin: auto;
  color: var(--textColorL1);
}

#mobileMenuNavigation .modal-dialog .modal-content {
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  max-height: 100vh;
  overflow-y: auto;
}

#mobileMenuNavigation.show .modal-dialog {
  transform: translatex(0);
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

#mobileMenuNavigation .btn-close {
  color: var(--lightTextColor);
  background: none;
  font-size: 3rem;
  opacity: 0.8;
  padding: 0;
  inset-inline-end: 1.5625rem;
  top: 0.75rem;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
}

/*================================ Mobile Navigation ==============================*/

.mobile-navigation-item {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.mobile-navigation-item-link,
.mobile-navigation-item-title {
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  padding: 0.625rem;
  padding-inline-end: 0.625rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  transition: var(--mainTransition);
  color: rgba(0, 0, 0, 0.7);
}

.mobile-navigation-item-title:hover,
.mobile-navigation-item-link:hover,
.open-mobile-navigation-accordion > a {
  color: rgb(0, 0, 0);
  transition: var(--mainTransition);
}

.mobile-navigation-item-link {
  font-size: 0.9375rem;
  padding-inline-start: 2.5rem;
}

.mobile-navigation-item-link:has(.fa) {
  padding: 0.625rem 2.5rem;
}

.mobile-navigation-accordion li {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.mobile-navigation-item-title .fa,
.mobile-navigation-item-link .fa {
  border-inline-start: 0.0625rem solid rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 0 0.75rem;
  position: absolute;
  transition: var(mainTransition);
  inset-inline-end: 0;
}

.mobile-navigation-accordion {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  padding: 0;
}

.mobile-navigation-item .fa::before {
  transition: var(--mainTransition);
}

.open-mobile-navigation-accordion > .mobile-navigation-accordion {
  opacity: 1;
  visibility: visible;
  background-color: #f5f5f5;
  max-height: 187.5rem;
  overflow-y: auto;
}

.open-mobile-navigation-accordion > a .fa::before {
  transform: rotate(-180deg);
}

/**========================================================================
 *                           Responsive
 *========================================================================**/
/*================================  LG Monitor ==============================*/

@media (max-width: 1200px) {
  .product-card {
    border-radius: 20px;
  }
  .product-card-title {
    margin-bottom: 12px;
  }
}

/*================================  MD Monitor  ==============================*/

@media (max-width: 1024px) {
  .hero-back {
    height: fit-content;
  }
  .default-button .icon-wrapper {
    width: 3.83vw;
    height: 3.83vw;
  }
  .default-button .icon-wrapper .icon-svg {
    width: 1.5vw;
    height: 1.5vw;
  }

  .about-img {
    max-width: 31.25rem;
  }

  .section-image {
    min-height: 250px;
  }
  .product-card {
    padding: 2vw;
  }
  .counseling-title-box {
    justify-content: center;
  }

  .counseling-banner p {
    text-align: center;
  }

  .footer-copyright p {
    text-align: center;
  }
  /* .footer-main-section::before {
    height: 100%;
    background: url(../images/logo-2.png) -50px bottom no-repeat;
    background-size: 50% auto;
  } */
}

/*================================ Tablet ==============================*/

@media (max-width: 767px) {
  .header-content {
    max-width: calc(100% - 1.5rem);
  }
  .company-description .section-title {
    text-align: center;
    margin: 0;
  }

  .company-description .section-thumbnail {
    max-width: 25rem;
    margin: 0 auto;
  }

  .counters-list .col-lg-3:nth-child(even) .counter-section {
    border: none;
  }

  .hero-slider .swiper-slide {
    min-height: calc(100vh - var(--headerHeight));
    height: fit-content;
  }

  .hero-slider .social-medias-list {
    height: fit-content;
    flex-direction: row;
    width: fit-content;
    position: absolute;
    inset: auto 0 1rem 0;
    gap: 0.75rem;
    margin: auto;
    z-index: 10;
  }
  .hero-section .hero-content {
    border-radius: 0 0 3rem 3rem;
  }
  .hero-images .hero-img {
    border-radius: 2rem;
  }
  .product-card {
    padding: 3vw;
  }
  .breadcrumb {
    padding-block: calc(var(--headerHeight) + 2.5rem) 2.5rem;
  }
  footer {
    border-radius: 3rem 3rem 0 0;
  }
  /* .footer-main-section::before {
    background-size: 75% auto;
  } */
}

/*================================ Phone ==============================*/

@media (max-width: 575px) {
  .default-button .icon-wrapper {
    width: 6.083vw;
    height: 6.083vw;
  }
  .default-button .icon-wrapper .icon-svg {
    width: 3vw;
    height: 3vw;
  }
  .header-contact {
    align-items: flex-end;
  }

  .header-logo img {
    max-height: 50px;
  }

  .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;
  }
  .product-card {
    padding: 5vw 4.5vw;
  }
  .counters-list .counter-section {
    border: none;
  }

  .work-step-item .work-step-number {
    margin-bottom: 1.25rem;
    font-size: 50px;
  }

  #scrollToTop {
    bottom: 4.375rem;
  }

  .fixed-menu {
    border-radius: 0;
    max-width: unset;
  }
  #mobileMenuNavigation .modal-dialog {
    max-width: 100%;
  }

  #mobileMenuNavigation .modal-header {
    justify-content: space-between;
    gap: 0.75rem;
  }

  #mobileMenuNavigation .btn-close {
    color: var(--textColorL1);
    font-size: 2.5rem;
    position: static;
  }

  /* .footer-main-section::before {
    background-size: 100% auto;
  } */
}
