@charset "UTF-8";
html, body {
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: grid;
  height: 100vh;
  margin-bottom: 19.6rem;
}

.hero-video {
  position: relative;
  height: -moz-max-content;
  height: max-content;
  max-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video video {
  width: inherit;
  height: auto;
}

.hero-slider {
  position: absolute;
  justify-self: flex-end;
}

/* Slider style */
.slider-container {
  position: relative;
  width: 937px;
  height: 669px;
  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: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
}

body.page-home-mobile[dir=ltr] .slider-controls {
  flex-direction: row-reverse;
}

.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-typo {
  margin-right: 10.2rem;
  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 {
  font-family: "IRANYekanX-ExtraBold";
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 7.4rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 1.6rem;
}

.hero-cta {
  display: inline-block;
  width: 19.5rem;
  height: 5.6rem;
  box-sizing: border-box;
  text-align: center;
  padding: 1.2rem 3.2rem;
  background-color: var(--accent-main);
  color: var(--text-gray);
  font-family: "IRANYekanX-Thin";
}
.hero-cta:hover {
  color: white;
}

.background-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 36.3rem;
  height: 75.7rem;
  background-image: url("../imgs/islamic-pattern-03.png");
  background-repeat: repeat;
  background-color: var(--accent-main);
}

.agents-section .background-art {
  position: relative;
}

.gallery {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 6rem 4% 0;
}

.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 3rem;
  padding: 3rem 0;
}
.gallery-title::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 6.4rem;
  height: 0.4rem;
  background-color: var(--text-gray);
  margin-top: 0.8rem;
}

.gallery-typo-art {
  position: absolute;
  top: 0;
  left: 15rem;
}

/* Category image grid (replaces product slider) */
.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: start;
  gap: 0 3rem;
  width: 100%;
  max-width: 160rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.category-card a {
  display: block;
  text-decoration: none;
  overflow: hidden;
  /* show only the visible content strip (top 15% and bottom 20% are transparent) */
  padding-top: 72%;
  position: relative;
  margin-bottom: -12%;
}
.category-card img {
  position: absolute;
  top: -17%;
  left: 0;
  width: 100%;
  height: 134%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
}
.category-card:hover img {
  transform: scale(1.03);
}

.tabcontent {
  display: none;
  animation: fadeEffect 1s;
  width: 100%;
  margin-top: 10%;
}
.tabcontent .swiper {
  width: 100%;
}

.tab-button-list {
  position: absolute;
  top: 15%;
  display: flex;
  align-items: center;
  z-index: 9;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab-button {
  margin-right: 6.4rem;
}
.tab-button button {
  background-color: transparent;
  border: 0;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 1.6rem;
}
.tab-button button.active {
  color: var(--accent-main);
}

.swiper {
  width: 100%;
  max-width: 100%;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}

.hidden-slide {
  opacity: 0;
  transform: translateY(50px);
}

.show-slide {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1.2s ease forwards;
  -webkit-animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-card {
  width: 100%;
  height: 46.7rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--text-gray);
}

.gallery-img {
  width: 100%;
  max-width: 29.1rem;
  height: 35.1rem;
  min-height: 35.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  overflow: hidden;
  margin: 0;
  padding: 0.5rem;
}
.gallery-img img {
  width: 100%;
  height: 100%;
}

.gallery-card-title {
  font-family: "IRANYekanX-Regular";
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  color: var(--text-gray);
}

.gallery-card-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.gallery-card-item {
  position: relative;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  color: var(--text-gray);
  margin-left: 1.6rem;
  white-space: nowrap;
}
.gallery-card-item::after {
  position: absolute;
  content: "|";
  margin-right: 0.4rem;
}
.gallery-card-item:last-of-type::after {
  content: "";
}

.gallery-swiper-navs {
  position: absolute;
  bottom: -6.5rem;
  left: 15.3rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.23);
  z-index: 9;
}

.gallery-swiper-button {
  position: relative;
  width: 6.4rem;
  height: 6.4rem;
  inset: unset;
  margin: 0;
  padding: 0;
  background-color: white;
}
.gallery-swiper-button img {
  width: 2rem;
  height: 2rem;
}

.gallery-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15.3rem;
  padding: 1.6rem 3.3rem;
  background-color: white;
  color: var(--accent-main);
  height: 6.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artistry {
  width: 100%;
  height: 47.5rem;
  margin-top: 18rem;
}
.artistry .background-art {
  height: 37.6rem;
  left: 0;
  right: auto;
  z-index: 9;
}
.artistry .gallery-typo-art {
  left: auto;
  right: 0;
}

.artistry-img {
  position: absolute;
  top: 20rem;
  left: 11.5rem;
  z-index: 99;
  width: 45rem;
  height: 36rem;
}
.artistry-img img {
  width: 100%;
  height: 100%;
}

.artistry-typo {
  position: absolute;
  bottom: 0;
  width: 46%;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  color: var(--text-gray);
  text-align: justify;
}

.artistry-cta {
  width: 17.2rem;
  height: 5.6rem;
  border: 0.1rem solid var(--accent-main);
  color: var(--accent-main);
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artistry-cta:hover {
  color: var(--text-gray);
  background-color: var(--accent-main);
}

.agents-section {
  position: relative;
  margin-top: 23rem;
  height: auto;
}
.agents-section .contact-map-section {
  display: flex;
  align-items: flex-start;
  gap: 3.2rem;
}
.agents-section .company-adresses {
  flex: 1;
  margin-top: 18.5rem;
}
.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 1rem;
  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;
}
.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;
}
.agents-section .map {
  position: relative;
  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: 20rem;
  width: 73.4rem;
  height: 14.6rem;
}
.agents-section .map-typo-art img {
  width: 100%;
  height: 100%;
}

/* LTR layout fixes for EN pages */
body.page-home-mobile[dir=ltr] .gallery-title,
body.page-home-mobile[dir=ltr] .gallery-card-title,
body.page-home-mobile[dir=ltr] .gallery-card-item,
body.page-home-mobile[dir=ltr] .artistry-typo,
body.page-home-mobile[dir=ltr] .agents-section .gallery-title {
  text-align: left;
}
body.page-home-mobile[dir=ltr] .gallery-title::after,
body.page-home-mobile[dir=ltr] .agents-section .gallery-title::after {
  left: 0;
  right: auto;
}
body.page-home-mobile[dir=ltr] .tab-button-list {
  direction: rtl;
  right: 4rem;
  left: auto;
}
body.page-home-mobile[dir=ltr] .tab-button {
  margin-right: 0;
  margin-left: 4rem;
}
body.page-home-mobile[dir=ltr] .gallery-card-item {
  margin-left: 0;
  margin-right: 1.6rem;
}
body.page-home-mobile[dir=ltr] .gallery-card-item::after {
  margin-left: 0.4rem;
  margin-right: 0;
}
body.page-home-mobile[dir=ltr] .artistry .background-art {
  right: 0;
  left: auto;
}
body.page-home-mobile[dir=ltr] .artistry .gallery-typo-art {
  right: auto;
  left: 0;
}
body.page-home-mobile[dir=ltr] .artistry-img {
  left: auto;
  right: 11.5rem;
}
body.page-home-mobile[dir=ltr] .artistry-typo {
  left: 0;
  right: auto;
  z-index: 100;
}
body.page-home-mobile[dir=ltr] .agents-section .city li::before {
  margin-left: 0;
  margin-right: 1rem;
}
body.page-home-mobile[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-home-mobile[dir=ltr] .agents-section .company-adresses {
  margin-top: 12rem;
}
body.page-home-mobile[dir=ltr] .agents-section .background-art {
  width: 100%;
  min-height: 18.8rem;
  height: auto;
}
body.page-home-mobile[dir=ltr] .agents-section .city-list {
  width: 100%;
}
body.page-home-mobile[dir=ltr] .agents-section .contact-map {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
body.page-home-mobile[dir=ltr] .agents-section .map {
  width: min(100%, 78.1rem);
  max-width: 78.1rem;
  margin-left: auto;
  margin-right: 0;
}
body.page-home-mobile[dir=ltr] .agents-section .map-typo-art {
  left: auto;
  right: 0;
}

@media (min-width: 1440px) {
  .tabcontent {
    margin-top: 7%;
  }
}
@media (max-width: 1199px) {
  .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;
  }
  .agents-section {
    margin-top: 12rem;
  }
  .agents-section .contact-map-section {
    flex-direction: column-reverse;
  }
  .agents-section .company-adresses {
    margin-top: 5rem;
  }
}
@media (max-width: 767px) {
  .hero-video {
    height: inherit;
  }
  .hero-video video {
    width: -moz-max-content;
    width: max-content;
    height: 100%;
  }
  .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;
  }
  .tabcontent {
    margin-top: 15%;
  }
  .category-grid {
    gap: 2.5rem;
  }
}
@media (max-width: 479px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 42rem;
  }
  .tab-button-list {
    top: 11%;
  }
  .gallery-card {
    height: 51rem;
  }
  .gallery-img {
    height: 41rem;
  }
  .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;
  }
  body.page-home-mobile[dir=ltr] .tab-button {
    margin-right: 0;
    margin-left: 4rem;
  }
  .tab-button button.active {
    background-color: white;
  }
}
@media (max-width: 430px) {
  .hero {
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 15rem;
  }
  .background-art {
    width: 100%;
    height: 84rem;
  }
  .agents-section .background-art {
    height: auto;
  }
  .tab-button-list {
    top: 17%;
  }
  .tabcontent {
    margin-top: 35%;
  }
}/*# sourceMappingURL=m_styles.css.map */
