/* outfilt google font */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* removing list style */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* remove text decoration  */
a {
  text-decoration: none !important;
}

/* adjusting images */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}



/* making variables */
:root {
  --main-color: #07192F;
  --main-color-2: #A53234; /*This is dark version of main-color*/
  --main-color-lite-ori: #c4dbf6;
  --main-color-lite: #efefef;
  --secondary-color: #181818;
  --white-color: #ffffff;
  --black-color: #000000;
  --padding-xs: 5px;
  --padding-sm: 10px;
  --padding-md: 20px;
  --padding-lg: 30px;
  --padding-xl: 100px;
  --margin-sm: 10px;
  --margin-md: 20px;
  --margin-lg: 30px;
  --margin-xl: 40px;
}

*::selection {
  background-color: var(--main-color);
  color: var(--white-color);
}

/* Set core body defaults */
body {
  min-height: 100vh;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 16px;
  font-family: "Outfit", sans-serif !important;
}

/************************************
*************************************
*********** /  header / *************
*************************************
*********************************** */
/* main header desktop */
.header-main {
  padding-block: var(--padding-sm);
}

.header-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  width: 150px;
}

.navbar-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-list li {
  padding: 0 !important;
}

.navbar-list a {
  color: var(--black-color);
  font-size: 16px;
}

.navbar-item:hover {
  color: var(--main-color);
}

.mega-menu .navbar-mega-menu {
  border: none;
  outline: none;
  background-color: inherit;
  font: inherit;
}

.navbar-mega-menu i {
  font-size: 12px;
}

.navbar-mega-menu-content {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  z-index: 9999;
  background-color: var(--white-color);
  color: var(--black-color);
  padding-top: var(--padding-sm);
  background-clip: content-box;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
}

.mega-menu:hover .navbar-mega-menu-content {
  display: block;
}

.mega-menu-row {
  display: flex;
  flex-direction: row;
  padding: var(--padding-md);
}
.mega-menu-row>*{
    flex:1;
}
.mega-menu-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-block: var(--margin-sm);
}

.mega-menu-item {
  font-size: 16px;
  color: var(--black-color);
}

.mega-menu-list {
  padding: 0 !important;
}

.mega-menu-item:hover {
  color: var(--main-color);
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.header-icons {
  display: flex;
  gap: 10px;
}

.header-icons i {
  font-size: 18px;
}

.header-icons i:hover {
  color: var(--main-color);
  cursor: pointer;
}

.header-icons a {
  color: var(--black-color);
}

/* search content */
.search-content {
  position: absolute;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  background-color: var(--white-color);
  padding-top: var(--padding-xl);
}

#search-cross-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  font-size: 26px;
  border-radius: 50%;
  opacity: 0.6;
  border: 1px solid var(--black-color);
  aspect-ratio: 1/1;
  padding: var(--padding-md);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#search-cross-icon:hover {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

.search-form {
  margin-inline: auto;
  border-bottom: 1px solid var(--black-color);
  width: fit-content;
  padding-bottom: var(--padding-md);
}

#search-input-box {
  width: 60vw;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 26px;
}

#search-button {
  background-color: var(--white-color);
  border: none;
  margin-right: var(--margin-sm);
  font-size: 16px;
  opacity: 0.7;
}

.mobile-header {
  display: none;
}

@media screen and (max-width: 960px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  #search-input-box {
    width: 80vw;
    font-size: 16px;
  }

  #search-cross-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    opacity: 0.5;
  }
}

/* mobile header */
.mobile-header {
  padding: 0;
}

.mobile-side-bar {
  width: 300px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: var(--white-color);
  padding: var(--padding-md);
  display: none;
}

.cross-icon {
  text-align: right;
}

.cross-icon i {
  color: var(--black-color);
  font-size: 16px;
  opacity: 0.7;
  padding: 5px 7px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.double-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-bar-item i {
  font-size: 10px;
  margin-left: 5px;
}

.side-bar-list {
  padding-top: var(--padding-md);
  padding-left: 0 !important;
}

.side-bar-list li {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-block: var(--padding-sm);
}

.side-bar-list button {
  font: inherit;
  background-color: inherit;
  border: none;
  outline: none;
}

.side-bar-item {
  text-align: left;
  font-size: 14px;
  color: var(--black-color);
}

.category > .subcategory {
  display: none;
  padding-left: 0 !important;
}

.subcategory li {
  font-size: 14px;
  border: none;
  padding: 0;
}

.subcategory li a {
  color: var(--black-color);
}

.category.active .subcategory {
  display: block;
}

/************************************
*************************************
********** / hero  section / ********
*************************************
*************************************/
.hero-carousel {
  margin-bottom: var(--margin-md);
}

.slider-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: var(--margin-md);
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  overflow: hidden;
}

.text-overlay {
  width: 35%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7%;
}

.category-name {
  font-size: 18px;
  margin: 0;
  line-height: 1;
  color: var(--black-color);
}

.text-overlay h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin-top: 10px;
  color: var(--black-color);
}

.product-desc {
  font-size: 16px;
  line-height: 1.2;
  margin-block: 20px;
  color: rgba(0, 0, 0, 0.7);
}

.hero-btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--main-color);
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-top: 25px;
}

.hero-btn:hover {
  background-color: var(--secondary-color);
}

@media screen and (max-width: 600px) {
  .hero-container {
    padding: 0 !important;
    margin-top: 30px;
  }

  .slider-item {
    border-radius: 0px;
    margin-bottom: 0;
  }

  .slider-image img {
    height: 100%;
  }

  .text-overlay {
    width: 60%;
    left: 5%;
  }

  .category-name {
    font-size: 14px;
  }

  .text-overlay h2 {
    font-size: 16px;
    line-height: 1;
    margin-top: 5px;
  }

  .product-desc {
    font-size: 12px;
    line-height: 1;
    margin-block: 5px;
  }

  .hero-btn {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 7px;
  }

  .owl-next,
  .owl-prev {
    display: none;
  }
}

/************************************
*************************************
***** / category boxes section / ****
*************************************
*************************************/

.ind-featured-maincat {
  background-color: var(--main-color-lite);
  padding-block: 70px;
}

.category-box {
  display: inline-block;
  background-color: var(--main-color-lite);
  color: var(--black-color);
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 20px 0px;
}

.category-box:hover .category-image {
  transform: scale(1.1);
}

.category-image {
  object-fit: cover;
  overflow: hidden;
  object-position: center center;
  width: 100%;
  /*height: 350px;*/
  background-color: var(--main-color-lite);
  transition: transform 0.6s ease;
}

.category-image-short {
  height: 170px;
}

.last-category-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--main-color-lite);
}

.category-box span::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: cover;
  position: absolute;
  top: -20px;
  left: 0;
}

.category-box span::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20H20C8.95431 20 0 11.0457 0 0V20Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: -20px;
}

.category-box span {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--main-color-lite);
  color: var(--black-color);
  border-radius: 10px 10px 0 10px;
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 0 20px 0 0;
}

/***********************************
************************************
***** / Featured products / ********
************************************
***********************************/
.featured-products-section {
  padding: var(--padding-lg);
}

.featured-products-title {
  text-align: center;
  margin-block: 20px;
  font-size: 34px;
}

.owl-dots {
  text-align: center;
}

.owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  margin: 0 5px;
  border: 1px solid var(--main-color) !important;
}

.owl-dot:hover,
.owl-dot.active {
  background-color: var(--main-color) !important;
}

.owl-prev {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--white-color) !important;
  color: var(--black-color) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.09);
}

.owl-next {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%);
  background-color: var(--white-color) !important;
  color: var(--black-color) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.09);
}

.owl-prev:hover {
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
}

.owl-next:hover {
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
}

.featured-product-card {
  overflow: hidden;
  border-radius: 10px 10px 10px 10px;
}

.featured-product-card img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.featured-product-card img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin-block: 5px;
  height: 15px;
  line-height: 1;
  overflow: hidden;
}

.artical-number {
  font-size: 14px;
  font-weight: 400;
  margin-block: 10px;
  height: 15px;
  line-height: 1;
  overflow: hidden;
}

.detail-btn {
  text-decoration: none;
  display: inline-block;
  background-color: var(--main-color);
  color: var(--white-color);
  padding-block: 7px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.6s ease;
}

.detail-btn:hover {
  background-color: var(--secondary-color);
}

/************************************
*************************************
***** / category boxes section / ****
*************************************
*************************************/
.why-us-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.why-us-content p {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}

.why-us-content h2 {
  margin-top: 0 !important;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 25px;
}

.why-us-list {
  padding: 0 !important;
}

.why-us-list li {
  font-size: 18px;
  line-height: 2;
}

.why-us-list i {
  color: var(--main-color);
  margin-right: 10px;
}

.why-us-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center center;
/*  box-shadow: 0px 0px 30px var(--main-color);*/
  box-shadow: 0px 0px 10px gray;
}

@media screen and (max-width: 600px) {
  .why-us-content h2 {
    font-size: 24px;
  }
}

/***********************************
************************************
***** / big images section / *******
************************************
***********************************/
.big-images-section {
  padding-block: var(--padding-lg);
}

.big-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.big-image {
  position: relative;
  width: 100%;
  min-height: 200px;
  max-height: 600;
  overflow: hidden;
  border-radius: 20px;
  padding: 0 !important;
}

.big-image a {
  overflow: hidden;
}

.big-image img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.big-image img:hover {
  transform: scale(1.2);
}

.big-image-text {
  position: absolute;
  left: 0;
  color: var(--black-color);
}

.top {
  top: 0;
}

.bottom {
  bottom: 0;
}

.big-image-text h5 {
  font-size: 20px;
  line-height: 1;
  margin: 0 !important;
  background-color: var(--white-color);
  position: relative;
  padding: 15px 20px;
  border-radius: 0 30px 30px 0;
}

.big-image-text p {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 !important;
  background-color: var(--white-color);
  position: relative;
  padding: 10px 20px;
  width: fit-content;
  color: rgba(0, 0, 0, 0.5);
}

.bottom p {
  border-radius: 0 20px 0 0;
}

.bottom h5 {
  border-radius: 0 20px 0 0;
}

.bottom p::before {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20.5713V0.571289C0 11.617 8.95431 20.5713 20 20.5713H0Z' fill='white'/%3E%3C/svg%3E%0A");
  top: 0;
  left: 0;
  top: -20px;
}

.bottom p::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20V0C0 11.0457 8.95431 20 20 20H0Z' fill='white'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: -20px;
  bottom: 0;
}

.bottom h5::before {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20.5713V0.571289C0 11.617 8.95431 20.5713 20 20.5713H0Z' fill='white'/%3E%3C/svg%3E%0A");
  bottom: -20px;
  right: -20px;
  bottom: 0;
}

.top h5::before {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  bottom: -20px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.38498e-07 -2.38498e-07L20 0C8.95431 -1.31719e-07 1.31719e-07 8.95431 0 20L2.38498e-07 -2.38498e-07Z' fill='white'/%3E%3C/svg%3E%0A");
}

.top p::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: -20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.38498e-07 -2.38498e-07L20 0C8.95431 -1.31719e-07 1.31719e-07 8.95431 0 20L2.38498e-07 -2.38498e-07Z' fill='white'/%3E%3C/svg%3E%0A");
}

.top p::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -20px;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 20V0C0 11.0457 8.95431 20 20 20H0Z' fill='white'/%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 960px) {
  .big-image-content {
    flex-direction: column;
  }
}

/***********************************
************************************
******* / info box section / *******
************************************
***********************************/
.info-box-section {
  padding-block: 40px;
  background-color: var(--main-color);
  color: var(--white-color);
}

.info-box {
  display: flex;
  gap: 10px;
}

.info-box-icon {
  margin-right: 5px;
  border: 1px solid var(--white-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: var(--padding-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-box-text h4 {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box-text p {
  font-size: 14px;
  line-height: 1;
}

/************************************
*************************************
***** /  gallery section / **********
*************************************
*************************************/
.gallery-section {
  padding-block: var(--padding-lg) var(--padding-xl);
}

.gallery-text-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-text-content h2 {
  font-size: 36px;
  line-height: 1;
}

.gallery-text-content p {
  font-size: 18px;
  line-height: 1;
  margin-block: 30px;
}

.gallery-text-content a {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1;
  border-radius: 50px;
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
}

.gallery-text-content a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: var(--main-color);
}

.gallery-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.gallery-image-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  overflow: hidden !important;
}

.gallery-image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-image-item img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  overflow: hidden !important;
  transition: transform 0.6s ease;
}

.gallery-image-item img:hover {
  transform: scale(1.2);
}

.gallery-large-image {
  height: 300px;
  overflow: hidden;
}

.gallery-short-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  display: block;
}

@media screen and (max-width: 600px) {
  .gallery-section {
    padding-block: var(--padding-md);
  }

  .gallery-image-container {
    flex-direction: column;
  }

  .gallery-image-item:nth-child(2) {
    flex-direction: column-reverse;
  }

  .gallery-text-content {
    text-align: center;
    margin-top: 0 !important;
  }
}

/************************************
*************************************
*********** /  footer / *************
*************************************
*************************************/
/* footer section */
.footer-section {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding-block: var(--padding-lg);
}

.footer-section p {
  font-size: 16px;
  line-height: 1.6;
}

/* footer social links */
.footer-social-links {
  display: flex;
  gap: 20px;
  margin-top: var(--margin-lg);
  padding-left: 0;
}

.footer-social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: var(--padding-md);
  border-radius: 50%;
  color: var(--white-color);
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social-links li a:hover {
  background-color: var(--main-color);
}

/* footer-heading-title */
.footer-heading-title {
  margin-bottom: var(--margin-md);
  font-size: 18px;
  font-weight: 600;
}

.footer-list {
  padding: 0 !important;
}

.footer-list li a {
  color: var(--white-color);
  font-size: 16px;
}

.footer-list li a:hover {
  color: var(--main-color-lite-ori);
  padding-left: 1px;
}

/* newsletter-form */
.newsletter-form {
  margin-top: var(--margin-md);
}

.newsletter-form input {
  width: 100%;
  padding: var(--padding-sm);
  border-radius: 5px;
}

.newsletter-form input:focus {
  outline: var(--white-color);
}

.newsletter-button {
  width: 100%;
  border: none;
  padding: var(--padding-sm);
  margin-top: var(--margin-sm);
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 5px;
  outline: none;
}

/* copyrights */
.copyrights {
  text-align: center;
}

.copyrights a {
  color: var(--main-color);
}

/* back to top */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  transition: all 0.3s ease-in-out;
  background-color: var(--main-color);
  color: var(--white-color);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  padding: 7px 12px;
  cursor: pointer;
}

#whatsappBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9;
  color: green;
  background-color: var(--white-color);
  border-radius: 4px;
  cursor: pointer;
}

#whatsappBtn img {
  width: 37px;
  height: 41px;
  border-radius: 4px;
}

/************************************
*************************************
******* / contact us page / *********
*************************************
*********************************** */
/* contact us */
.contact-us-container {
  padding-block: var(--padding-md);
}

.page-title {
  margin-top: 20px;
  font-size: 24px;
  padding: 20px 10px;
/*  background-color: #efefef;*/
  background-color: var(--main-color);
  color: white;
  line-height: 1;
}
.page-title a {
  color: white;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.page-title a:hover {
  color: white;
  border-bottom: 1px solid white;
}

.page-desc {
  font-size: 16px;
  line-height: 1;
  margin-block: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin-block: 20px;
}

.contact-us-container input {
  margin-block: var(--margin-md);
  width: 100%;
  padding: var(--padding-sm);
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 14px;
  border-radius: 5px;
}

.contact-us-container textarea {
  width: 100%;
  resize: vertical;
  margin-block: var(--margin-md);
  padding: var(--padding-sm);
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 14px;
  border-radius: 5px;
}

.contact-us-container button {
  background-color: var(--main-color);
  color: var(--white-color);
  padding: var(--padding-sm) var(--padding-md);
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.contact-us-container button:hover {
  background-color: var(--secondary-color);
}

.contact-heading {
  font-size: 20px;
  font-weight: 600;
  margin-block: var(--margin-sm);
  line-height: 1;
}

.contact-desc {
  font-size: 16px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  padding-bottom: 15px;
}

.contact-links {
  display: flex;
  gap: 20px;
  padding-left: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 15px;
}

.contact-links i {
  color: var(--black-color);
}

/************************************
*************************************
******* / contact us page / *********
*************************************
*********************************** */
.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
}

.about-text-container {
  padding-top: var(--padding-lg);
}

.about-text-content {
  padding-block: var(--padding-sm);
}

.about-text-content h3 {
  font-size: 24px;
  line-height: 1;
}

.about-text-content p {
  font-size: 18px;
  line-height: 1.5;
}

/************************************
*************************************
********** / galley page / **********
*************************************
*********************************** */
/* gallery page */

.responsive-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: var(--margin-md);
}

.gallery-content {
  overflow: hidden;
}

.gallery-content img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  object-position: center center;
  overflow: hidden;
  border-radius: 20px;
}

/************************************
*************************************
****** / product details page / *****
*************************************
*************************************/
/* product-details */
.product-deatils-container {
  margin-block: var(--margin-md) !important;
}

.zoom-area {
  position: relative;
  cursor: none;
}

.large {
  width: 175px;
  height: 175px;
  position: absolute;
  border-radius: 100%;
  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);
  display: none;
}

.product-detail-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  object-position: center center;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}

.product-name-title {
  font-size: 26px;
  line-height: 1;
  margin-block: var(--margin-sm);
}

.product-article {
  font-size: 16px;
  line-height: 1;
}

.product-rating {
  padding-block: var(--padding-md);
}

.product-rating i {
  color: var(--main-color);
}

.product-form .add-to-cart {
  background-color: var(--main-color);
  color: var(--white-color);
  border: none;
  padding: var(--padding-sm) var(--padding-md);
  cursor: pointer;
  font-size: 16px;
  margin-right: var(--margin-sm);
  transition: all 0.3s ease-in-out;
}

.add-to-cart:hover {
  background-color: var(--secondary-color);
}

.product-form .quantity-input {
  width: 100px;
  text-align: center;
  padding: 8px;
  font-size: 16px;
}

.product-description {
  margin-block: var(--margin-sm);
  margin-bottom: var(--margin-md);
}

.product-desc-category {
  font-size: 14px;
  line-height: 1;
  margin-block: var(--margin-md);
}

.product-category-name {
  display: inline-block;
  margin-left: 20px;
  color: var(--main-color);
}

.product-rating {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: var(--margin-md);
}

/************************************
*************************************
********* / cart page / *************
*************************************
*************************************/
.cart-table {
  margin-top: var(--margin-lg);
}

.table-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  object-fit: contain;
  object-position: center center;
}

th {
  font-size: 16px;
  line-height: 1;
}

td {
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  th {
    font-size: 12px;
  }

  td {
    font-size: 10px;
  }
}




.ind-label-pic {
/*  background-color: var(--main-color);*/
  background-color: #292728;
  background-image: url('../../media/misc/labled-pic-bg.jpg');
  padding: 30px 0;
  color: white;
}

.cert-md {
  border:3px solid var(--main-color-2);
  border-radius: 30px 30px 0 0;
  margin-bottom: 30px;
  margin-right: 0px;
}
.cert-md:hover .img img {
  scale: 1.01;
  rotate: 1deg;
}
.cert-md .img {
  padding:30px;
  width: 100%;
  height: 300px;
}
.cert-md .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: 0.3s;
}
.cert-md .name {
  background-color: var(--main-color-2);
  padding:20px;
  color: var(--white-color);
}

.contact-desc-footer a {
  color: var(--white-color);
}