/*
// TODO: adding all archive pages styles to this file.
         such as blog archive card, product archive card and etc.
*/
/*---------------------------------- 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 ----------------------------------*/
.product {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.product img {
  width: 100%;
  aspect-ratio: 4/5;
}
.product .common-card__body {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  width: 80%;
  padding: 24px;
  padding-left: 70px;
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__body {
    bottom: 35px;
    width: 70%;
    padding: 12px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 991.98px) {
  .product .common-card__body {
    width: 85%;
  }
}
@media screen and (max-width: 480.98px) {
  .product .common-card__body {
    width: 95%;
    bottom: 10px;
  }
}
@media (min-width: 1400px) {
  .product .common-card__body {
    padding: 30px;
    padding-left: 80px;
  }
}
.product .common-card__title {
  color: #8b6026;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__title {
    font-size: 15px;
  }
}
@media screen and (max-width: 480.98px) {
  .product .common-card__title {
    font-size: 12px;
    font-weight: 800;
  }
}
.product .common-card__collection {
  position: relative;
  width: fit-content;
  color: black;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 480.98px) {
  .product .common-card__collection {
    font-size: 12px;
  }
}
.product .common-card__collection:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: black;
  bottom: 0;
  right: 0;
  display: block;
  transition: 0.3s ease-in;
}
.product .common-card__collection:hover:after {
  width: 100%;
}
.product .common-card__redirect {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  background: #8b6026;
  border-radius: 20px;
  border-bottom-right-radius: 80px;
  line-height: 0;
  font-size: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1400px) {
  .product .common-card__redirect {
    padding: 30px;
  }
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__redirect {
    padding: 15px;
  }
}
@media screen and (max-width: 480.98px) {
  .product .common-card__redirect {
    padding: 10px;
  }
}
.product .common-card__redirect .product-icon {
  rotate: 45deg;
  font-size: 24px;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__redirect .product-icon {
    font-size: 15px;
  }
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__redirect .product-icon {
    font-size: 12px;
  }
}
.product .common-card__redirect:hover .product-icon {
  rotate: 0deg;
}

.myplayer {
  position: relative;
  display: flex;
  direction: ltr;
  overflow: hidden;
  transition: 0.2s all;
}
.myplayer input {
  font-family: "Vazir" !important;
}
.myplayer button {
  font-family: "Vazir" !important;
}
.myplayer video {
  width: 100%;
}
.myplayer .myplayer__controls {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #444;
}
.myplayer .controls__progressbar {
  height: 6px;
  background: #e1e1e1;
  width: 100%;
}
.myplayer .controls__progressbar-current {
  -webkit-appearance: none;
  -moz-apperance: none;
  height: 6px;
  margin: 0;
  position: absolute;
  width: 100%;
  background: linear-gradient(90deg, rgb(230, 126, 34) 0%, #e1e1e1 0%);
}
.myplayer .controls__progressbar-current::-moz-range-track {
  border: none;
  background: none;
  outline: none;
}
.myplayer .controls__progressbar-current:focus {
  outline: none;
  border: none;
}
.myplayer .controls__progressbar-current::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  background-color: transparent;
  height: 13px;
  width: 13px;
}
.myplayer:hover .controls__btns {
  display: flex;
}
.myplayer .controls__btns {
  margin: 10px 15px;
  color: white;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.myplayer .controls__btns .right {
  display: flex;
  align-items: center;
}
.myplayer .controls__btns .right .btns:not(:last-child) {
  margin-right: 20px;
}
.myplayer .controls__btns .left {
  display: flex;
  align-items: center;
}
.myplayer .controls__btns .left .btns:not(:first-child) {
  margin-left: 20px;
}
.myplayer .controls__btns .btns {
  font-size: 1.3em;
  cursor: pointer;
}
.myplayer .btns.play {
  color: white;
}
.myplayer .btns.volume {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.myplayer .volume__progress {
  transform: rotate(-90deg);
  position: absolute;
  top: -50px;
  display: none;
}
.myplayer .volume__progress input[type=range] {
  display: flex;
}
.myplayer .volume__progress.active {
  display: block;
}
.myplayer .volume__progress.avtive {
  display: block;
}
.myplayer .timer {
  margin-left: 20px;
}

.volume__progress .controls__progressbar-current::-moz-range-thumb {
  -moz-appearance: none !important;
  background-color: transparent;
  border: none;
  height: 13px;
  width: 13px;
}
.volume__progress input[type=range] {
  -webkit-appearance: none;
  -moz-apperance: none;
  border-radius: 6px;
  height: 6px;
  width: 77px;
  background: linear-gradient(90deg, rgb(230, 126, 34) 50%, #e1e1e1 50%);
}
.volume__progress input[type=range]:focus {
  outline: none;
  border: none;
}
.volume__progress input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  background-color: #e67e22;
  height: 13px;
  width: 13px;
  border-radius: 50%;
}
.volume__progress input[type=range]::-moz-range-thumb {
  -moz-appearance: none !important;
  background-color: #e67e22;
  border: none;
  height: 13px;
  width: 13px;
  border-radius: 50%;
}
.volume__progress input[type=range]::-moz-range-track {
  border: none;
  background: none;
  outline: none;
}

.blog {
  border-radius: 8px;
  overflow: hidden;
}
.blog__container {
  position: relative;
}
.blog__container:hover .blog__content {
  background: linear-gradient(0deg, rgb(94, 60, 16) 0%, rgba(139, 96, 66, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}
.blog__container:hover img {
  transform: scale(1.06);
}
.blog__container img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  transition: 0.3s ease-in;
}
.blog__content {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px 20px;
  gap: 14px;
  transition: 0.3s ease-in;
}
.blog__content h6 {
  font-weight: 700;
  font-size: 19px;
  line-height: 30px;
  color: white;
  height: 60px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1199.98px) {
  .blog__content h6 {
    font-size: 16px;
  }
}
.blog__info {
  display: flex;
  align-items: center;
  color: white;
  gap: 20px;
  font-size: 14px;
}
@media screen and (max-width: 1199.98px) {
  .blog__info {
    font-size: 12px;
  }
}
@media screen and (max-width: 991.98px) {
  .blog__info {
    font-size: 9px;
  }
}
@media screen and (max-width: 480.98px) {
  .blog__info {
    font-size: 8px;
  }
}
.blog__info div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.gallery-archive-card {
  display: block;
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  transition: all 300ms linear;
  /* gallery archive card hover */
  /* gallery archive card before */
  /* gallery archive card img */
  /* gallery archive card */
}
.gallery-archive-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6029762247) 0, rgba(0, 0, 0, 0.2976540958) 35%, rgba(0, 0, 0, 0.154796953) 58%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.gallery-archive-card:hover {
  box-shadow: none;
}
.gallery-archive-card:hover .gallery-archive-card__img,
.gallery-archive-card:hover .gallery-archive-card__title {
  filter: blur(2px);
}
.gallery-archive-card:hover::after {
  transform: translateY(-50%) translateX(calc(-1 * -50%));
  opacity: 1;
}
.gallery-archive-card::after {
  content: "\e990";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-80%) translateX(calc(-1 * -50%));
  padding: 15px;
  font-size: 22px;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
  background-color: #fff;
  color: #064b81;
  transition: all 300ms linear;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.gallery-archive-card__img {
  width: 100%;
  transition: all 300ms linear;
}
.gallery-archive-card__title {
  position: absolute;
  bottom: 10px;
  right: 0;
  padding: 0 10px;
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  z-index: 3;
  transition: all 300ms linear;
  text-align: center;
  width: 100%;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* gallery archive card */
.pages-title .title {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding-right: 20px;
}

#main-header {
  background: rgb(232, 223, 212);
}

.mt-header {
  margin-bottom: 8rem;
}

#playButton {
  visibility: hidden;
}

iframe {
  width: 100%;
}

video {
  width: 100%;
}

.vedeo-archives img {
  width: 100%;
  border-radius: 5px;
}

.play-vedeo {
  position: absolute;
  top: 8rem;
  left: 13rem;
  width: 36px;
  height: 34px;
  background: #d8d4d4;
  padding: 8px;
  border-radius: 50px;
}
@media screen and (max-width: 1399px) {
  .play-vedeo {
    top: 6rem;
    left: 11rem;
  }
}
@media screen and (max-width: 1199.98px) {
  .play-vedeo {
    top: 5rem;
    left: 9rem;
  }
}
@media screen and (max-width: 999.98px) {
  .play-vedeo {
    top: 4rem;
    left: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .play-vedeo {
    top: 10rem;
    left: 15rem;
  }
}
@media screen and (max-width: 500.98px) {
  .play-vedeo {
    top: 7rem;
    left: 11rem;
  }
}

.title-video {
  position: absolute;
  bottom: 12px;
  right: 13px;
  color: white;
  font-weight: 700;
  padding: 10px;
}
@media screen and (max-width: 991.98px) {
  .title-video {
    line-height: 30px;
    height: 40px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
}

/*# sourceMappingURL=archives.css.map */
