/* ==========================================================================
   ExiroMED Front Page Styles (RTL)
   Extracted from index-rtl.html design
   ========================================================================== */

/* Hide old WordPress header — replaced by global navbar in header.php */
#header.old-header,
.old-header + .m_menu {
  display: none !important;
}

/* ---- Fonts ---- */
@font-face {
  font-family: 'IRANSansX';
  src: url('../fonts/IRANSansX-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANSansX';
  src: url('../fonts/IRANSansX-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-bold-webfont.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-book-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset for front page ---- */
.exiro-front-page *,
.exiro-front-page *::before,
.exiro-front-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- CSS Variables ---- */
.exiro-front-page {
  --cream: #f5f0ea;
  --warm-white: #ffffff;
  /*--warm-white: #faf8f5;*/
  --section-bg: #eaeae9;
  --text-dark: #111111;
  --text-muted-dark: #333333;
  --exiro-green: #143931;
  --exiro-green-hover: #235247;
  --transition: 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  --font-fa: 'IRANSansX', sans-serif;
  --font-en: 'Gotham', sans-serif;
  background: var(--warm-white);
  font-family: var(--font-fa);
  font-weight: normal;
  overflow-x: hidden;
}

.exiro-front-page h1,
.exiro-front-page h2,
.exiro-front-page h3,
.exiro-front-page h4,
.exiro-front-page h5,
.exiro-front-page h6 {
  font-family: var(--font-fa);
  font-weight: bold;
}

/* ---- Global Layout ---- */
.exiro-front-page .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   1. HERO SLIDER (RTL)
   ========================================================================== */
.exiro-front-page .hero-section {
  padding: 40px 20px;
}

.exiro-front-page .hero-card {
  position: relative;
}

.exiro-front-page .hero-svg {
  width: 100%;
  display: block;
}

.exiro-front-page .slide-img {
  transition: opacity var(--transition);
  opacity: 0;
}

.exiro-front-page .slide-img.active {
  opacity: 1;
}

.exiro-front-page .navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2% 4%;
  z-index: 10;
  pointer-events: none;
}

.exiro-front-page .navbar > * {
  pointer-events: auto;
}

.exiro-front-page .logo {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 2.2vw, 26px);
  font-family: var(--font-en);
}

.exiro-front-page .logo img {
  height: clamp(18px, 2vw, 28px);
  width: auto;
  object-fit: contain;
}

.exiro-front-page .logo .script {
  font-weight: normal;
  font-size: 1.3em;
}

.exiro-front-page .logo .bold {
  font-weight: bold;
  letter-spacing: 0.14em;
  font-size: 0.82em;
}

.exiro-front-page .navbar nav {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
}

.exiro-front-page .navbar nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: normal;
  transition: color 0.3s;
}

.exiro-front-page .navbar nav a:hover {
  color: #fff;
}

/* ---- Navbar Responsive: hide Menu btn on desktop, hide desktop nav on mobile ---- */
@media (min-width: 901px) {
  .exiro-front-page .navbar .btnMenu {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .exiro-front-page .navbar nav {
    display: none !important;
  }
}

/* RTL: text aligned to right */
.exiro-front-page .hero-text {
  position: absolute;
  bottom: 16%;
  right: 8%;
  z-index: 10;
  width: 48%;
  max-width: 600px;
  pointer-events: none;
}

.exiro-front-page .slide-content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.exiro-front-page .slide-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.exiro-front-page .slide-content h1 {
  font-weight: bold;
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5em;
}

.exiro-front-page .slide-content p {
  font-size: clamp(12px, 1.2vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: normal;
  text-align: justify;
}

/* RTL: hero-dots on left side */
.exiro-front-page .hero-dots {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.exiro-front-page .hero-dot {
  height: 3px;
  width: 28px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.4s;
}

.exiro-front-page .hero-dot.active {
  background: #fff;
  width: 52px;
}

/* RTL: counter on right side */
.exiro-front-page .counter {
  position: absolute;
  bottom: 6.5%;
  right: 10%;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(10px, 1vw, 13px);
  font-family: var(--font-en);
}

.exiro-front-page .scroll-group {
  cursor: pointer;
}

.exiro-front-page .corner-bg {
  fill: var(--warm-white);
  transition: fill 0.4s ease;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(90px); }
  60% { transform: translateY(45px); }
}

.exiro-front-page .corner-arrow {
  stroke: #5A4A42;
  stroke-width: 20;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bounceDown 2.5s infinite;
}

/* ==========================================================================
   2. ABOUT SECTION (RTL)
   ========================================================================== */
.exiro-front-page .about-section {
  padding: 80px 20px;
}

.exiro-front-page .about-container {
  display: flex;
  align-items: center;
  gap: 8%;
}

.exiro-front-page .about-image-col {
  flex: 1;
  position: relative;
  max-width: 45%;
}

.exiro-front-page .about-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.06));
}

.exiro-front-page .about-text-col {
  flex: 1;
}

.exiro-front-page .about-text-col h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.exiro-front-page .about-text-col p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
  text-align: justify;
}

.exiro-front-page .learn-more-group {
  cursor: pointer;
}

.exiro-front-page .about-corner-bg {
  fill: var(--exiro-green);
  transition: fill 0.3s ease;
}

.exiro-front-page .learn-more-group:hover .about-corner-bg {
  fill: var(--exiro-green-hover);
}

.exiro-front-page .about-corner-text {
  font-family: var(--font-fa);
  font-size: 38px;
  font-weight: 300;
  fill: #ffffff;
}

.exiro-front-page .about-corner-arrow {
  stroke: #ffffff;
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/* RTL: arrow moves left on hover */
.exiro-front-page .learn-more-group:hover .about-corner-arrow {
  transform: translateX(-12px);
}

/* ==========================================================================
   2.5 BRANDS LOGO STRIP (RTL)
   ========================================================================== */
.exiro-front-page .brands-section {
  padding: 80px 20px 120px 20px;
  background: var(--warm-white);
}

.exiro-front-page .brands-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(30px, 4vw, 30px);
}

.exiro-front-page .brand-logo {
  height: clamp(28px, 3.5vw, 50px);
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.exiro-front-page .brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================================================
   3. OUR PRODUCTS SECTION (RTL)
   ========================================================================== */
.exiro-front-page .products-section {
  padding: 0 20px 80px 20px;
}

.exiro-front-page .products-box {
  position: relative;
  background: var(--section-bg);
  border-radius: 40px;
  display: flex;
  padding: 80px 60px 80px 0;
  overflow: hidden;
  min-height: 500px;
}

/* RTL: mask on top-left */
.exiro-front-page .products-mask {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 160px;
  height: 160px;
  z-index: 10;
  pointer-events: none;
}

/* RTL: arrow on top-left */
.exiro-front-page .products-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 11;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exiro-front-page .products-arrow svg {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.exiro-front-page .products-arrow:hover svg {
  transform: translateX(-6px);
}

.exiro-front-page .products-text-col {
  flex: 0 0 45%;
  padding-left: 40px;
  z-index: 2;
}

.exiro-front-page .products-text-col h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.exiro-front-page .products-text-col p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: justify;
}

.exiro-front-page .products-slider-col {
  flex: 1;
  position: relative;
}

.exiro-front-page .products-track {
  display: flex;
  gap: 50px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.exiro-front-page .product-slide {
  flex: 0 0 75%;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.3;
  transform: scale(0.95);
  transition: opacity 0.8s, transform 0.8s;
}

.exiro-front-page .product-slide.active {
  opacity: 1;
  transform: scale(1);
}

.exiro-front-page .product-info {
  flex: 1;
  text-align: center;
}

.exiro-front-page .product-info h3 {
  font-size: clamp(40px, 4vw, 70px);
  font-weight: 700;
  line-height: 1;
  color: #111;
  font-family: var(--font-en);
}

.exiro-front-page .product-info p.subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
  margin: 10px 0;
  color: #111;
  font-family: var(--font-en);
}

.exiro-front-page .product-info p.subtitle span {
  font-style: italic;
}

.exiro-front-page .product-info p.details {
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  font-family: var(--font-en);
}

.exiro-front-page .product-img-wrap {
  flex: 1.2;
}

/* RTL: product image margin reversed */
.exiro-front-page .product-img-wrap img {
  width: 150%;
  height: auto;
  object-fit: contain;
  margin-right: -150px;
}

/* ==========================================================================
   3.5 PROLUMA SECTION (RTL)
   ========================================================================== */
.exiro-front-page .proluma-section {
  padding: 80px 20px;
  background: var(--warm-white);
}

.exiro-front-page .proluma-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.exiro-front-page .proluma-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

@keyframes floatGently {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.exiro-front-page .proluma-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  animation: floatGently 4s ease-in-out infinite;
}

.exiro-front-page .proluma-text-col {
  flex: 1;
}

.exiro-front-page .proluma-text-col h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.exiro-front-page .proluma-text-col p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 25px;
  max-width: 600px;
  text-align: justify;
}

/* RTL: clip-path corner cut on bottom-left */
.exiro-front-page .proluma-btn {
  display: inline-block;
  background: var(--exiro-green);
  color: #fff;
  text-decoration: none;
  padding: 18px 36px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  margin-top: 15px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.exiro-front-page .proluma-btn:hover {
  background: var(--exiro-green-hover);
  transform: translateY(-3px);
}

/* ==========================================================================
   4. BLOG SECTION (RTL)
   ========================================================================== */
.exiro-front-page .blog-section {
  background: var(--warm-white);
  padding: 100px 20px;
}

.exiro-front-page .blog-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exiro-front-page .blog-card {
  display: flex;
  background: var(--section-bg);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 400px;
}

.exiro-front-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.exiro-front-page .blog-image {
  flex: 0 0 45%;
  position: relative;
}

.exiro-front-page .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RTL: padding reversed */
.exiro-front-page .blog-content {
  flex: 1;
  padding: 60px 50px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exiro-front-page .blog-date {
  font-size: 13px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: var(--font-en);
}

.exiro-front-page .blog-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.exiro-front-page .blog-excerpt {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.8;
  color: #333333;
  text-align: justify;
}

/* RTL: corner cut on bottom-left */
.exiro-front-page .blog-corner-cut {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 160px;
  height: 160px;
  z-index: 10;
}

.exiro-front-page .blog-corner-shape {
  fill: var(--warm-white);
  transition: fill 0.4s ease;
}

.exiro-front-page .blog-corner-content {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.exiro-front-page .blog-corner-text {
  font-family: var(--font-fa);
  font-size: 15px;
  font-weight: 400;
  fill: #ffffff;
}

.exiro-front-page .blog-card:hover .blog-corner-shape {
  fill: var(--exiro-green);
}

.exiro-front-page .blog-card:hover .blog-corner-content {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   5. FOOTER & GLOBAL NETWORK SECTION (RTL)
   ========================================================================== */
.exiro-front-page .main-footer {
  padding: 80px 20px 0;
  background: var(--warm-white);
}

.exiro-front-page .global-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
}

.exiro-front-page .global-text {
  flex: 0 0 45%;
  margin-bottom: 120px;
}

.exiro-front-page .global-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.exiro-front-page .global-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
}

/* RTL: bleed to left edge */
.exiro-front-page .global-image {
  flex: 1;
  position: relative;
  margin-left: calc(-50vw + 50%);
  transform: translateY(200px);
}

.exiro-front-page .global-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* RTL: green box radius on top-left */
.exiro-front-page .footer-box {
  position: relative;
  background: var(--exiro-green);
  border-radius: 0 40px 0 0;
}

/* RTL: green extends to the left */
.exiro-front-page .footer-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  width: 50vw;
  height: 100%;
  background: var(--exiro-green);
}

/* RTL: cut mask on top-right */
.exiro-front-page .footer-cut-mask {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 250px;
  height: 250px;
  z-index: 10;
  pointer-events: none;
}

.exiro-front-page .footer-arrow {
  position: absolute;
  width: 90px;
  height: 90px;
  z-index: 11;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
}

.exiro-front-page .footer-arrow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exiro-front-page .footer-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.exiro-front-page .arrow-text {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-fa);
  font-size: 13px;
  font-weight: 700;
  color: var(--exiro-green);
  line-height: 1.4;
}

.exiro-front-page .footer-arrow:hover .footer-arrow-inner {
  transform: translateY(-100%);
}

/* RTL: padding reversed */
.exiro-front-page .footer-layout {
  display: flex;
  padding: 100px 180px 60px 80px;
  gap: 120px;
}

.exiro-front-page .footer-left {
  display: flex;
  flex-direction: column;
}

.exiro-front-page .footer-left h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.exiro-front-page .footer-left p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.8;
}

.exiro-front-page .footer-copyright {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  font-family: var(--font-en);
  direction: ltr;
  text-align: left;
  align-self: flex-start;
}

.exiro-front-page .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.exiro-front-page .footer-contact {
  font-size: 15px;
  color: #fff;
  line-height: 2;
  margin-bottom: 25px;
  font-weight: 300;
  direction: ltr;
  text-align: right;
}

.exiro-front-page .social-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.exiro-front-page .social-icons a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.exiro-front-page .social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s;
}

.exiro-front-page .social-icons a:hover svg {
  transform: translateY(-3px);
}

/* ==========================================================================
   MOBILE RESPONSIVE (RTL)
   ========================================================================== */
@media (max-width: 900px) {
  .exiro-front-page .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .exiro-front-page .about-image-col {
    max-width: 80%;
  }

  .exiro-front-page .brands-track {
    gap: 30px 5px;
  }

  .exiro-front-page .brands-section {
    padding: 0 20px 100px 20px;
    background: var(--warm-white);
  }

  .exiro-front-page .brand-logo {
    height: 35px;
  }

  .exiro-front-page .products-box {
    flex-direction: column;
    padding: 50px 30px;
    gap: 50px;
  }

  .exiro-front-page .products-text-col {
    flex: none;
    padding-left: 0;
  }

  .exiro-front-page .products-track {
    gap: 20px;
  }

  .exiro-front-page .product-slide {
    flex: 0 0 85%;
    flex-direction: column;
    text-align: center;
  }

  .exiro-front-page .products-mask {
    width: 100px;
    height: 100px;
  }

  .exiro-front-page .products-arrow {
    top: 15px;
    left: 0;
  }

  .exiro-front-page .products-arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 11;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .exiro-front-page .product-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-right: -130px;
  }

  .exiro-front-page .proluma-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .exiro-front-page .proluma-img {
    max-width: 300px;
  }

  .exiro-front-page .proluma-section {
    padding: 0px 20px;
    background: var(--warm-white);
  }

  .exiro-front-page .proluma-text-col p {
    margin: 0 auto 25px auto;
  }

  .exiro-front-page .blog-card {
    flex-direction: column;
  }

  .exiro-front-page .blog-image {
    flex: none;
    width: 100%;
    height: 260px;
  }

  .exiro-front-page .blog-content {
    padding: 40px 30px 80px 30px;
  }

  .exiro-front-page .blog-corner-cut {
    width: 130px;
    height: 130px;
  }

  .exiro-front-page .global-content {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }

  .exiro-front-page .footer-cut-mask {
    width: 150px;
    height: 150px;
  }

  .exiro-front-page .footer-arrow {
    top: 80px;
    right: 20px;
  }

  .exiro-front-page .footer-layout {
    flex-direction: column;
    padding: 150px 180px 20px 80px;
    gap: 60px;
  }

  .exiro-front-page .footer-copyright {
    margin-top: 50px;
  }

  .exiro-front-page .main-footer {
    padding: 0 20px 0;
    background: var(--warm-white);
  }

  .exiro-front-page .global-text {
    flex: 0 0 45%;
  }

  .exiro-front-page .global-image {
    flex: 1;
    position: relative;
    margin-left: calc(-50vw + 50%);
    transform: translateY(100px);
  }

  .exiro-front-page .global-text {
    margin-bottom: 0;
  }

  .exiro-front-page .footer-layout {
    flex-direction: row;
    padding: 150px 40px 20px 20px;
    gap: 60px;
  }
}
