@charset "UTF-8";
body.page-products {
  overflow-x: hidden;
  overflow-y: visible;
}

html body.page-products {
  overflow-x: hidden;
  overflow-y: auto;
}

body.page-products nav {
  width: 100%;
}

.hero-slider {
  position: relative;
  justify-self: flex-end;
  width: 579px;
  height: 414px;
  max-width: 100%;
}

/* Slider style */
.slider-container {
  position: relative;
  width: 579px;
  height: 414px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  animation: slideOut 0.5s ease-in-out forwards;
}

.slide.active {
  opacity: 1;
  animation: slideIn 0.5s ease-in-out forwards;
}

.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(24, 24, 27, 0.9) 0%, rgba(24, 24, 27, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.slider-controls {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
}

.control-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  color: #A1A1AA;
}

.control-btn:hover {
  transform: scale(1.1);
  color: #f4f4f5;
}

.control-btn:active {
  transform: scale(0.95);
}

.control-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 10px;
}

.dot {
  width: 30px;
  background-color: #A1A1AA;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #A1A1AA;
  padding: 0;
}

.dot.active {
  background-color: #008684;
  border-color: #008684;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot:focus {
  outline: 2px solid #008684;
  outline-offset: 2px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}
.slider-style {
  position: absolute;
  bottom: 0;
  right: -1.6rem;
  width: 3.2rem;
  height: 7.2rem;
}
.slider-style img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 10%;
  overflow: visible;
}

body.page-products header,
body.page-products .container,
body.page-products .product-list,
body.page-products .agents-section,
body.page-products .agents-section .contact-map-section {
  overflow-y: visible;
}

.hero-typo {
  justify-self: flex-start;
  align-self: center;
  z-index: 9;
  color: var(--text-gray);
}
.hero-typo p {
  font-family: "IRANYekanX-Thin";
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 5.6rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 2.8rem;
}
.hero-typo span {
  display: inline-block;
  font-family: "IRANYekanX-Thin";
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 2.4rem;
}

.hero-title {
  position: relative;
  font-family: "IRANYekanX-ExtraBold";
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 7.4rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 1.6rem;
}
.hero-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 31.7rem;
  height: 0.4rem;
  background-color: var(--accent-main);
  margin-top: 0.8rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 21rem;
  min-height: 5.6rem;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
  text-decoration: none;
  padding: 1.2rem 2.4rem;
  background-color: var(--accent-main);
  color: var(--text-gray);
  font-family: "IRANYekanX-Thin";
}
.hero-cta:hover {
  color: white;
}

.product-list {
  margin-top: 10.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.product-card {
  width: auto;
  height: auto;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 6.4rem;
  color: var(--text-gray);
  min-width: 0;
}

.product-card__link {
  display: block;
  min-width: 0;
}

.product-img {
  width: 100%;
  max-width: inherit;
  height: 50rem;
  overflow: hidden;
  padding: 0.5rem;
  background-color: white;
  margin: 0;
  margin-bottom: 1.2rem;
}
.product-img img {
  width: 100%;
  height: 100%;
}

.product-title {
  font-family: "IRANYekanX-Bold";
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  margin-bottom: 0.8rem;
  color: var(--text-gray);
}

.product-desc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
.product-desc li {
  position: relative;
  color: var(--text-gray);
  white-space: nowrap;
}
.product-desc li::after {
  content: "|";
  position: relative;
  margin: 0 0.8rem;
}
.product-desc li:last-of-type::after {
  content: "";
}

.agents-section {
  position: relative;
  margin-top: 23rem;
  height: auto;
}
.agents-section .contact-map-section {
  display: grid;
  grid-template-columns: minmax(36rem, 43.1rem) minmax(0, 1fr);
  align-items: flex-start;
  gap: 3.2rem;
}
.agents-section .company-adresses {
  flex: 1;
  margin-top: 12rem;
}
.agents-section .agents-copy {
  margin-top: 2.4rem;
  max-width: 52rem;
  color: var(--text-gray);
}
.agents-section .agents-copy p {
  margin: 0 0 1.6rem;
  line-height: 2.8rem;
}
.agents-section .agents-copy .artistry-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.2rem;
  border: 0.1rem solid var(--accent-main);
  color: var(--accent-main);
  background: transparent;
  margin-top: 1.6rem;
  height: 5.6rem;
}
.agents-section .agents-copy .artistry-cta:hover {
  color: var(--text-gray);
  background-color: var(--accent-main);
}
.agents-section .background-art {
  position: relative;
  width: 43.1rem;
  height: 15.9rem;
  background-image: url("../imgs/islamic-pattern-03.png");
  background-repeat: repeat;
  background-color: var(--accent-main);
}
.agents-section .gallery-title {
  position: relative;
  font-family: "IRANYekanX-Bold";
  font-weight: 600;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  color: var(--text-gray);
  margin: 0 2rem;
  padding: 3rem 0;
}
.agents-section .gallery-title::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 10.8rem;
  height: 0.4rem;
  background-color: var(--text-gray);
  margin-top: 0.8rem;
}
.agents-section .city-list {
  margin-top: 4.6rem;
  width: 43.1rem;
  max-width: 100%;
}
.agents-section .city-item {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
}
.agents-section .city-item.is-visible {
  opacity: 1;
  max-height: 2000px;
  pointer-events: auto;
  transform: translateY(0);
}
.agents-section .city-item.is-fading-out {
  opacity: 0;
  transform: translateY(-0.6rem);
}
.agents-section .city-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 1.2rem 1.6rem;
  width: 100%;
  cursor: pointer;
}
.agents-section .icon-arrow-left {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.3s ease-in-out;
}
.agents-section .icon-arrow-left img {
  width: 100%;
  height: 100%;
}
.agents-section .city-name.active .icon-arrow-left {
  transform: rotate(90deg);
}
.agents-section .city {
  padding: 0;
  background-color: white;
  width: 100%;
  height: 0;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
}
.agents-section .city li {
  position: relative;
  padding: 0.4rem 0.5rem;
  color: var(--gray-700);
}
.agents-section .city li::before {
  position: relative;
  content: "•";
  margin-left: 1rem;
}
.agents-section .city li.title {
  background-color: var(--accent-second);
  color: var(--accent-main);
}
.agents-section .city.active {
  padding: 1.6rem;
  height: auto;
}
.agents-section .contact-map {
  flex: 1;
  position: relative;
  min-width: 0;
}
.agents-section .map {
  position: relative;
  width: min(100%, 78.1rem);
  max-width: 78.1rem;
  height: 71.7rem;
  margin-top: 2rem;
}
.agents-section .map img {
  width: 100%;
  height: 100%;
}
.agents-section .map-pin {
  position: absolute;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease;
}
.agents-section .map-pin img {
  width: 100%;
  height: 100%;
}
.agents-section .map-pin.active {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  z-index: 5;
}
.agents-section .map-pin::before {
  content: attr(data-city);
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-0.8rem);
  background-color: rgba(36, 36, 38, 0.9);
  color: var(--text-gray);
  box-shadow: 0 0 1rem rgba(24, 24, 27, 0.9);
  padding: 0.6rem 1rem;
  font-family: "IRANYekanX-Medium";
  font-size: 1.2rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.agents-section .map-pin::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid rgba(36, 36, 38, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.agents-section .map-pin:hover::before, .agents-section .map-pin:hover::after {
  opacity: 1;
  visibility: visible;
}
.agents-section .map-pin.active::before, .agents-section .map-pin.active::after {
  opacity: 1;
  visibility: visible;
}
.agents-section .map-pin#pinMashhad {
  top: 26.48%;
  right: 25.35%;
}
.agents-section .map-pin#pinTehran {
  top: 29.29%;
  right: 63.26%;
}
.agents-section .map-pin#pinEsfahan {
  top: 45.34%;
  right: 62.1%;
}
.agents-section .map-pin#pinTabriz {
  top: 11.85%;
  right: 87.71%;
}
.agents-section .map-pin#pinShiraz {
  top: 65.55%;
  right: 51.21%;
}
.agents-section .map-pin#pinKerman {
  top: 61.35%;
  right: 23.05%;
}
.agents-section .map-pin#pinKhuzestan {
  top: 51.6%;
  right: 75.54%;
}
.agents-section .map-pin#pinBoroojen {
  top: 48.81%;
  right: 66.58%;
}
.agents-section .map-pin#pinBandarAnzali {
  top: 19.53%;
  right: 70.42%;
}
.agents-section .map-pin#pinBandarAbbas {
  top: 83.68%;
  right: 37.13%;
}
.agents-section .map-pin#pinBirjand {
  top: 44.63%;
  right: 25.61%;
}
.agents-section .map-pin#pinTaybaad {
  top: 34.86%;
  right: 17.91%;
}
.agents-section .map-pin#pinChenaran {
  top: 23.71%;
  right: 29.45%;
}
.agents-section .map-pin#pinForus {
  top: 25.1%;
  right: 19.21%;
}
.agents-section .map-pin#pinKashmar {
  top: 34.86%;
  right: 28.16%;
}
.agents-section .map-pin#pinGonabad {
  top: 41.83%;
  right: 28.16%;
}
.agents-section .map-typo-art {
  position: absolute;
  left: 0;
  width: min(73.4rem, 100%);
  height: 14.6rem;
}
.agents-section .map-typo-art img {
  width: 100%;
  height: 100%;
}

/* LTR layout fixes for EN pages */
body.page-products[dir=ltr] .hero-title,
body.page-products[dir=ltr] .hero-typo p,
body.page-products[dir=ltr] .hero-typo span,
body.page-products[dir=ltr] .product-title,
body.page-products[dir=ltr] .agents-section .gallery-title {
  text-align: left;
}
body.page-products[dir=ltr] .slider-controls {
  flex-direction: row-reverse;
}
body.page-products[dir=ltr] .hero-title::after,
body.page-products[dir=ltr] .agents-section .gallery-title::after {
  left: 0;
  right: auto;
}
body.page-products[dir=ltr] .product-desc li::after {
  margin-left: 0.8rem;
  margin-right: 0;
}

body.page-products[dir=ltr] .product-desc li {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.page-products[dir=ltr] .agents-section .city li::before {
  margin-left: 0;
  margin-right: 1rem;
}
body.page-products[dir=ltr] .agents-section .contact-map-section {
  display: grid;
  grid-template-columns: minmax(38rem, 52rem) minmax(0, 1fr);
  align-items: start;
  column-gap: 4rem;
}
body.page-products[dir=ltr] .agents-section .company-adresses {
  margin-top: 12rem;
}
body.page-products[dir=ltr] .agents-section .background-art {
  width: 100%;
  min-height: 18.8rem;
  height: auto;
}
body.page-products[dir=ltr] .agents-section .city-list {
  width: 100%;
}
body.page-products[dir=ltr] .agents-section .contact-map {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
body.page-products[dir=ltr] .agents-section .map {
  width: min(100%, 78.1rem);
  max-width: 78.1rem;
  margin-left: auto;
  margin-right: 0;
}
body.page-products[dir=ltr] .agents-section .map-typo-art {
  left: auto;
  right: 0;
}

@media (max-width: 1199px) {
  .gallery {
    padding-right: 0;
  }
  .artistry-img {
    left: 5rem;
  }
  .agents-section .map {
    width: 100%;
    max-width: 78.1rem;
  }
  .agents-section .map img {
    height: auto;
  }
  .agents-section .company-adresses {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .artistry-typo {
    width: 40%;
  }
  .artistry-img {
    left: 0;
  }
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title::after {
    width: 29rem;
  }
  .agents-section {
    margin-top: 12rem;
  }
  .agents-section .contact-map-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .agents-section .company-adresses {
    margin-top: 5rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    align-items: center;
    flex-direction: column;
  }
  .hero-slider {
    margin-top: 10rem;
    display: none;
  }
  .gallery-typo-art {
    display: none;
  }
  .artistry-img {
    display: none;
  }
  .agents-section .map-typo-art {
    width: 100%;
    left: 0;
  }
  .agents-section .map-typo-art img {
    height: auto;
  }
  .agents-section .map {
    width: 100%;
    height: auto;
    aspect-ratio: 78.1/71.7;
  }
  .agents-section .map-pin {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 479px) {
  .artistry {
    height: -moz-max-content;
    height: max-content;
  }
  .artistry .background-art {
    position: relative;
  }
  .artistry-typo {
    width: 100%;
    position: relative;
  }
  .agents-section {
    height: -moz-max-content;
    height: max-content;
  }
  .agents-section .contact-map {
    display: none;
  }
  .agents-section .background-art {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
  }
  .agents-section .city-list {
    width: 100%;
  }
  .agents-section .city-item {
    opacity: 1;
    max-height: none;
    pointer-events: auto;
    transform: none;
    transition: none;
    display: block !important;
  }
  .agents-section .city-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 1.2rem 1.6rem;
    width: 100%;
    cursor: pointer;
  }
  .agents-section .city {
    padding: 0;
    background-color: white;
    width: 100%;
    height: 0;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
  }
  .agents-section .city.active {
    padding: 1.6rem;
    height: auto;
  }
  .agents-section .gallery-title {
    margin: 0 1rem;
  }
  .gallery-typo-art {
    display: none;
  }
  .tab-button {
    margin-right: 4rem;
  }
  .tab-button button.active {
    background-color: white;
  }
  .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
  body.page-products[dir=ltr] .product-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  body.page-products[dir=ltr] .product-desc li {
    display: block;
    width: 100%;
  }
  body.page-products[dir=ltr] .product-desc li::after {
    content: "";
    margin: 0;
  }
  .hero-typo {
    margin-top: 5rem;
  }
}
@media (max-width: 320px) {
  .hero-title::after {
    width: 90%;
  }
  .product-img {
    height: 40rem;
  }
  .product-desc {
    flex-wrap: wrap;
  }
  .product-desc li {
    margin-bottom: 0.5rem;
  }
  .agents-section .background-art {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
  }
}/*# sourceMappingURL=m_styles.css.map */
