@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap");

:root {
  --arsam-navy-950: #03172f;
  --arsam-navy-900: #061d3b;
  --arsam-navy-800: #0a274b;
  --arsam-navy-700: #0f3158;
  --arsam-gold-500: #d7a53c;
  --arsam-gold-400: #e7b64d;
  --arsam-gold-300: #f0c86a;
  --arsam-text: #101828;
  --arsam-muted: #667085;
  --arsam-border: #e8e8e8;
  --arsam-bg: #ffffff;
  --arsam-soft-bg: #f8f9fb;
  --arsam-container: 1200px;
  --arsam-section-y: 72px;
  --arsam-card-radius: 14px;
  --arsam-btn-radius: 9px;
  --arsam-header-h: 82px;
  --arsam-shadow: 0 6px 30px rgba(16, 24, 40, 0.06);
  --arsam-shadow-hover: 0 10px 36px rgba(16, 24, 40, 0.1);
  --arsam-font: "Vazirmatn", "Tahoma", sans-serif;
  --arsam-transition: 220ms ease;
}

html {
  scroll-behavior: smooth;
}

body.arsam-site,
.arsam-site {
  font-family: var(--arsam-font);
  color: var(--arsam-text);
  background: var(--arsam-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.arsam-site a {
  color: inherit;
  text-decoration: none;
  transition: color var(--arsam-transition), opacity var(--arsam-transition), background var(--arsam-transition), border-color var(--arsam-transition), transform var(--arsam-transition), box-shadow var(--arsam-transition);
}

.arsam-site img {
  max-width: 100%;
  height: auto;
  display: block;
}

.arsam-container {
  width: min(100% - 32px, var(--arsam-container));
  margin-inline: auto;
}

.arsam-section {
  padding-block: var(--arsam-section-y);
}

.arsam-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--arsam-btn-radius);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}

.arsam-btn--primary {
  background: var(--arsam-gold-500);
  color: var(--arsam-navy-950);
  border-color: var(--arsam-gold-500);
}

.arsam-btn--primary:hover {
  background: var(--arsam-gold-400);
  border-color: var(--arsam-gold-400);
}

.arsam-btn--secondary {
  background: transparent;
  color: var(--arsam-gold-400);
  border-color: var(--arsam-gold-500);
}

.arsam-btn--secondary:hover {
  background: var(--arsam-gold-500);
  color: var(--arsam-navy-950);
}

.arsam-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.arsam-btn--ghost-light:hover {
  background: #fff;
  color: var(--arsam-navy-950);
}

/* Header */
.arsam-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--arsam-navy-950);
  min-height: var(--arsam-header-h);
  border-bottom: 1px solid transparent;
  transition: background var(--arsam-transition), box-shadow var(--arsam-transition), border-color var(--arsam-transition), backdrop-filter var(--arsam-transition);
}

.arsam-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border-bottom-color: rgba(215, 165, 60, 0.25);
}

/* Homepage: transparent header over hero video/slides */
body.arsam-home-v2 .arsam-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  background-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.arsam-home-v2 .arsam-header.is-scrolled {
  position: fixed;
  background: transparent;
  background-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.arsam-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--arsam-header-h);
}

.arsam-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}

.arsam-logo__mark {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arsam-logo__mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(75%) sepia(39%) saturate(792%) hue-rotate(357deg) brightness(96%) contrast(91%);
  opacity: 0.98;
}

.arsam-logo__mark-fallback {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f0c86a, #d7a53c 55%, #a67b28);
  color: var(--arsam-navy-950);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.5px;
  box-shadow: 0 0 0 2px rgba(215, 165, 60, 0.25);
}

.arsam-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.arsam-logo__fa {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.arsam-logo__en {
  font-size: 10px;
  letter-spacing: 0.55px;
  color: var(--arsam-gold-400);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.arsam-logo--en .arsam-logo__fa {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.arsam-logo--en .arsam-logo__en {
  display: none;
}

.arsam-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arsam-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 11px;
  position: relative;
  white-space: nowrap;
}

.arsam-nav a:hover,
.arsam-nav .current-menu-item > a,
.arsam-nav a.is-active {
  color: var(--arsam-gold-400);
}

/* White text + gold outline for readability on banners */
body.arsam-home-v2 .arsam-logo__fa,
body.arsam-home-v2 .arsam-nav a,
body.arsam-home-v2 .arsam-lang,
body.arsam-home-v2 .arsam-lang__item.is-active {
  color: #ffffff !important;
  -webkit-text-stroke: 0.55px rgba(215, 165, 60, 0.95);
  paint-order: stroke fill;
  text-shadow:
    -1px 0 0 rgba(215, 165, 60, 0.75),
    1px 0 0 rgba(215, 165, 60, 0.75),
    0 -1px 0 rgba(215, 165, 60, 0.75),
    0 1px 0 rgba(215, 165, 60, 0.75),
    0 2px 10px rgba(3, 23, 47, 0.55);
}

body.arsam-home-v2 .arsam-logo__en {
  color: var(--arsam-gold-300) !important;
  -webkit-text-stroke: 0.35px rgba(215, 165, 60, 0.7);
  paint-order: stroke fill;
  text-shadow:
    0 1px 8px rgba(3, 23, 47, 0.55);
}

body.arsam-home-v2 .arsam-nav a:hover,
body.arsam-home-v2 .arsam-nav .current-menu-item > a,
body.arsam-home-v2 .arsam-nav a.is-active {
  color: #fff !important;
  -webkit-text-stroke: 0.7px var(--arsam-gold-300);
}

body.arsam-home-v2 .arsam-nav .current-menu-item > a::after,
body.arsam-home-v2 .arsam-nav a.is-active::after {
  background: var(--arsam-gold-400);
  box-shadow: 0 0 8px rgba(231, 182, 77, 0.55);
}

body.arsam-home-v2 .arsam-site a.arsam-header__cta,
body.arsam-home-v2 a.arsam-header__cta {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid var(--arsam-gold-400);
  -webkit-text-stroke: 0.4px rgba(215, 165, 60, 0.85);
  paint-order: stroke fill;
  text-shadow:
    -1px 0 0 rgba(215, 165, 60, 0.65),
    1px 0 0 rgba(215, 165, 60, 0.65),
    0 -1px 0 rgba(215, 165, 60, 0.65),
    0 1px 0 rgba(215, 165, 60, 0.65);
  box-shadow: 0 0 0 1px rgba(215, 165, 60, 0.15);
}

body.arsam-home-v2 .arsam-site a.arsam-header__cta:hover,
body.arsam-home-v2 a.arsam-header__cta:hover {
  background: rgba(231, 182, 77, 0.18);
  border-color: var(--arsam-gold-300);
  color: #fff !important;
}

body.arsam-home-v2 .arsam-burger {
  border-color: var(--arsam-gold-400);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(215, 165, 60, 0.2);
}

body.arsam-home-v2 .arsam-burger span,
body.arsam-home-v2 .arsam-burger span::before,
body.arsam-home-v2 .arsam-burger span::after {
  background: var(--arsam-gold-400);
}

.arsam-nav .current-menu-item > a::after,
.arsam-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 11px;
  left: 11px;
  bottom: 4px;
  height: 2px;
  background: var(--arsam-gold-500);
  border-radius: 2px;
}

.arsam-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.arsam-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  user-select: none;
}

.arsam-lang__item.is-active {
  color: #fff;
}

.arsam-lang a.arsam-lang__item {
  color: inherit;
  text-decoration: none;
}

.arsam-lang a.arsam-lang__item:hover {
  color: #fff;
}

.arsam-lang__sep {
  opacity: 0.45;
}

.arsam-site a.arsam-header__cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1.5px solid var(--arsam-gold-500);
  color: var(--arsam-navy-950);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--arsam-gold-500);
}

.arsam-site a.arsam-header__cta:hover {
  background: var(--arsam-gold-400);
  border-color: var(--arsam-gold-400);
  color: var(--arsam-navy-950);
}

.arsam-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arsam-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.arsam-burger span::before,
.arsam-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.arsam-burger span::before { top: -6px; }
.arsam-burger span::after { top: 6px; }

.arsam-mobile-panel {
  display: none;
  background: var(--arsam-navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0 20px;
}

.arsam-mobile-panel.is-open {
  display: block;
}

.arsam-mobile-panel .arsam-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.arsam-mobile-panel .arsam-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.arsam-mobile-panel .arsam-header__cta {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

/* Footer */
.arsam-footer {
  background: var(--arsam-navy-950);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
}

.arsam-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
}

.arsam-footer__grid--v2 {
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.arsam-footer__contact-list li + li {
  margin-top: 10px;
}

.arsam-footer__bottom--v2 {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.arsam-footer__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
}

.arsam-footer__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--arsam-gold-500);
}

.arsam-footer__about {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  margin: 14px 0 20px;
}

.arsam-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arsam-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(215, 165, 60, 0.45);
  color: var(--arsam-gold-400);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.arsam-social a:hover {
  background: var(--arsam-gold-500);
  color: var(--arsam-navy-950);
  border-color: var(--arsam-gold-500);
}

.arsam-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.arsam-footer__links li + li {
  margin-top: 10px;
}

.arsam-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.arsam-footer__links a:hover {
  color: var(--arsam-gold-400);
}

.arsam-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.arsam-footer__contact-item svg,
.arsam-footer__contact-item .arsam-ico {
  color: var(--arsam-gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.arsam-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.arsam-footer__legal {
  display: flex;
  gap: 18px;
}

.arsam-footer__legal a:hover {
  color: var(--arsam-gold-400);
}

/* Shared page pieces */
.arsam-page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--arsam-navy-950);
  color: #fff;
  overflow: hidden;
}

.arsam-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.arsam-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 23, 47, 0.94) 0%, rgba(3, 23, 47, 0.8) 45%, rgba(3, 23, 47, 0.55) 100%);
}

.arsam-page-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 64px;
  max-width: 640px;
}

.arsam-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
  text-shadow: 0 1px 8px rgba(3, 23, 47, 0.55);
}

.arsam-breadcrumb a:hover {
  color: var(--arsam-gold-400);
}

.arsam-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 16px rgba(3, 23, 47, 0.65);
}

.arsam-page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(3, 23, 47, 0.55);
}

.arsam-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--arsam-gold-400);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.arsam-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--arsam-gold-500);
}

.arsam-card {
  background: #fff;
  border: 1px solid var(--arsam-border);
  border-radius: var(--arsam-card-radius);
  box-shadow: var(--arsam-shadow);
  transition: transform var(--arsam-transition), box-shadow var(--arsam-transition);
}

.arsam-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--arsam-shadow-hover);
}

.arsam-link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--arsam-gold-500);
  font-weight: 600;
  font-size: 14px;
}

.arsam-link-more:hover {
  color: var(--arsam-gold-400);
}

.arsam-usp-bar {
  background: var(--arsam-navy-900);
  color: #fff;
  padding: 36px 0;
}

.arsam-usp-grid {
  display: grid;
  grid-template-columns: var(--arsam-usp-cols, repeat(4, 1fr));
  gap: 24px;
}

/* Two-column split layouts that were inline-styled (non-responsive) in
   Elementor HTML widgets. Columns/gap/align come from CSS custom properties
   set inline, so responsive.css can override them at breakpoints. */
.arsam-split-grid {
  display: grid;
  grid-template-columns: var(--arsam-split-cols, 1fr 1fr);
  gap: var(--arsam-split-gap, 28px);
  align-items: var(--arsam-split-align, stretch);
}

.arsam-usp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.arsam-usp-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(215, 165, 60, 0.12);
  color: var(--arsam-gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 20px;
}

.arsam-usp-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
}

.arsam-usp-item p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.arsam-stats {
  background: var(--arsam-soft-bg);
  padding: 40px 0 52px;
}

.arsam-stats__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--arsam-shadow);
  border: 1px solid rgba(16, 24, 40, 0.05);
  padding: 8px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.arsam-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 18px;
  text-align: start;
  position: relative;
  min-width: 0;
}

.arsam-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  width: 1px;
  height: 64%;
  background: #e6ebf0;
}

.arsam-stat__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arsam-gold-500);
}

.arsam-stat__icon svg {
  display: block;
}

.arsam-stat__content {
  min-width: 0;
}

.arsam-stat__value {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  color: var(--arsam-gold-500);
  line-height: 1.1;
  margin-bottom: 4px;
}

.arsam-stat__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--arsam-navy-900);
  line-height: 1.5;
}

.arsam-stat__subtitle {
  font-size: 12px;
  color: var(--arsam-muted);
  line-height: 1.7;
  margin-top: 2px;
}

/* Forms */
.arsam-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--arsam-text);
}

.arsam-form .wpcf7-form-control-wrap,
.arsam-form .arsam-field {
  margin-bottom: 16px;
}

.arsam-form input[type="text"],
.arsam-form input[type="email"],
.arsam-form input[type="tel"],
.arsam-form input[type="url"],
.arsam-form input[type="number"],
.arsam-form input[type="file"],
.arsam-form select,
.arsam-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="file"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--arsam-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--arsam-text);
  transition: border-color var(--arsam-transition), box-shadow var(--arsam-transition);
}

.wpcf7 textarea,
.arsam-form textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.arsam-form input:focus,
.arsam-form select:focus,
.arsam-form textarea:focus {
  outline: none;
  border-color: var(--arsam-gold-500);
  box-shadow: 0 0 0 3px rgba(215, 165, 60, 0.15);
}

.wpcf7-submit,
.arsam-form button[type="submit"] {
  background: var(--arsam-gold-500);
  color: var(--arsam-navy-950);
  border: 0;
  border-radius: var(--arsam-btn-radius);
  min-height: 50px;
  padding: 0 28px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.wpcf7-submit:hover,
.arsam-form button[type="submit"]:hover {
  background: var(--arsam-gold-400);
}

.wpcf7-not-valid-tip {
  color: #b42318;
  font-size: 12.5px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #039855;
  color: #027a48;
}

.arsam-footer .arsam-logo__mark img {
  width: 52px;
  height: 52px;
}

.arsam-footer .arsam-logo__mark {
  width: 52px;
  height: 52px;
  min-width: 52px;
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form label {
  flex: 1;
}

.search-form .search-field {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--arsam-border);
  border-radius: 10px;
  padding: 0 12px;
  font-family: inherit;
}

.search-form .search-submit {
  background: var(--arsam-navy-900);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  cursor: pointer;
  font-family: inherit;
}
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--arsam-font);
}

.elementor-button {
  font-family: var(--arsam-font);
}

/* Elementor kit + container compatibility */
.elementor-kit-5,
.elementor {
  --e-global-color-primary: #061d3b;
  --e-global-color-secondary: #03172f;
  --e-global-color-text: #101828;
  --e-global-color-accent: #d7a53c;
  --e-global-typography-primary-font-family: "Vazirmatn", "Tahoma", sans-serif;
  --e-global-typography-secondary-font-family: "Vazirmatn", "Tahoma", sans-serif;
  --e-global-typography-text-font-family: "Vazirmatn", "Tahoma", sans-serif;
  --e-global-typography-accent-font-family: "Vazirmatn", "Tahoma", sans-serif;
}

.arsam-site .elementor {
  font-family: var(--arsam-font);
}

.arsam-site .elementor .e-con.e-con-full {
  max-width: none;
  width: 100%;
}

.arsam-site .elementor .e-con.e-parent > .e-con-inner {
  max-width: none;
  padding: 0;
}

.arsam-site .elementor-widget-html,
.arsam-site .elementor-widget-html .elementor-widget-container {
  width: 100%;
}

.arsam-site .elementor .elementor-widget-container > section {
  width: 100%;
}

.arsam-site .site-main .page-header,
.arsam-site .entry-title {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
