* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
  list-style: none;
  direction: rtl;
  font-family: "YEKAN PLUS";
}

/* fonts */
@font-face {
  font-family: "YEKAN PLUS";
  src: url(../assets/fonts/YEKAN\ PLUS.TTF);
}

a {
  color: black;
}

body {
  overflow-x: hidden;
}

/* header style  */
header {
  width: 100%;
  height: fit-content;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3);
}

.top-banner {
  width: 100%;
}

/* logo box style  */
.logo-and-input {
  width: 65%;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

/* div nth child 2 style  */
.between-div-on-header {
  width: 65%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.logo {
  width: 195px;
  height: auto;
  margin-left: 25px;
}

.search-input {
  padding: 15px 25px;
  width: 600px;
  border: none;
  background-color: rgb(234, 234, 234);
  border-radius: 8px;
}

/* login and register and shopping box */
.login-and-register-and-shopping-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.login-and-register-and-shopping-box img {
  width: 25px;
  height: auto;
}

.shopping-icon {
  cursor: pointer;
}

.login-and-register-btn {
  padding: 7px 15px;
  background-color: white;
  border: 1px solid rgba(205, 205, 205, 0.87);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.counter-of-products {
  background-color: #d7374b;
  color: white;
  padding: 2px 10px;
  border-radius: 12px;
  margin-right: -22px;
  cursor: pointer;
}

/* nav bar style  */
.navigation-and-categorys {
  width: 100%;
}

.navigation-and-categorys nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65%;
  margin: auto;
  padding: 10px 0;
}

.categorys {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.categorys li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.categorys li img {
  width: 25px;
  height: auto;
}

.categorys li:nth-child(3) img {
  width: 30px;
  height: auto;
}

.categorys li:nth-child(4) img {
  width: 20px;
  height: auto;
}

/* location box style */
.location li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgb(146, 146, 146);
  cursor: pointer;
}

.location li img {
  width: 25px;
  height: auto;
}

.province-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 22%;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  max-height: 80vh;
  transition: all 300ms ease;
}

.title-and-close-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.title-and-close-icon h1 {
  font-size: 48px;
}

.title-and-close-icon div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.title-and-close-icon div span {
  width: 30px;
  height: 4px;
  background-color: black;
  position: absolute;
}

.title-and-close-icon div span:nth-child(1) {
  transform: rotate(45deg);
  margin-left: 2%;
  margin-bottom: 2%;
}

.title-and-close-icon div span:nth-child(2) {
  transform: rotate(-45deg);
  margin-left: 2%;
  margin-bottom: 2%;
}

.input-and-description {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  margin-top: 10px;
  padding: 5px;
  width: 100%;
  flex-shrink: 0;
}

.input-and-description input {
  padding: 15px 25px;
  width: 100%;
  border: none;
  background-color: rgb(234, 234, 234);
  border-radius: 8px;
}

.input-and-description p {
  font-size: 18px;
  color: rgb(148, 148, 148);
  margin-bottom: 20px;
}

.province-root {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  overflow-y: scroll;
  transition: all 320ms ease;
  opacity: 1;
  visibility: visible;
}

.city-root {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
  transition: all 320ms ease;
  opacity: 0;
  visibility: hidden;
  min-height: 0;
}

.province-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(214, 214, 214);
  width: 100%;
  padding: 10px;
  color: rgb(19, 19, 19);
  cursor: pointer;
}

.province-box:first-child {
  margin-top: 1410px;
}

.province-box:last-child {
  margin-bottom: 20px;
}

.city-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(214, 214, 214);
  width: 100%;
  padding: 10px;
  color: rgb(19, 19, 19);
  cursor: pointer;
}

/* shopping card style  */

.shopping-section-modal {
  position: absolute;
  top: -250%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: fit-content;
  background-color: rgb(250, 250, 250);
  z-index: 1000;
  transition: all 400ms ease;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
  flex-direction: column;
}

.close-btn-in-modal {
  font-size: 38px;
  color: black;
  padding: 5px;
  border-radius: 4px;
  transition: all 220ms ease;
  cursor: pointer;
}

.close-btn-in-modal:hover {
  background-color: #e9e9e9;
}

.shopping-cart-section {
  width: 95%;
  max-width: 1200px;
  margin: 40px auto;
}

.shopping-cart-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 25px;
}

.shopping-cart-title h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.shopping-cart {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.products-in-shopping-cart,
.discount-and-payment-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 5px 4px rgba(0, 0, 0, 0.1);
}

.products-in-shopping-cart {
  flex: 2;
}

.shopping-cart-title-and-number-products {
  margin-bottom: 20px;
}

.shopping-cart-title-and-number-products p {
  font-size: 16px;
  font-weight: 500;
}

.number-products {
  margin-right: 10px;
  color: #ef4056;
  font-size: 14px;
}

.products-root-in-shopping-cart {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  border-top: 1px solid #eee;
  padding: 20px;
}

.col-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.232);
  margin-top: 25px;
  width: 100%;
  margin-top: 75px;
}

.product-img {
  width: 120px;
  border-radius: 8px;
}

.recycle-bin-icon {
  width: 25px;
  cursor: pointer;
  transition: all 280ms ease;
  margin-bottom: 15px;
}

.recycle-bin-icon:hover {
  transform: scale(1.05);
}

.col-two {
  flex: 1;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.232);
  margin-top: 25px;
  width: 100%;
}

.title-product-and-information h1 {
  font-size: 18px;
  margin-bottom: 10px;
}

.send {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.price-box {
  text-align: left;
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.payment-price {
  font-size: 18px;
  color: #ef4056;
  font-weight: 600;
  margin-top: 5px;
}

.discount-and-payment-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discount-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discount-section h2 {
  font-size: 16px;
}

.discount-section input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.discount-section input:focus {
  border-color: #ef4056;
}

.discount-section button {
  padding: 10px;
  background: #ef4056;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.discount-section button:hover {
  background: #d7374b;
}

.payment-price-section ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.payment-price-section h2 {
  font-size: 15px;
}

.row-three-in-payment-price-section {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.row-three-in-payment-price-section .price h2 {
  color: #ef4056;
  font-weight: 600;
}

.payment-price-section > button {
  padding: 10px;
  width: 100%;
  background: #ef4056;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.payment-price-section > button:hover {
  background: #d7374b;
}
/* shopping cart form style  */

.shopping-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 35%;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 50px;
  box-shadow: 0 0 5px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  margin-bottom: 50px;
}

.show-shopping-form {
  opacity: 1 !important;
  visibility: visible !important;
}

.shopping-form input {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  border-radius: 8px;
  background-color: rgb(232, 232, 232);
  font-size: 18px;
  border: none;
}

.addres-inp {
  grid-column: 1/3;
}

.shoppin-btn {
  padding: 15px;
  width: 100%;
  background-color: #ef4056;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  grid-column: 1/3;
}

.shoppin-btn:hover {
  background-color: #d7374b;
}

/* humber menu span style  */
.humber-menu-span {
  width: 21px;
  height: 3px;
  background-color: black;
}

.categorys li:nth-child(1) div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
}

.categorys h2,
.categorys a {
  font-size: 16px;
  color: rgb(105, 105, 105);
}

.all-categorys {
  font-size: 18px !important;
  color: black !important;
}

/* top slider style   */
.top-slider {
  width: 75%;
  height: fit-content;
  margin: auto;
  margin-top: 75px;
  display: flex;
  position: relative;
}

.imgs-slider {
  width: 100%;
  height: auto;
  opacity: 0;
  z-index: 0;
  visibility: hidden;
  transition: all 280ms ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
}

.sliders-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 350px !important;
}

/* sliders btn  */
.sliders-btn i {
  font-size: 42px;
  cursor: pointer;
  padding: 10px;
  border-radius: 20px;
  transition: all 220ms ease;
}

.sliders-btn i:hover {
  background-color: #f3f3f3;
}

/* icon and categorys style */
.categorys-icon-box {
  width: 60%;
  margin: auto;
}

.categorys-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 55px;
  cursor: pointer;
}

.categorys-icon li img {
  width: 60px;
  height: auto;
}

.categorys-icon li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.categorys-icon li:nth-child(10) h3 {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 32px;
  background-color: gainsboro;
  border-radius: 50%;
}

/* offer slider and counter and products style   */

.offer-products-slider {
  width: 60%;
  height: 350px;
  margin: auto;
  background-color: rgb(255, 0, 72);
  margin-top: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  overflow-x: scroll;
}

.offer-products-slider::-webkit-scrollbar {
  display: none;
}

.offer-products-slider-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: 20px;
}

.offer-text {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.offer-products-slider-counter a {
  color: white;
  font-size: 20px;
}

/* counter box style  */
.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.counter-box span {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.number-box-on-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 18px;
}

/* product root style  */
.products-root,
.products-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-right: 50px;
}

.products-root .products-list div:first-child {
  border-radius: 0 10px 10px 0;
}

/* product card style  */
.product-card {
  width: 175px;
  height: 320px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 5px;
}

.product-card:hover {
  cursor: pointer;
}

.product-card img {
  width: 90%;
  height: 100%;
}

.product-card h2 {
  font-size: 18px;
  color: rgb(98, 98, 98);
}

.products-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  font-size: 18px;
}

.products-price p:first-child {
  color: white;
  background-color: rgb(214, 0, 0);
  padding: 2px 5px;
  border-radius: 14px;
  margin: 10px 0;
}

.product-card > p {
  font-size: 18px;
  color: rgb(161, 161, 161);
  text-decoration: line-through;
  text-decoration-color: rgb(161, 161, 161);
}

/* see all product box style   */
.see-to-all-product {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  width: 175px;
  height: 320px;
  gap: 15px;
  margin-left: 20px;
  border-radius: 10px 0 0 10px;
}

.see-to-all-product img {
  width: 75px;
  transform: rotate(180deg);
}

.see-to-all-product a {
  font-size: 20px;
  color: rgb(59, 59, 59);
}

/* products banner style */
.products-banner {
  width: 60%;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.products-banner img {
  width: 370px;
  height: auto;
  margin-top: 25px;
  border-radius: 16px;
  cursor: pointer;
}

/* market banner */
.market-banner {
  width: 60%;
  margin: auto;
  background-color: rgb(229, 229, 229);
  background-image: url(../assets/img/freshPattern.svg);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 18px;
}

.icon-and-information-market {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.icon-and-information-market img:first-child {
  width: 70px;
  height: auto;
}

.icon-and-information-market p {
  background-color: green;
  padding: 5px 10px;
  color: white;
  font-size: 18px;
  border-radius: 12px;
  word-spacing: 4px;
}

.products-offer-on-market,
.products-offer-on-market-root {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* product price and img style on banner  */
.img-and-offer-price-box {
  position: relative;
}

.img-and-offer-price-box:hover {
  cursor: pointer;
}

.img-and-offer-price-box img {
  width: 75px;
  height: auto;
  border-radius: 50%;
}

.img-and-offer-price-box p {
  position: absolute;
  top: 60%;
  left: 60%;
  background-color: rgb(214, 0, 0);
  color: white;
  padding: 2px 5px;
  border-radius: 14px;
  font-size: 18px;
}

/*  see all products on market  */
.see-all-products-on-market {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: white;
  padding: 5px 15px;
  border-radius: 12px;
}

.see-all-products-on-market h2 {
  font-size: 18px;
  color: green;
}
.see-all-products-on-market img {
  width: 20px;
  transform: rotate(180deg);
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(86deg)
    brightness(96%) contrast(101%);
}

.see-all-products-on-market:hover {
  cursor: pointer;
}

/* products categorys icon section */
.products-categorys-icon-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 25px auto;
  flex-direction: column;
}

.products-categorys-icon-section h2 {
  font-size: 22px;
  color: rgb(59, 59, 59);
}

.all-category {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 35px;
}

.icon-and-text-product-categorys {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.icon-and-text-product-categorys img {
  width: 100px;
  height: auto;
}

/* hygiene and cosmetics banner style  */
.hygiene-and-cosmetics-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  gap: 20px;
  margin: 70px auto 25px auto;
}

.hygiene-and-cosmetics-banner img {
  border-radius: 12px;
}

/* top berands slider section style */
.top-berands-slider-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 1px solid rgb(214, 214, 214);
  width: 60%;
  margin: 25px auto;
  border-radius: 12px;
  flex-direction: column;
  padding: 20px;
  direction: ltr;
}

.berands-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.berands-title img {
  width: 20px;
  height: auto;
}

/* section logo berands style */
.logo-berands {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.for-scroll {
  overflow-x: scroll;
  width: 100%;
}

.logo-berands img {
  width: 150px;
  height: auto;
}

.logo-berands hr {
  border: 1px solid rgb(214, 214, 214);
  height: 75px;
}

/* Part of the products style  */
.part-of-the-products {
  width: 60%;
  border-radius: 12px;
  border: 1px solid rgb(214, 214, 214);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px auto;
  padding: 20px 20px 60px 20px;
}

.products-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-left: 60px;
  border-left: 1px solid rgb(214, 214, 214);
}

.products-section:nth-child(1) {
  padding-right: 30px;
}

.products-section:nth-child(4) {
  border-left: none;
}

.products-section a {
  position: absolute;
  top: 105%;
  right: 50%;
  transform: translateX(60%);
  color: #19bfd3;
}

.img-box-in-part-of-the-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.img-box-in-part-of-the-products img {
  width: 130px;
  height: auto;
  padding: 5px;
}

.img-box-in-part-of-the-products img:nth-child(1) {
  border-left: 1px solid rgb(214, 214, 214);
  border-bottom: 1px solid rgb(214, 214, 214);
}

.img-box-in-part-of-the-products img:nth-child(2) {
  border-right: 1px solid rgb(214, 214, 214);
  border-bottom: 1px solid rgb(214, 214, 214);
}

.img-box-in-part-of-the-products img:nth-child(3) {
  border-left: 1px solid rgb(214, 214, 214);
  border-top: 1px solid rgb(214, 214, 214);
}

.img-box-in-part-of-the-products img:nth-child(4) {
  border-right: 1px solid rgb(214, 214, 214);
  border-top: 1px solid rgb(214, 214, 214);
}

.products-name-and-information h1 {
  font-size: 26px;
  line-height: 28px;
}

.products-name-and-information p {
  font-size: 18px;
  color: rgb(93, 93, 93);
}

/* best products style  */
.best-products {
  width: 60%;
  border-radius: 12px;
  border: 1px solid rgb(214, 214, 214);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto;
  flex-direction: column;
  padding: 25px;
}

.best-products-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.best-products-root {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 15px;
  height: 420px;
  overflow: hidden;
  transition: all 500ms ease;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.best-product-card {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  cursor: pointer;
}

.best-product-card img {
  width: 75px;
}

.best-products-title img {
  width: 35px;
  height: auto;
  filter: invert(48%) sepia(95%) saturate(2000%) hue-rotate(10deg)
    brightness(105%) contrast(105%);
}

.best-product-card h2 {
  color: #19bfd3;
  font-size: 28px;
}

.best-product-card p {
  color: rgb(93, 93, 93);
  font-size: 18px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgb(214, 214, 214);
}

.open-all-products {
  transform: rotate(90deg);
  width: 50px;
  margin-top: 20px;
  cursor: pointer;
}

/* offer box style  */
.offer-box {
  width: 60%;
  border-radius: 12px;
  border: 1px solid rgb(214, 214, 214);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto;
  flex-direction: column;
  padding: 25px;
}

.title-offer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title-offer-box img {
  width: 30px;
  height: auto;
}

.offer-products-root {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-self: stretch;
  height: 790px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  transition: all 200ms ease;
}

.offer-product-card {
  width: 230px;
  height: 320px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 5px;
  border-top: 1px solid rgb(214, 214, 214);
  border-right: 1px solid rgb(214, 214, 214);
  border-bottom: 1px solid rgb(214, 214, 214);
  border-left: 1px solid rgb(214, 214, 214);
  cursor: pointer;
}

.offer-product-card:nth-child(1) {
  border-top: none;
  border-right: none;
}

.offer-product-card:nth-child(2) {
  border-top: none;
}

.offer-product-card:nth-child(3) {
  border-top: none;
}

.offer-product-card:nth-child(4) {
  border-top: none;
}

.offer-product-card:nth-child(5) {
  border-top: none;
}

.offer-product-card:nth-child(6) {
  border-top: none;
  border-left: none;
}

.offer-product-card:nth-child(7) {
  border-right: none;
}

.offer-product-card:nth-child(12) {
  border-left: none;
}

.offer-product-card:nth-child(13) {
  border-bottom: none;
  border-right: none;
}

.offer-product-card:nth-child(14) {
  border-bottom: none;
}

.offer-product-card:nth-child(15) {
  border-bottom: none;
}

.offer-product-card:nth-child(16) {
  border-bottom: none;
}

.offer-product-card:nth-child(17) {
  border-bottom: none;
}

.offer-product-card:nth-child(18) {
  border-right: none;
  border-bottom: none;
  border-left: none;
}

.offer-product-card img {
  width: 100%;
  height: auto;
  padding: 20px;
}

.offer-products-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  font-size: 18px;
}

.offer-product-card > p {
  font-size: 18px;
  color: rgb(161, 161, 161);
  text-decoration: line-through;
  text-decoration-color: rgb(161, 161, 161);
}

.offer-products-price p:first-child {
  color: white;
  background-color: rgb(214, 0, 0);
  padding: 2px 5px;
  border-radius: 14px;
  margin: 10px 0;
}

/* hot products style */
.hot-products {
  width: 60%;
  border-radius: 12px;
  border: 1px solid rgb(214, 214, 214);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto;
  flex-direction: column;
  padding: 25px;
}

.hot-products-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hot-products-root {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 15px;
}

.hot-product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hot-product-card img {
  width: 75px;
}

.hot-products-title img {
  width: 35px;
  height: auto;
  filter: invert(48%) sepia(95%) saturate(2000%) hue-rotate(10deg)
    brightness(105%) contrast(105%);
}

.hot-product-card h2 {
  color: #19bfd3;
  font-size: 24px;
}

.hot-product-card p {
  color: rgb(93, 93, 93);
  font-size: 18px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgb(214, 214, 214);
}

.open-all-products-hot {
  transform: rotate(90deg);
  width: 50px;
  margin-top: 20px;
  cursor: pointer;
}

/* article section style  */
.article-section {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto;
  flex-direction: column;
}

.article-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
}

.article-section-title h2 {
  font-size: 22px;
  color: rgb(59, 59, 59);
}

.article-section-title a {
  color: #19bfd3;
}

.articles {
  margin-top: 10px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgb(214, 214, 214);
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.article-card:hover img {
  transform: scale(1.08);
}

.article-card p {
  padding: 0 10px;
}

.article-card img {
  width: 100%;
  height: auto;
  transition: all 220ms ease;
}

/* footer style  */

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0 auto;
  flex-direction: column;
  border-top: 1px solid rgb(214, 214, 214);
}

/* row one on footer  */

.row-one-on-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
}

.row-one-on-footer img {
  width: 220px;
  height: auto;
}

.row-one-on-footer button {
  padding: 10px 20px;
  background-color: white;
  border: 1px solid rgb(214, 214, 214);
  border-radius: 10px;
  color: rgb(164, 164, 164);
  display: flex;
  align-items: center;
  gap: 10px;
}

.row-one-on-footer button img {
  transform: rotate(90deg);
  width: 20px;
  filter: opacity(0.5);
}

/* row two on footer  */

.information-us {
  display: flex;
  align-items: start;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  color: rgb(90, 90, 90);
  width: 60%;
}

/* row three on footer  */
.services-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 85%;
  margin: 40px 0;
  width: 55%;
}

.services-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}

/* row four  */
.navbar-in-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 60%;
  margin-top: 15px;
}

.navbar-in-footer ul {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
}

.navbar-in-footer ul h2 {
  font-size: 22px;
  color: rgb(11, 11, 11);
}

.navbar-in-footer ul li a {
  color: rgb(111, 111, 111);
  font-size: 18px;
}

/*  social div style */

.div-social-and-email {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 25px;
  flex-direction: column;
}

.div-social-and-email h2 {
  font-size: 22px;
  color: rgb(11, 11, 11);
}

.div-social-and-email p {
  font-size: 20px;
  color: rgb(11, 11, 11);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.social-icon img {
  width: 35px;
  height: auto;
  filter: opacity(0.6);
}

/*  form on footer style */

.div-social-and-email form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: -10px;
}

.div-social-and-email form input {
  width: 250px;
  height: 50px;
  padding: 5px 10px;
  border-radius: 8px;
  background-color: rgb(228, 228, 228);
  font-size: 18px;
  border: none;
}

.div-social-and-email form button {
  width: 70px;
  height: 50px;
  font-size: 18px;
  background-color: rgb(228, 228, 228);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* download section style */
.download-section {
  background-color: #3c4b6d;
  width: 60%;
  height: 75px;
  border-radius: 12px;
  margin: 25px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.logo-and-text-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-and-text-download img {
  width: 50px;
}

.logo-and-text-download h1 {
  color: white;
  font-size: 36px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.download-link a img {
  width: 150px;
  height: 55px;
}

.download-link a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.last-child {
  background-color: rgb(255, 255, 255);
  font-size: 48px;
  width: 50px;
  height: 48px;
  border-radius: 8px;
}

.last-child p {
  margin-top: -15px;
}

.permission-and-our-door {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 50px;
  width: 60%;
}

.permission-and-our-door h1 {
  font-size: 28px;
  color: rgb(92, 92, 92);
}

.permission-and-our-door h2 {
  font-size: 20px;
  color: rgb(97, 97, 97);
  margin-top: 20px;
}

.permission-and-our-door p {
  font-size: 16px;
  color: rgb(144, 144, 144);
}

.permission {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.permission a img {
  width: 70px;
  height: auto;
}

.permission a {
  width: 110px;
  height: 110px;
  padding: 10px;
  border: 1px solid rgb(214, 214, 214);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.information {
  height: 260px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  transition: all 600ms ease;
}

.btn-open-and-close-all-information-text {
  width: 10%;
  margin: -5px 20% 0 auto;
  color: #19bfd3;
  cursor: pointer;
  padding: 10px;
}

.end-hr {
  width: 60%;
  border: 1px solid rgb(227, 227, 227);
  margin-bottom: 20px;
  margin-top: 20px;
}

.permission-to-use-resources {
  width: 60%;
  display: flex;
  align-items: center;
  padding: 30px;
  color: rgb(153, 153, 153);
  justify-content: center;
}

.logos-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  background-color: rgb(241, 241, 241);
}
.row-one-logo-company-end-home-page {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: start;
}

.row-one-logo-company-end-home-page img {
  width: 150px;
  height: 60px;
  padding: 10px;
  border-bottom: 1px solid rgb(192, 192, 192);
  border-right: 1px solid rgb(192, 192, 192);
}

.row-two-logo-company-end-home-page {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: start;
}

.row-two-logo-company-end-home-page img {
  width: 150px;
  height: 60px;
  padding: 10px;
  border-right: 1px solid rgb(192, 192, 192);
}

.row-two-logo-company-end-home-page img:first-child {
  border-right: none;
}

.row-one-logo-company-end-home-page img:first-child {
  border-right: none;
}
/* add class by javascript  */

.show-slide {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.show-slide {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.p-height {
  height: fit-content !important;
  padding-bottom: 25px !important;
  overflow: visible !important;
  mask-image: none !important;
}

.p-offer-height {
  height: fit-content !important;
  padding-bottom: 25px !important;
  overflow: visible !important;
  mask-image: none !important;
}

.rotate-icon {
  transform: rotate(270deg);
  transition: all 600ms ease;
}

.city-root-disabled {
  opacity: 1 !important;
  visibility: visible !important;
}
.province-root-disabled {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none;
}

.hide-modal {
  display: none !important;
}

.open-and-max-height {
  height: 3600px !important;
  mask-image: none;
}

.show-shopping-cart {
  top: 0 !important;
}

.hide-all {
  display: none !important;
}

@media (min-width: 1920px) {
  .between-div-on-header {
    width: 75%;
    max-width: 1600px;
  }

  .search-input {
    width: 750px;
  }

  .navigation-and-categorys nav {
    width: 75%;
    max-width: 1600px;
  }

  .top-slider {
    width: 80%;
    max-width: 1600px;
  }

  .sliders-btn {
    margin-top: 480px;
  }

  .sliders-btn img {
    width: 70px;
  }

  .categorys-icon-box {
    width: 70%;
    max-width: 1600px;
  }

  .categorys-icon li img {
    width: 70px;
  }

  .categorys-icon li:nth-child(10) h3 {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .offer-products-slider {
    width: 70%;
    max-width: 1600px;
    height: 400px;
  }

  .offer-text {
    width: 180px;
  }

  .counter-box span {
    font-size: 26px;
  }

  .number-box-on-counter {
    padding: 5px 12px;
    font-size: 20px;
  }

  .product-card {
    width: 200px;
    height: 360px;
  }

  .product-card h2 {
    font-size: 20px;
  }

  .products-price {
    font-size: 20px;
  }

  .product-card > p {
    font-size: 20px;
  }

  .see-to-all-product {
    width: 200px;
    height: 360px;
  }

  .see-to-all-product img {
    width: 85px;
  }

  .see-to-all-product a {
    font-size: 22px;
  }

  .products-banner {
    width: 70%;
    max-width: 1600px;
    gap: 25px;
  }

  .products-banner img {
    width: 440px;
  }

  .market-banner {
    width: 70%;
    max-width: 1600px;
    padding: 25px;
  }

  .icon-and-information-market img:first-child {
    width: 85px;
  }

  .icon-and-information-market p {
    font-size: 20px;
    padding: 6px 12px;
  }

  .img-and-offer-price-box img {
    width: 90px;
  }

  .img-and-offer-price-box p {
    font-size: 20px;
  }

  .see-all-products-on-market h2 {
    font-size: 20px;
  }

  .see-all-products-on-market img {
    width: 24px;
  }

  .products-categorys-icon-section {
    width: 70%;
    max-width: 1600px;
  }

  .products-categorys-icon-section h2 {
    font-size: 26px;
  }

  .all-category {
    grid-template-columns: repeat(9, 1fr);
    gap: 45px;
  }

  .icon-and-text-product-categorys img {
    width: 120px;
  }

  .icon-and-text-product-categorys p {
    font-size: 18px;
  }

  .hygiene-and-cosmetics-banner {
    width: 70%;
    max-width: 1600px;
    gap: 25px;
  }

  .hygiene-and-cosmetics-banner img {
    width: 100%;
  }

  .top-berands-slider-section {
    width: 70%;
    max-width: 1600px;
    padding: 25px;
  }

  .berands-title img {
    width: 24px;
  }

  .berands-title h1 {
    font-size: 24px;
  }

  .logo-berands img {
    width: 170px;
  }

  .logo-berands hr {
    height: 85px;
  }

  .part-of-the-products {
    width: 70%;
    max-width: 1600px;
    padding: 25px 25px 70px 25px;
  }

  .products-section {
    padding-left: 70px;
  }

  .products-section:nth-child(1) {
    padding-right: 40px;
  }

  .img-box-in-part-of-the-products img {
    width: 150px;
  }

  .products-name-and-information h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .products-name-and-information p {
    font-size: 20px;
  }

  .products-section a {
    font-size: 18px;
  }

  .best-products {
    width: 70%;
    max-width: 1600px;
    padding: 30px;
  }

  .best-products-title img {
    width: 40px;
  }

  .best-products-title h1 {
    font-size: 26px;
  }

  .best-products-root {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    height: 480px;
  }

  .best-product-card img {
    width: 90px;
  }

  .best-product-card h2 {
    font-size: 30px;
  }

  .best-product-card p {
    font-size: 20px;
    padding-bottom: 50px;
  }

  .open-all-products {
    width: 60px;
    margin-top: 25px;
  }

  .offer-box {
    width: 70%;
    max-width: 1600px;
    padding: 30px;
  }

  .title-offer-box img {
    width: 36px;
  }

  .title-offer-box h2 {
    font-size: 26px;
  }

  .offer-products-root {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 25px;
  }

  .offer-product-card {
    width: 260px;
    height: 360px;
    padding: 12px 6px;
  }

  .offer-product-card img {
    padding: 24px;
  }

  .offer-products-price {
    font-size: 20px;
  }

  .offer-product-card > p {
    font-size: 20px;
  }

  .hot-products {
    width: 70%;
    max-width: 1600px;
    padding: 30px;
  }

  .hot-products-title img {
    width: 40px;
  }

  .hot-products-title h1 {
    font-size: 26px;
  }

  .hot-products-root {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }

  .hot-product-card img {
    width: 90px;
  }

  .hot-product-card h2 {
    font-size: 28px;
  }

  .hot-product-card p {
    font-size: 20px;
    padding-bottom: 50px;
  }

  .open-all-products-hot {
    width: 60px;
    margin-top: 25px;
  }

  .article-section {
    width: 70%;
    max-width: 1600px;
  }

  .article-section-title h2 {
    font-size: 26px;
  }

  .article-section-title a {
    font-size: 18px;
  }

  .articles {
    gap: 25px;
  }

  .article-card {
    height: 360px;
  }

  .article-card p {
    font-size: 18px;
    padding: 0 12px;
  }

  .row-one-on-footer {
    width: 70%;
    max-width: 1600px;
    padding: 25px 0;
  }

  .row-one-on-footer img {
    width: 250px;
  }

  .row-one-on-footer button {
    padding: 12px 24px;
    font-size: 18px;
  }

  .row-one-on-footer button img {
    width: 24px;
  }

  .information-us {
    width: 70%;
    max-width: 1600px;
    gap: 25px;
    font-size: 18px;
  }

  .services-section {
    width: 65%;
    max-width: 1400px;
    margin: 50px 0;
  }

  .services-icon img {
    width: 70px;
  }

  .services-icon p {
    font-size: 18px;
  }

  .navbar-in-footer {
    width: 70%;
    max-width: 1600px;
    margin-top: 20px;
  }

  .navbar-in-footer ul {
    gap: 25px;
  }

  .navbar-in-footer ul h2 {
    font-size: 24px;
  }

  .navbar-in-footer ul li a {
    font-size: 19px;
  }

  .div-social-and-email h2 {
    font-size: 24px;
  }

  .div-social-and-email p {
    font-size: 22px;
  }

  .social-icon img {
    width: 40px;
  }

  .div-social-and-email form input {
    width: 280px;
    height: 55px;
    font-size: 19px;
  }

  .div-social-and-email form button {
    width: 80px;
    height: 55px;
    font-size: 19px;
  }

  .download-section {
    width: 70%;
    max-width: 1600px;
    height: 85px;
    padding: 20px;
  }

  .logo-and-text-download img {
    width: 60px;
  }

  .logo-and-text-download h1 {
    font-size: 40px;
  }

  .download-link a img {
    width: 170px;
    height: 62px;
  }

  .last-child {
    width: 55px;
    height: 55px;
    font-size: 52px;
  }

  .permission-and-our-door {
    width: 70%;
    max-width: 1600px;
    gap: 60px;
  }

  .permission-and-our-door h1 {
    font-size: 30px;
  }

  .permission-and-our-door h2 {
    font-size: 22px;
    margin-top: 25px;
  }

  .permission-and-our-door p {
    font-size: 18px;
    line-height: 32px;
  }

  .permission a img {
    width: 80px;
  }

  .permission a {
    width: 120px;
    height: 120px;
  }

  .btn-open-and-close-all-information-text {
    font-size: 18px;
    padding: 12px;
  }

  .end-hr {
    width: 70%;
    max-width: 1600px;
  }

  .permission-to-use-resources {
    width: 70%;
    max-width: 1600px;
    font-size: 17px;
    padding: 35px;
  }

  .row-one-logo-company-end-home-page img {
    width: 170px;
    height: 70px;
  }

  .row-two-logo-company-end-home-page img {
    width: 170px;
    height: 70px;
  }

  section {
    margin: 35px auto;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 18px;
  }

  a {
    font-size: 18px;
  }
}

@media screen and (max-width: 1800px) {
  .between-div-on-header,
  .logo-and-input,
  .navigation-and-categorys nav,
  .categorys-icon-box,
  .offer-products-slider,
  .products-banner,
  .market-banner,
  .products-categorys-icon-section,
  .hygiene-and-cosmetics-banner,
  .top-berands-slider-section,
  .part-of-the-products,
  .best-products,
  .offer-box,
  .hot-products,
  .article-section,
  .row-one-on-footer,
  .information-us,
  .navbar-in-footer,
  .download-section,
  .permission-and-our-door,
  .end-hr,
  .permission-to-use-resources {
    width: 75%;
  }

  .services-section {
    width: 70%;
  }

  .sliders-btn {
    margin-top: 270px !important;
  }

  .products-banner img {
    width: 290px;
  }

  .icon-and-information-market {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .icon-and-information-market img:first-child {
    width: 70px;
    height: auto;
  }

  .icon-and-information-market p {
    background-color: green;
    padding: 5px 10px;
    color: white;
    font-size: 18px;
    border-radius: 12px;
    word-spacing: 4px;
  }

  .products-offer-on-market,
  .products-offer-on-market-root {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* product price and img style on banner  */

  .img-and-offer-price-box img {
    width: 55px;
    height: auto;
    border-radius: 50%;
  }

  .img-and-offer-price-box p {
    position: absolute;
    top: 60%;
    left: 60%;
    background-color: rgb(214, 0, 0);
    color: white;
    padding: 2px 5px;
    border-radius: 14px;
    font-size: 16px;
  }

  .icon-and-information-market img:first-child {
    width: 60px;
    height: auto;
  }

  .icon-and-information-market img {
    width: 230px;
  }

  .hygiene-and-cosmetics-banner img {
    width: 590px;
  }

  .img-box-in-part-of-the-products img {
    width: 85px;
  }

  .products-name-and-information h1 {
    font-size: 22px;
  }
  .products-name-and-information p {
    font-size: 16px;
  }

  .best-product-card p {
    font-size: 14px;
  }

  .best-product-card img {
    width: 100px;
  }

  .offer-product-card {
    padding: 5px;
    width: 100%;
  }

  .offer-box {
    padding: 10px;
  }

  .offer-product-card img {
    width: 140px;
  }

  footer {
    padding-top: 15px;
  }
}

@media screen and (max-width: 1600px) {
  .between-div-on-header,
  .logo-and-input,
  .navigation-and-categorys nav,
  .categorys-icon-box,
  .offer-products-slider,
  .products-banner,
  .market-banner,
  .products-categorys-icon-section,
  .hygiene-and-cosmetics-banner,
  .top-berands-slider-section,
  .part-of-the-products,
  .best-products,
  .offer-box,
  .hot-products,
  .article-section,
  .row-one-on-footer,
  .information-us,
  .navbar-in-footer,
  .download-section,
  .permission-and-our-door,
  .end-hr,
  .permission-to-use-resources {
    width: 85%;
  }

  .login-and-register-btn p {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  .between-div-on-header,
  .logo-and-input,
  .navigation-and-categorys nav,
  .categorys-icon-box,
  .offer-products-slider,
  .products-banner,
  .market-banner,
  .products-categorys-icon-section,
  .hygiene-and-cosmetics-banner,
  .top-berands-slider-section,
  .part-of-the-products,
  .best-products,
  .offer-box,
  .hot-products,
  .article-section,
  .row-one-on-footer,
  .information-us,
  .navbar-in-footer,
  .download-section,
  .permission-and-our-door,
  .end-hr,
  .permission-to-use-resources {
    width: 95%;
  }
}

.products-banner img {
  width: 290px;
}

@media screen and (max-width: 1260px) {
  .between-div-on-header,
  .logo-and-input,
  .navigation-and-categorys nav,
  .categorys-icon-box,
  .offer-products-slider,
  .products-banner,
  .market-banner,
  .products-categorys-icon-section,
  .hygiene-and-cosmetics-banner,
  .top-berands-slider-section,
  .part-of-the-products,
  .best-products,
  .offer-box,
  .hot-products,
  .article-section,
  .row-one-on-footer,
  .information-us,
  .navbar-in-footer,
  .download-section,
  .permission-and-our-door,
  .end-hr,
  .permission-to-use-resources {
    width: 99%;
  }

  .row-one-logo-company-end-home-page img {
    border: none;
  }

  .row-two-logo-company-end-home-page img {
    border: none;
  }
}

@media screen and (max-width: 1024px) {
  .between-div-on-header,
  .logo-and-input,
  .navigation-and-categorys nav,
  .categorys-icon-box,
  .offer-products-slider,
  .products-banner,
  .market-banner,
  .products-categorys-icon-section,
  .hygiene-and-cosmetics-banner,
  .top-berands-slider-section,
  .part-of-the-products,
  .best-products,
  .offer-box,
  .hot-products,
  .article-section,
  .row-one-on-footer,
  .information-us,
  .navbar-in-footer,
  .download-section,
  .permission-and-our-door,
  .end-hr,
  .permission-to-use-resources {
    width: 90%;
  }

  .top-slider {
    width: 95%;
    margin-top: 50px;
  }

  .services-section {
    width: 85%;
  }

  .logo {
    width: 150px;
    margin-left: 15px;
  }

  .search-input {
    width: 400px;
    padding: 12px 20px;
  }

  .categorys h2 {
    font-size: 14px;
  }

  .categorys li img {
    width: 22px;
  }

  .categorys-icon li img {
    width: 50px;
  }

  .all-category {
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
  }

  .best-products-root,
  .hot-products-root {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .offer-products-root {
    grid-template-columns: repeat(4, 1fr);
  }

  .offer-product-card {
    width: 200px;
  }

  .articles {
    gap: 15px;
  }

  .part-of-the-products {
    padding: 15px 15px 50px 15px;
  }

  .products-section {
    padding-left: 40px;
  }

  .img-box-in-part-of-the-products img {
    width: 110px;
  }

  .sliders-btn {
    margin-top: 350px;
  }

  .sliders-btn img {
    width: 50px;
  }

  .products-banner img {
    width: 280px;
  }

  .row-one-logo-company-end-home-page {
    grid-template-columns: repeat(6, 1fr);
  }

  .row-two-logo-company-end-home-page {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .top-banner {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
  }

  .between-div-on-header {
    width: 95%;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  .logo-and-input {
    width: 100%;
    padding: 5px 10px;
  }

  .logo {
    width: 120px;
    margin-left: 10px;
  }

  .search-input {
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    font-size: 14px;
  }

  .login-and-register-and-shopping-box {
    width: 100%;
    justify-content: space-around;
    gap: 15px;
    padding: 0 10px;
  }

  .login-and-register-btn {
    padding: 5px 10px;
    font-size: 12px;
  }

  .login-and-register-and-shopping-box img {
    width: 22px;
  }

  .navigation-and-categorys nav {
    width: 95%;
    flex-direction: column;
    gap: 10px;
  }

  .categorys {
    width: 100%;
    gap: 15px;
    justify-content: flex-start;
  }

  .categorys li:nth-child(2),
  .categorys li:nth-child(3),
  .categorys li:nth-child(4),
  .categorys li:nth-child(5),
  .categorys li:nth-child(6),
  .categorys li:nth-child(7),
  .categorys li:nth-child(8),
  .categorys li:nth-child(9) {
    display: none !important;
  }

  .categorys h2,
  .categorys a {
    font-size: 14px;
  }

  .all-categorys {
    font-size: 16px !important;
  }

  .location {
    width: 100%;
    justify-content: center;
    padding: 8px 0;
  }

  .location li {
    font-size: 13px;
  }

  .location li img {
    width: 20px;
  }

  .province-modal {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    max-height: 80vh;
  }

  .title-and-close-icon h1 {
    font-size: 28px;
  }

  .input-and-description input {
    padding: 12px 20px;
    font-size: 14px;
  }

  .input-and-description p {
    font-size: 15px;
  }

  .top-slider {
    width: 95%;
    margin-top: 30px;
  }

  .sliders-btn {
    margin-top: 100px !important;
    gap: 20px;
  }

  .sliders-btn i {
    font-size: 36px !important;
  }

  .categorys-icon-box {
    width: 95%;
    margin-top: 35px;
  }

  .categorys-icon {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .categorys-icon li {
    gap: 8px;
  }

  .categorys-icon li img {
    width: 45px;
  }

  .categorys-icon li:nth-child(10) h3 {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .categorys-icon li p {
    font-size: 11px;
    text-align: center;
  }

  .offer-products-slider {
    width: 95%;
    height: auto;
    flex-direction: column;
    padding: 20px 15px;
    margin-top: 35px;
    overflow-x: visible;
  }

  .offer-products-slider-counter {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .offer-text {
    width: 120px;
    margin-bottom: 15px;
  }

  .counter-logo {
    width: 80px;
  }

  .offer-products-slider-counter a {
    font-size: 16px;
  }

  .counter-box {
    gap: 4px;
  }

  .counter-box span {
    font-size: 18px;
  }

  .number-box-on-counter {
    padding: 4px 9px;
    font-size: 15px;
  }

  .products-root {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-right: 0;
  }

  .products-list {
    gap: 10px;
    padding: 5px;
    margin-right: 0;
  }

  .product-card {
    width: 150px;
    min-width: 150px;
    height: 290px;
    flex-shrink: 0;
  }

  .product-card:first-child {
    margin-right: 3820px;
  }

  .product-card img {
    width: 90%;
  }

  .product-card h2 {
    font-size: 15px;
    padding: 0 5px;
  }

  .products-price {
    font-size: 15px;
    width: 92%;
  }

  .products-price p:first-child {
    font-size: 13px;
  }

  .product-card > p {
    font-size: 13px;
  }

  .see-to-all-product {
    width: 150px;
    min-width: 150px;
    height: 290px;
    margin-left: 10px;
    gap: 12px;
  }

  .see-to-all-product img {
    width: 60px;
  }

  .see-to-all-product a {
    font-size: 17px;
  }

  .products-banner {
    width: 95%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .products-banner img {
    width: 48%;
    margin-top: 15px;
  }
  .market-banner {
    width: 95%;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }

  .icon-and-information-market {
    width: 100%;
    justify-content: space-between;
  }

  .icon-and-information-market img:first-child {
    width: 45px;
  }

  .icon-and-information-market img:nth-child(2) {
    width: 155px;
  }

  .icon-and-information-market p {
    font-size: 15px;
    padding: 5px 12px;
  }

  .products-offer-on-market {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .products-offer-on-market-root {
    gap: 10px;
    padding: 5px;
  }

  .img-and-offer-price-box:first-child {
    margin-right: 150px;
  }

  .p-height {
    height: fit-content !important;
  }

  .img-and-offer-price-box img {
    width: 65px;
  }

  .img-and-offer-price-box p {
    font-size: 15px;
  }

  .see-all-products-on-market {
    padding: 5px 15px;
    gap: 8px;
  }

  .see-all-products-on-market h2 {
    font-size: 15px;
  }

  .see-all-products-on-market img {
    width: 18px;
  }

  .products-categorys-icon-section {
    width: 95%;
    margin: 30px auto;
  }

  .products-categorys-icon-section h2 {
    font-size: 20px;
  }

  .all-category {
    margin-top: 25px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .icon-and-text-product-categorys img {
    width: 80px;
  }

  .icon-and-text-product-categorys p {
    font-size: 13px;
    text-align: center;
  }

  .hygiene-and-cosmetics-banner {
    width: 95%;
    flex-wrap: wrap;
    gap: 12px;
    margin: 35px auto 20px auto;
  }

  .hygiene-and-cosmetics-banner img {
    width: 100%;
  }

  .top-berands-slider-section {
    width: 95%;
    padding: 20px 15px;
  }

  .berands-title h1 {
    font-size: 18px;
  }

  .berands-title img {
    width: 20px;
  }

  .for-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .logo-berands {
    gap: 18px;
    padding: 10px 5px;
  }

  .logo-berands img {
    width: 110px;
    min-width: 110px;
  }

  .logo-berands hr {
    height: 60px;
  }

  .part-of-the-products {
    width: 95%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 15px 50px 15px;
  }

  .products-section {
    width: 48%;
    padding: 0;
    border-left: none;
    border-bottom: 1px solid rgb(214, 214, 214);
    padding-bottom: 15px;
  }

  .products-section:nth-child(1) {
    padding-right: 0;
  }

  .products-section:nth-child(3),
  .products-section:nth-child(4) {
    border-bottom: none;
  }

  .products-section a {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 12px;
  }

  .products-name-and-information h1 {
    font-size: 19px;
    line-height: 26px;
  }

  .products-name-and-information p {
    font-size: 14px;
  }

  .img-box-in-part-of-the-products {
    width: 250px;
    gap: 25px;
    margin: 12px auto;
  }

  .img-box-in-part-of-the-products img {
    width: 100%;
    max-width: 120px;
  }

  .best-products {
    width: 95%;
    padding: 20px 15px;
  }

  .best-products-title img {
    width: 30px;
  }

  .best-products-title h1 {
    font-size: 19px;
  }

  .best-products-root {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 650px;
    margin-top: 20px;
  }

  .best-product-card {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .best-product-card img {
    width: 70px;
  }

  .best-product-card h2 {
    font-size: 22px;
  }

  .best-product-card p {
    font-size: 14px;
    padding-bottom: 25px;
  }

  .open-all-products {
    width: 45px;
    margin-top: 18px;
  }

  .offer-box {
    width: 95%;
    padding: 20px 15px;
  }

  .title-offer-box {
    gap: 10px;
  }

  .title-offer-box h2 {
    font-size: 19px;
  }

  .title-offer-box img {
    width: 28px;
  }

  .offer-products-root {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 1100px;
    margin-top: 20px;
  }

  .offer-product-card {
    width: 100%;
    height: 290px;
    padding: 10px 5px;
  }

  .offer-product-card img {
    padding: 15px;
  }

  .offer-product-card h2 {
    font-size: 14px;
    text-align: center;
  }

  .offer-products-price {
    width: 88%;
    font-size: 14px;
  }

  .offer-products-price p:first-child {
    font-size: 13px;
  }

  .offer-product-card > p {
    font-size: 13px;
  }

  .open-all-products-hot {
    width: 45px;
    margin-top: 18px;
  }

  .hot-products {
    width: 95%;
    padding: 20px 15px;
  }

  .hot-products-title img {
    width: 30px;
  }

  .hot-products-title h1 {
    font-size: 19px;
  }

  .hot-products-root {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
  }

  .hot-product-card {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hot-product-card img {
    width: 70px;
  }

  .hot-product-card h2 {
    font-size: 22px;
  }

  .hot-product-card p {
    font-size: 14px;
    padding-bottom: 25px;
  }

  .article-section {
    width: 95%;
    margin: 30px auto;
  }

  .article-section-title {
    flex-wrap: wrap;
    gap: 12px;
  }

  .article-section-title h2 {
    font-size: 19px;
  }

  .article-section-title a {
    font-size: 15px;
  }

  .articles {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
  }

  .article-card {
    width: 48%;
    height: 350px !important;
  }

  .article-card p {
    font-size: 14px;
    padding: 10px;
  }

  footer {
    margin-top: 35px;
  }

  .row-one-on-footer {
    width: 95%;
    flex-wrap: wrap;
    gap: 18px;
    padding: 20px 0;
  }

  .row-one-on-footer img {
    width: 160px;
  }

  .row-one-on-footer button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
  }

  .information-us {
    width: 95%;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 13px;
  }

  .information-us p:nth-child(2),
  .information-us p:nth-child(4) {
    display: none;
  }

  .services-section {
    width: 95%;
    flex-wrap: wrap;
    gap: 20px;
    margin: 35px auto;
  }

  .services-icon {
    width: 48%;
    flex-direction: row;
    gap: 12px;
  }

  .services-icon img {
    width: 45px;
  }

  .services-icon p {
    font-size: 13px;
  }

  .navbar-in-footer {
    width: 95%;
    flex-wrap: wrap;
    gap: 30px;
  }

  .navbar-in-footer ul {
    width: 48%;
    gap: 15px;
  }

  .navbar-in-footer ul h2 {
    font-size: 19px;
  }

  .navbar-in-footer ul li a {
    font-size: 15px;
  }

  .div-social-and-email {
    width: 100%;
    gap: 18px;
  }

  .div-social-and-email h2 {
    font-size: 19px;
  }

  .div-social-and-email p {
    font-size: 17px;
  }

  .social-icon {
    width: 100%;
  }

  .social-icon img {
    width: 32px;
  }

  .div-social-and-email form {
    flex-wrap: wrap;
    gap: 12px;
  }

  .div-social-and-email form input {
    width: 100%;
    font-size: 15px;
    height: 48px;
  }

  .div-social-and-email form button {
    width: 100%;
    font-size: 15px;
    height: 48px;
  }

  .download-section {
    width: 95%;
    height: auto;
    flex-direction: column;
    gap: 18px;
    padding: 25px 20px;
  }

  .logo-and-text-download {
    gap: 12px;
  }

  .logo-and-text-download img {
    width: 45px;
  }

  .logo-and-text-download h1 {
    font-size: 24px;
  }

  .download-link {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .download-link a img {
    width: 130px;
    height: 50px;
  }

  .last-child {
    width: 50px;
    height: 50px;
    font-size: 40px;
  }

  .permission-and-our-door {
    width: 95%;
    flex-direction: column;
    gap: 30px;
  }

  .permission-and-our-door h1 {
    font-size: 22px;
  }

  .permission-and-our-door h2 {
    font-size: 17px;
  }

  .permission-and-our-door p {
    font-size: 14px;
    line-height: 1.9;
  }

  .permission {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .permission a {
    width: 95px;
    height: 95px;
  }

  .permission a img {
    width: 65px;
  }

  .information {
    height: 320px;
  }

  .btn-open-and-close-all-information-text {
    width: 30%;
    text-align: center;
    margin: 15px auto;
  }

  .end-hr {
    width: 95%;
  }

  .permission-to-use-resources {
    width: 95%;
    text-align: center;
    font-size: 13px;
    line-height: 1.9;
    padding: 25px 15px;
  }

  .logos-section {
    padding: 12px;
  }

  .row-one-logo-company-end-home-page {
    grid-template-columns: repeat(4, 1fr);
  }

  .row-one-logo-company-end-home-page img {
    width: 100%;
    height: 55px;
    border: none;
  }

  .row-two-logo-company-end-home-page {
    grid-template-columns: repeat(4, 1fr);
  }

  .row-two-logo-company-end-home-page img {
    width: 100%;
    height: 55px;
    border: none;
  }

  .province-box:first-child {
    margin-top: 1650px;
  }

  .shopping-cart {
    flex-direction: column;
  }

  .products-in-shopping-cart {
    width: 100%;
  }

  .discount-and-payment-section {
    width: 100%;
  }

  .shopping-form {
    width: 95%;
  }
}

@media screen and (max-width: 600px) {
  .logo-and-input {
    flex-direction: column;
    gap: 12px;
  }

  .logo {
    width: 140px;
    margin-left: 0;
  }

  .search-input {
    width: 100%;
  }

  .categorys-icon {
    grid-template-columns: repeat(4, 1fr);
  }

  .all-category {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .products-banner img {
    width: 100%;
  }

  .hygiene-and-cosmetics-banner img {
    width: 100%;
  }

  .part-of-the-products {
    flex-direction: column;
  }

  .products-section {
    width: 100%;
  }

  .best-products-root,
  .hot-products-root {
    grid-template-columns: repeat(1, 1fr);
    height: 900px;
  }

  .offer-products-root {
    grid-template-columns: repeat(2, 1fr);
    height: 1400px;
  }

  .articles {
    flex-direction: column;
  }

  .article-card {
    width: 100%;
    height: 300px;
  }

  .navbar-in-footer {
    flex-direction: column;
  }

  .navbar-in-footer ul {
    width: 100%;
  }

  .services-icon {
    width: 100%;
  }

  .row-one-logo-company-end-home-page,
  .row-two-logo-company-end-home-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .row-one-logo-company-end-home-page img,
  .row-two-logo-company-end-home-page img {
    width: 100%;
    height: 52px;
    border: none;
  }
}
