@charset "UTF-8";
/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
/*------------------------------------ main slider ------------------------------------*/
.mainSlider:not(.owl-loaded) {
  display: block !important;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.mainSlider:not(.owl-loaded) .owl-item:not(:first-child) {
  display: none;
}

.mainSlider:not(.owl-loaded) .owl-item img {
  height: 100%;
}

/*------------------------------------ category slider ------------------------------------*/
.categorySlider .owl-stage {
  padding: 15px 0;
}

.index-widget-header {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-widget-header__title {
  position: relative;
  padding-right: 12px;
  font-weight: 800;
  font-size: 20px;
  width: fit-content;
  margin-bottom: 12px;
}
.index-widget-header__title:after {
  position: absolute;
  content: "";
  width: 97%;
  height: 14px;
  right: 8px;
  bottom: 0;
  background: #f36f1e;
  opacity: 0.1;
}
.index-widget-header__title:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 55px;
  border-radius: 5px;
  transform: rotatez(11deg);
  right: 0;
  top: 9px;
  background: #f36f1e;
}
.index-widget-header__subtitle {
  padding-right: 16px;
  font-weight: 500;
  color: #656565;
  position: relative;
  width: fit-content;
}
.index-widget-header__subtitle:after {
  position: absolute;
  content: "";
  width: 97%;
  height: 14px;
  right: 8px;
  bottom: 0;
  background: #f36f1e;
  opacity: 0.1;
}
.index-widget-header .main-btn {
  color: #f36f1e;
  font-size: 16px;
  gap: 15px;
}
.index-widget-header .main-btn .icon-wrapper {
  background-color: #f8ebe3;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991.98px) {
  .index-widget-header__title {
    font-size: 18px;
  }
  .index-widget-header__subtitle {
    font-size: 14px;
  }
  .index-widget-header .main-btn {
    font-size: 14px;
  }
  .index-widget-header .main-btn .icon-wrapper {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .index-widget-header__title {
    font-size: 16px;
  }
  .index-widget-header__subtitle {
    font-size: 12px;
  }
}

.main-slider-sec .mainSlider {
  border-radius: 10px;
}
.main-slider-sec .mainSlider__img img {
  border-radius: 10px;
  overflow: hidden;
}
.main-slider-sec .mainSlider .owl-nav {
  position: absolute;
  top: 43%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main-slider-sec .mainSlider .owl-nav .owl-prev, .main-slider-sec .mainSlider .owl-nav .owl-next {
  background-color: #fff;
  color: #2dcea2;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.main-slider-sec .mainSlider .owl-dots {
  position: absolute;
  bottom: 15px;
  transform: translate(-50px, 5px);
  right: 42%;
}
.main-slider-sec .mainSlider .owl-dots .owl-dot span {
  display: inline-block;
  width: 12px;
  height: 12px;
  cursor: pointer;
  color: #c5c5c5;
  background: #c5c5c5;
  position: relative;
  margin: 0 8px;
}
.main-slider-sec .mainSlider .owl-dots .owl-dot span:after {
  content: "";
  border: 1px solid #c5c5c5;
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  right: -5px;
  top: -4px;
}
.main-slider-sec .mainSlider .owl-dots .owl-dot.active span {
  background-color: #2dcea2;
}
.main-slider-sec .mainSlider .owl-dots .owl-dot.active span:after {
  border-color: #2dcea2;
}

.category-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  box-shadow: 8px 8px 30px -20px rgba(42, 67, 113, 0.15);
}
.category-box:hover .category-card__content .title {
  color: #f36f1e;
}

.category-card {
  display: flex;
  align-items: center;
  background-image: url(".././images/background/shape2.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  box-shadow: 2px -2px 30px #edf0f5;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  cursor: pointer;
}
.category-card__img {
  min-width: 120px;
  width: 45%;
}
.category-card__img img {
  width: 100%;
  max-width: 120px;
}
.category-card__content .title {
  color: #121212;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 300ms;
}
.category-card__content .main-btn {
  padding: 5px;
  background-color: #fff;
  color: #f36f1e;
  box-shadow: 8px 8px 18px 0px rgba(238, 200, 172, 0.4);
  gap: 10px;
}
.category-card__content .main-btn .icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: #f36f1e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  transition: all 300ms ease-in-out;
  padding: 5px;
  display: inline-block;
  position: relative;
  width: 100%;
}
.product-card .fileIcons i {
  margin-left: 4px;
  color: #f36f1e;
  font-size: 24px;
  margin-bottom: 15px;
}
.product-card:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 1px;
  height: 100%;
  opacity: 0.3;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(173, 187, 205) 50%, rgb(255, 255, 255) 100%);
}
.product-card:hover .product-card__img:after {
  transform: rotate(0);
  bottom: 200px;
  opacity: 0;
}
.product-card:hover .product-card__img:before {
  bottom: 10px;
  transform: rotate(0);
}
.product-card__img {
  position: relative;
  width: 100%;
}
.product-card__img:before {
  content: "";
  position: absolute;
  width: 84%;
  height: 100px;
  background: rgb(173, 187, 205);
  opacity: 0.31;
  border-radius: 8px;
  z-index: -1;
  bottom: -4px;
  left: 5px;
  transform: rotate(-4deg);
  transition: all 300ms ease-in-out;
}
.product-card__img:after {
  content: "";
  position: absolute;
  width: 76%;
  height: 100px;
  background: rgb(173, 187, 205);
  opacity: 0.22;
  border-radius: 8px;
  z-index: -2;
  bottom: -8px;
  left: 20px;
  transform: rotate(-7deg);
  transition: all 300ms ease-in-out;
}
.product-card__img img {
  width: 100%;
}
.product-card__content .title {
  margin: 40px 0 20px 0;
  color: #121212;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.product-card__price {
  min-height: 30px;
  border-radius: 0 15px 0 15px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s;
}
@media screen and (max-width: 768px) {
  .product-card__price {
    margin-top: 5px;
  }
}
.product-card__price.unavailable {
  justify-content: center;
}
.product-card__price.unavailable:after {
  content: "ناموجود";
  font-size: 13px;
  font-weight: 600;
  color: rgb(250.4032258065, 164.5967741935, 164.5967741935);
}
.product-card__price .oldPrice {
  border-radius: 15px;
  color: #121212;
}
.product-card__price .old-price {
  color: red;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  .product-card__price .old-price {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  .product-card__price .old-price {
    font-size: 11px;
  }
}
.product-card__price .unit-price:after {
  content: "تومان";
  font-size: 10px;
  font-weight: 400;
  margin: 0 5px;
}
@media screen and (max-width: 480px) {
  .product-card__price .unit-price {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  .product-card__price .unit-price {
    font-size: 16px;
  }
}

.publicSlider__img img {
  width: 100%;
  height: 100%;
}
.publicSlider__content .title {
  margin: 10px 0;
  color: #121212;
}

.blog-card {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  background-color: rgb(253.8, 240.6, 232.5);
  box-shadow: 0 5px 30px rgba(70, 72, 77, 0.08);
  overflow: hidden;
}
.blog-card:hover .main-btn-primary-outline {
  border: 1px solid #2dcea2;
  background-color: #2dcea2;
  color: #fff;
}
.blog-card:hover .main-btn-secondary-outline {
  border: 1px solid #f36f1e;
  background-color: #f36f1e;
  color: #fff;
}
.blog-card:has(.blog-card__badge) {
  background-color: rgb(223.5, 247.65, 241.05);
}
.blog-card:has(.blog-card__badge) .title:before {
  background-color: #f36f1e;
}
.blog-card__img img {
  width: 100%;
}
.blog-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 10px;
  background-color: rgb(253.8, 240.6, 232.5);
  color: #f36f1e;
  font-weight: 600;
  font-size: 14px;
}
.blog-card__content {
  margin-top: 15px;
  padding: 15px;
}
.blog-card__content .title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 15px;
  height: 45px;
  color: #121212;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.blog-card__content .title:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #2dcea2;
  display: inline-block;
  margin-left: 10px;
}
.blog-card__content .subtitle {
  font-size: 13px;
  color: #656565;
  margin-bottom: 15px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.blog-card__content .more-holder {
  display: flex;
  justify-content: end;
}
.blog-card__content .main-btn {
  padding: 5px 10px;
}

.aboutUs-sec {
  padding: 40px 0 20px 0;
}
.aboutUs-sec:before {
  content: "";
  background-image: url(".././images/background/shape-5.png");
  width: 99px;
  height: 236px;
  display: inline-block;
  left: 0;
  position: absolute;
  animation-name: veritcal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
.aboutUs-sec .aboutUs {
  align-items: center;
}
.aboutUs-sec .aboutUs__img {
  position: relative;
}
.aboutUs-sec .aboutUs__img:before {
  content: "";
  background-image: url(".././images/background/shape-4.png");
  width: 511px;
  height: 445px;
  display: inline-block;
  position: absolute;
  top: -30px;
  right: -7px;
  z-index: -1;
  transform: rotate(45deg);
  animation-name: veritcal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .aboutUs-sec .aboutUs__img:before {
    background-size: 430px;
    top: -40px;
    right: -100px;
  }
}
.aboutUs-sec .aboutUs__img img {
  width: 100%;
  max-width: 470px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .aboutUs-sec .aboutUs__img img {
    max-width: 380px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .aboutUs-sec .aboutUs__img:before {
    width: 400px;
    height: 400px;
    background-size: 100%;
  }
}
@media only screen and (max-width: 991.98px) {
  .aboutUs-sec .aboutUs__img {
    text-align: center;
  }
  .aboutUs-sec .aboutUs__img:before {
    right: auto;
    left: 21%;
  }
  .aboutUs-sec .aboutUs__img img {
    max-width: 360px;
  }
}
@media only screen and (max-width: 767.98px) {
  .aboutUs-sec .aboutUs__img:before {
    left: 15%;
    right: auto;
    width: 350px;
    height: 350px;
  }
  .aboutUs-sec .aboutUs__img img {
    max-width: 300px;
  }
}
@media only screen and (max-width: 575.98px) {
  .aboutUs-sec .aboutUs__img:before {
    display: none;
  }
}
.aboutUs-sec .aboutUs__content .title {
  font-size: 25px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 30px;
}
.aboutUs-sec .aboutUs__content .subtitle {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 30px;
}
.aboutUs-sec .aboutUs__content .main-btn {
  padding: 10px 15px;
  font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
  .aboutUs-sec .aboutUs__content .title {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .aboutUs-sec .aboutUs__content .subtitle {
    font-size: 14px;
  }
}

@keyframes veritcal {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/*# sourceMappingURL=index.css.map */
