/* ===== RESPONSIVE DESIGN ===== */

/* Extra large screens */
@media (min-width: 1400px) {
    .iyeg-main-header,
    .iyeg-utility-bar { 
        padding: 0 8%; 
    }
    
    .iyeg-cta-section {
        padding-bottom: 4% !important;
    }
    
    .iyeg-carousel__btn--prev { 
        left: var(--iyeg-carousel-offset-xl); 
        
    }
    .iyeg-carousel__btn--next { 
        right: var(--iyeg-carousel-offset-xl); 
        
    }
    
    .iyeg-color-picker {
        left: 7rem;
    }
    
    .iyeg-carousel__slide--scaled-1 {
        background-size: 90% !important;
    }
    
    .iyeg-color-caption {
        transform: translateX(-10%); /* not effective */
        font-size: 1.7rem;
    }
    
  }

  @media (max-width: 1400px) {
    /* .iyeg-carousel__slide--scaled-2 {
      background-size: 100% !important;
    } */
/* 
    .iyeg-carousel__slide--scaled-1 {
      background-size: 130% !important;
    } */
  }
  
  @media (max-width: 1200px) {
    :root {
      --iyeg-space-xl: 4rem;
      --iyeg-space-lg: 3rem;
    }
  
    .iyeg-spec-container { grid-template-columns: repeat(3, 1fr); gap: var(--iyeg-space-lg); }
    .iyeg-spec-item:nth-child(4)::before {
      content: "";
      position: absolute;
      left: -1rem;
      bottom: 0.625rem;
      height: 3.75rem;
      width: 2px;
      background-color: var(--iyeg-active-green);
    }
  
    .iyeg-highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .iyeg-footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

    
    .iyeg-carousel__slide--scaled-2 {
      background-size: 110% !important;
    }

    .iyeg-carousel__slide--scaled-1 {
      background-size: 160% !important;
    }
    
    
  }
  
  @media (max-width: 1024px) {
    .iyeg-nav-links { display: none; }
    .iyeg-menu-trigger { display: block; }



    .iyeg-dominate-content {
      /* 1. Center all flex children (title, p, and button) horizontally */
      align-items: center;
      
      /* 2. Center the text alignment inside those children */
      text-align: center;
    }

    .iyeg-dominate__title {
      /* Optional: Small font adjustment if 1.625rem feels too large on small phones */
      font-size: 1.5rem; 
      line-height: 1.3;
    }


    .iyeg-dominate__description {
      /* Ensure the description doesn't stick to the edges */
      margin: 0 auto;
      /* max-width is already 31.25rem, which is fine for mobile */
    }


    /*.iyeg-btn--primary {*/
      /* padding: 0.8rem 1.5rem; */
      
      /* 1. Reset any full-width behavior */
    /*display: block; */
    /*width: fit-content;*/
    /*white-space: nowrap;*/
    /*  margin: 0 auto;*/
    /*  text-align: center;*/
    /*}*/
    
    .iyeg-dominate-container { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        
    }
    
     .iyeg-dominate-section .iyeg-btn--primary {
    display: block; 
    width: fit-content;
    white-space: nowrap;
    /* Change margin-left: 0; to margin: 0 auto; */
    margin: 2rem auto 0; /* Top margin for spacing, auto for horizontal centering */
    }

    /* Reset the parent height if it was forced to 100% */
    .iyeg-dominate-image {
      height: auto; 
      position: relative;
  }
    /* .iyeg-overlap-image {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      display: block;
    } */


    .iyeg-overlap-image {
      /* CRITICAL: Reset absolute positioning to bring it back into document flow */
      position: relative; 
      top: 0;
      left: 0;
      transform: none; /* Remove the translate and scale or adjust as needed */
      
      /* Centering and sizing */
      display: block;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      
      /* Keep your styling */
      filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
  }



    .iyeg-newsletter { grid-template-columns: 1fr; }
    .iyeg-video-grid,
    .iyeg-news-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Allow phone numbers to wrap on very small screens */
    .iyeg-hq-item:last-of-type .iyeg-hq-content { white-space: normal; }

    .iyeg-carousel__slide--scaled-2 {
      background-size: 130% !important;
    }

    .iyeg-carousel__slide--scaled-1 {
      background-size: 160% !important;
    }
    
  
  }
  
  @media (max-width: 768px) {
    :root {
      --iyeg-font-size-hero: clamp(2.5rem, 8vw, 4rem);
      --iyeg-font-size-xl: 1.75rem;
      --iyeg-font-size-lg: 1.25rem;
      --iyeg-font-size-md: 1.125rem;
      --iyeg-header-height: 7rem;
    }

 .iyeg-hero {
        height: auto !important;
        min-height: 0 !important;
        display: block; /* Switch from flex to block to avoid alignment gaps */
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .iyeg-hero__video {
        /* CRITICAL: Change from cover to contain */
        position: relative; /* Removes absolute positioning to allow natural flow */
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain !important; 
    }

    .iyeg-scroll-hint {
        display: none !important;
    }
  
    .iyeg-container { padding: 0 var(--iyeg-space-sm); }
    .iyeg-scroll-hint__arrow { color: var(--iyeg-active-green); }
    /* .iyeg-utility-bar {
      justify-content: flex-end;
      font-size: 0.75rem;
      height: auto;
      padding: 0.25rem 1rem;
    } */

    .iyeg-utility-bar {
      display: flex;
      justify-content: space-between;
      padding: 0.5rem;
    }
  
    .iyeg-side-menu .iyeg-menu-link {
      font-size: var(--iyeg-font-size-sm) !important;
      padding: 0.375rem 0;
    }
  
    .iyeg-country-switcher { width: 100%; display: flex; justify-content: flex-end; }
    .iyeg-country-switcher__menu { right: 0; left: auto; }
    .iyeg-country-switcher__menu::before { right: 20px; left: auto; }
    
    .iyeg-utility-info .iyeg-utility-info__phone { display: none; }
    .iyeg-main-header { padding: 0 1rem; }
    .iyeg-hero__subtitle { letter-spacing: 0.125rem; font-size: var(--iyeg-font-size-sm); }
  
    .iyeg-spec-container { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 2.5rem 2rem; 
        
    }
    .iyeg-spec-item:nth-child(4)::before { content: none; }
     .iyeg-spec-item:first-child:before {
        content: none;
    }
    .iyeg-spec-item:nth-child(even)::after {
        content: none;
    }
    
    
    /*.iyeg-spec-container { */
    /*    grid-template-columns: repeat(2, 1fr); */
    /*    gap: 2.5rem 0; */
    /*    padding: 0 1rem;*/
    /*}*/
  
    .iyeg-spec__icon[alt="Range"] { transform: scale(1.15); }
  
    .iyeg-specs-section,
    .iyeg-highlights-section,
    .iyeg-accessories-section,
    .iyeg-video-section,
    .iyeg-news-section,
    .iyeg-cta-section,
    .iyeg-disclaimer-section { padding: var(--iyeg-space-lg) 5%; }
  
    .iyeg-carousel { height: 60vh; }
    .iyeg-carousel__btn { 
        width: 3rem; 
        height: 3rem; 
        font-size: 1rem; 
        margin: 0 1rem;
        top: 52%;
        
    }
  
    /*.iyeg-spec-row {*/
    /*  flex-direction: column;*/
    /*  align-items: flex-start;*/
    /*  gap: 0.5rem;*/
    /*}*/
    
    .iyeg-spec-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important; /* Keeps bullet/label at the top */
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    /*.iyeg-spec-row__value {*/
    /*  text-align: left;*/
    /*  max-width: 100%;*/
    /*}*/
    
    
    /* 2. Label styling (Left side) */
.iyeg-spec-row__label {
  flex-shrink: 0; /* Prevents label from being squashed */
  text-align: left;
  display: flex;
  /*align-items: center;*/
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--iyeg-text-gray);
  /* Ensure it doesn't take up too much room on mobile */
  max-width: 45%; 
  font-size: var(--iyeg-font-size-sm);
}

/* 3. Value styling (Right side + wrapping) */
.iyeg-spec-row__value {
  flex-grow: 1;
  text-align: right; /* Aligns text to the right edge */
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: var(--iyeg-font-size-sm);
  align-items: flex-start;
  
  /* Critical for wrapping */
  white-space: normal; 
  word-wrap: break-word;
  max-width: 55%; 
  
  /* Line height fix: 100% is too tight for multiple lines */
  line-height: 1.4 !important; 
}

.iyeg-spec-row__label::before{
    /* CRITICAL: Prevents the bullet from creating its own vertical space */
    line-height: 1; 
    
    /* Nudge it down 2-3 pixels to align with the first capital letter */
    margin-top: 0.09rem; 
    
    /* Ensures the bullet doesn't shrink or wrap */
    flex-shrink: 0;
}

.mobile-break {
        display: block; /* This forces the line break */
        content: "";    /* Extra safety for some browsers */
        margin-top: 0;  /* Ensures no extra gap is added */
    }
    
    .iyeg-accordion {
    /* Slightly reduce width from the desktop's 800px */
    max-width: 92%;
    }
    
    
  
    .iyeg-color-section { 
        height: 30vh; 
        min-height: 480px;
        
    }
    /*.iyeg-vehicle-container{*/
    /*    height: 60vh;*/
    /*}*/
    
    
    /*.iyeg-color-picker {*/
    /*  flex-direction: row;*/
    /*  left: 50%;*/
    /*  top: auto;*/
    /*  bottom: 5rem;*/
    /*  transform: translateX(-50%);*/
    /*}*/
    
    .iyeg-color-section .iyeg-color-picker {
    flex-direction: row;
    left: 50%;
    right: auto; 
    top: auto;
    bottom: 5rem;
    transform: translateX(-50%) !important;
    /*width: auto;*/
    /*margin: 0 auto;*/
  }
  
    .iyeg-color-caption {
      bottom: 2rem;
      font-size: var(--iyeg-font-size-md);
    }
  
    .iyeg-highlights-grid,
    .iyeg-video-grid,
    .iyeg-news-grid { grid-template-columns: 1fr; }
    .iyeg-accessories-grid { grid-template-columns: 1fr; }
    .iyeg-accessory-card img { height: 250px; }
  
    .iyeg-footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .iyeg-strip-container { flex-direction: column; text-align: center; gap: 1rem; }
    .iyeg-legal-links { order: 3; }
    .iyeg-footer-social { order: 2; }
  
    .iyeg-testimonial-section { height: 30rem; }
    .iyeg-review-text { font-size: var(--iyeg-font-size-base); }
  
    .iyeg-video-grid { grid-template-columns: repeat(2, 1fr); }
    .iyeg-play-button { width: 45px; height: 45px; }
    .iyeg-play-triangle { border-width: 7px 0 7px 10px; }
    .iyeg-expand-button, .iyeg-mute-button { width: 32px; height: 32px; bottom: 10px; }
    
    .iyeg-hq-container { align-items: flex-start; }


    .iyeg-carousel__slide--scaled-2 {
      background-size: 120% !important;
    }

    .iyeg-carousel__slide--scaled-1 {
      background-size: 150% !important;
    }
    
    
  }
  
  @media (max-width: 480px) {
    :root {
      --iyeg-font-size-hero: clamp(2rem, 6vw, 3rem);
      --iyeg-font-size-xl: 1.5rem;
      --iyeg-header-height: 5.5rem;
    }
  
    .iyeg-country-switcher { width: 100%; }
    .iyeg-country-switcher__menu { right: 0; left: auto; }
    .iyeg-main-header { height: 4rem; }
    .iyeg-logo img { 
        height: 2rem !important; 
        /*height: auto;*/
        width: 11rem;
    }
    
    .iyeg-side-menu__logo img {
        width: 11rem;
        height: auto;
    }
    
    .iyeg-spec-container { padding: 0 1rem; }
  
    .iyeg-spec__icon[alt="Range"] { transform: scale(1.15); }
    .iyeg-spec__value {
        font-size: 2.5rem;
    }

    .iyeg-carousel { height: 40vh; }
    .iyeg-carousel__btn { 
        width: 2.8rem; 
        height: 2.8rem; 
        font-size: 1rem; 
        margin: 0 1rem;
        top: 54%;
        
    }
    
    .iyeg-carousel__btn--prev { 
        left: var(--iyeg-carousel-offset-sm); 
        
    }
    .iyeg-carousel__btn--next { 
        right: var(--iyeg-carousel-offset-sm); 
        
    }
    
    .iyeg-section-title{
        font-size: 1.3rem;
    }
    
    .iyeg-accordion__title{
        font-size: var(--iyeg-font-size-base);
    }
    
     .iyeg-color-section { 
        height: 30vh;
        min-height: 450px;
        
    }
    
    .iyeg-vehicle-container{
        transform: scale(1.2)!important;
    }
    
    
    /*.iyeg-cta-inner { */
    /*    height: auto; */
    /*    padding: 2rem 1rem; */
    /*    max-width: 100%;*/
    /*}*/
    .iyeg-cta-text { font-size: var(--iyeg-font-size-base); }
    .iyeg-play-button { width: 4rem; height: 4rem; }
    .iyeg-play-triangle { border-width: 0.75rem 0 0.75rem 1.25rem; }
    .iyeg-expand-button { width: 2rem; height: 2rem; font-size: 0.875rem; }
    .iyeg-testimonial-section { height: 25rem; padding: 2rem 1rem; }
    .iyeg-testimonial-container { width: 100%; }
    .iyeg-nav-btn { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
    
    .iyeg-btn--primary {
    display: block !important;    /* Block ensures width: 100% is respected */
    width: 100% !important;      /* Forces full width of parent container */
    max-width: 100% !important;  /* Overrides any desktop max-widths */
    text-align: center !important; /* Centers the text inside the wide button */
    padding: 0.625rem 1.25rem !important; /* Slightly more padding for better touch area */
    box-sizing: border-box;      /* Ensures padding doesn't push button outside screen */
    font-size: 0.875rem;
  }

  /* If you have other button variants (secondary, outline), add them here too */
  .iyeg-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  
    .mobile-break-sm {
        display: block; /* This forces the line break */
        content: "";    /* Extra safety for some browsers */
        margin-top: 0;  /* Ensures no extra gap is added */
    }
    
    /* Hide the overlay navigation buttons */
  .iyeg-testimonial-section .iyeg-carousel__btn--prev,
  .iyeg-testimonial-section .iyeg-carousel__btn--next {
    display: none !important;
  }
  
  
  .iyeg-testimonial-section {
    /* 1. Set a fixed height tall enough for your longest review */
    height: 38rem !important; 
    position: relative; /* Anchor for the absolute dots */
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    overflow: hidden;
  }

  .iyeg-testimonial-container {
    height: 100%;
    display: flex;
    align-items: center; /* Vertically centers the text within the 38rem */
  }

  .iyeg-testimonial-slide {
    width: 100%;
    /* Ensure the slide doesn't collapse */
    flex: 0 0 100%; 
  }

  .iyeg-review-text {
    /* Much smaller as requested to fit the box better */
    font-size: 0.8125rem !important;
    line-height: 1.5;
    text-align: center;
    /* Limit height and allow scrolling only if it exceeds the box */
    max-height: 28rem; 
    overflow-y: auto; 
    margin-bottom: 1rem;
  }

  /* 2. Lock the dots to the bottom so they NEVER move */
  .iyeg-dots-container {
    position: absolute;
    bottom: 2rem; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
  }
  
  .iyeg-customer-name {
    font-size: 0.875rem;
    text-align: center;
  }
  
 

  
    .iyeg-side-menu .iyeg-btn--primary {
      margin-top: 1rem;
      width: 100%;
      text-align: center;
    }
  
    .iyeg-newsletter-form { flex-direction: column; }
    .iyeg-newsletter-btn { width: 100%; padding: 0.9375rem; }
    .iyeg-video-grid { grid-template-columns: 1fr; }

  }
  
  @media (max-width: 360px) {
    .iyeg-utility-info { display: none; }
    .iyeg-side-menu { max-width: 280px; padding: 4rem 1.5rem; }
    .iyeg-hero__title { font-size: 2.5rem; }
    .iyeg-footer-title { font-size: var(--iyeg-font-size-sm); }
    .iyeg-hq-label,
    .iyeg-hq-content,
    .iyeg-footer-links li { font-size: var(--iyeg-font-size-xs); }
  }
  
  /* Print Styles */
  @media print {
    .iyeg-header-stack,
    .iyeg-scroll-hint,
    .iyeg-carousel__btn,
    .iyeg-testimonial-nav,
    .iyeg-play-button,
    .iyeg-expand-button,
    .iyeg-footer-social,
    .iyeg-menu-trigger,
    .iyeg-side-menu {
      display: none !important;
    }
  
    body { color: #000; background: #fff; }
    .iyeg-btn { border: 1px solid #000; }
  }
  
  /* Touch device optimization */
  @media (hover: none) and (pointer: coarse) {
    .iyeg-side-menu a:active::after { width: 100%; }
  }
  
  /* Short screen handling */
  @media (max-height: 600px) {
    .iyeg-scroll-hint { bottom: 0.75rem; }
  }



  /* Compliance: Disable animation for sensitive users */
  @media (prefers-reduced-motion: reduce) {
    .iyeg-carousel__track,
    .iyeg-testimonial-slide {
      transition: none !important;
      animation: none !important;
    }
  }


  /* about page :  */

   /* ===== RESPONSIVE DESIGN ===== */
   @media (max-width: 1200px) {
    :root {
      --iyeg-space-xl-1: 4rem;
      --iyeg-space-xxl: 5rem;
    }
  }

  @media (max-width: 1024px) {
    /* :root {
      --iyeg-container-padding: 5%;
      --iyeg-font-size-hero: clamp(2.25rem, 6vw, 3rem);
      --iyeg-font-size-xl: 1.75rem;
      --iyeg-font-size-lg: 1.25rem;
      --iyeg-font-size-md: 1.125rem;
    } */

    /* .iyeg-nav-links {
      display: none;
    } */

    /* .iyeg-menu-trigger {
      display: block;
    } */

    .iyeg-our-story {
      background-image: none !important;
      background-color: var(--iyeg-primary-black);
    }

    .iyeg-mv-section {
      grid-template-columns: 1fr;
      gap: var(--iyeg-space-lg-1);
    }

    .iyeg-mv-content {
      padding-right: 0;
      order: 1;
    }

    /* .iyeg-mv-image {
            order: 2;
            justify-content: center;
            margin-top: var(--iyeg-space-md);
        } */

    .iyeg-mv-image {
      display: none;
    }

    .iyeg-bleed-image {
      width: 100%;
      transform: none;
      max-width: 600px;
      margin: 0 auto;
    }

    .iyeg-cta-inner {
      height: auto;
      padding: 2rem;
    }

    .iyeg-cta-text {
      font-size: var(--iyeg-font-size-base);
    }
  }

  @media (max-width: 768px) {
    /* :root {
      --iyeg-font-size-hero: clamp(2rem, 5vw, 2.5rem);
      --iyeg-font-size-xl: 1.5rem;
      --iyeg-font-size-lg: 1.125rem;
      --iyeg-font-size-md: 1rem;
    } */

    body {
      padding-top: 100px;
    }

    .iyeg-about-hero {
      margin-top: -100px;
      height: 60vh;
      min-height: 400px;
      padding: var(--iyeg-space-lg-1) var(--iyeg-container-padding);
    }


    .iyeg-logo img {
      height: 2rem;
    }

    .iyeg-our-story {
      padding: var(--iyeg-space-xl-1) var(--iyeg-mobile-padding);
      /* background-attachment: scroll; */
      /* background-size: cover; */
      background-image: none !important;
      background-color: var(--iyeg-primary-black);
    }

    .iyeg-story-content__text {
      font-size: var(--iyeg-font-size-base);
      line-height: 1.75;
    }

    .iyeg-mv-section {
      padding: var(--iyeg-space-lg-1) var(--iyeg-mobile-padding);
    }

    .iyeg-mv-text {
      font-size: var(--iyeg-font-size-base);
      line-height: 1.75;
    }

    .iyeg-mv-image {
      display: none;
    }
    
    
    .iyeg-highlights-section .iyeg-overlay-description {
    /* 14px equivalent */
    font-size: 0.875rem !important; 
    line-height: 1.4;
    padding: 1rem;
  }

  .iyeg-highlights-section .iyeg-overlay-title {
    /* Slightly smaller title to save vertical space */
    font-size: 0.9rem;
  }
    
    
    .iyeg-cta-section {
    /* Reduce or remove horizontal padding to let the box go wider */
    padding: 0 5% var(--iyeg-container-padding) !important;
  }

  .iyeg-cta-inner {
    max-width: 100%; /* Allows it to fill the available space */
    height: 15rem;   /* Slightly shorter for tablets */
    border-radius: 4px; /* Optional: smaller radius looks better on mobile */
  }

    .iyeg-cta-text {
      font-size: var(--iyeg-font-size-sm);
    }

    /* .iyeg-footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
    } */

    /* .iyeg-strip-container {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    } */
/* 
    .iyeg-legal-links {
      order: 3;
    } */

    /* .iyeg-strip-social {
      order: 2;
    } */

    /* .iyeg-newsletter {
      padding: 0 var(--iyeg-mobile-padding) var(--iyeg-space-lg)
        var(--iyeg-mobile-padding);
    } */

    /* .iyeg-footer-main {
      padding: var(--iyeg-space-lg) var(--iyeg-mobile-padding);
    } */
  }

  @media (max-width: 480px) {
    /* :root {
      --iyeg-font-size-hero: clamp(1.75rem, 4vw, 2rem);
      --iyeg-container-padding: 1rem;
    }

    body {
      padding-top: 80px;
    } */

    .iyeg-header-stack {
      height: 80px;
    }
    .iyeg-about-hero {
      margin-top: -80px;
      height: 50vh;
      min-height: 300px;
    }

    .iyeg-story-content__title {
      font-size: var(--iyeg-font-size-lg);
    }

    .iyeg-mv-title {
      font-size: var(--iyeg-font-size-md);
    }

    .iyeg-bleed-image {
      width: 130%;
      transform: scale(1.05);
    }

    /* .iyeg-newsletter-form {
      flex-direction: column;
    }

    .iyeg-newsletter-btn {
      width: 100%;
      padding: 0.9375rem;
    }

    .iyeg-side-menu {
      max-width: 280px;
      padding: 5rem 1.5rem 2rem;
    }

    .iyeg-side-menu__close {
      top: 15px;
      right: 20px;
    } */
  }

  @media (max-width: 360px) {
    /* .iyeg-side-menu {
      max-width: 260px;
      padding: 5rem 1rem 2rem;
    } */

    .iyeg-about-hero__title {
      font-size: 1.5rem;
    }

    .iyeg-bleed-image {
      width: 140%;
    }
  }

  /* Print Styles */
  @media print {
    .iyeg-header-stack,
    .iyeg-menu-trigger,
    .iyeg-side-menu,
    .iyeg-utility-bar,
    .iyeg-footer-social,
    .iyeg-strip-social {
      display: none !important;
    }

    body {
      color: #000;
      background: #fff;
      padding-top: 0;
    }

    .iyeg-btn {
      border: 1px solid #000;
    }

    .iyeg-about-hero {
      background: none !important;
      height: auto;
      margin-top: 0;
    }

    .iyeg-our-story {
      background: none !important;
    }

    .iyeg-our-story::before {
      display: none;
    }

    .iyeg-cta-inner {
      background: none !important;
    }

    .iyeg-cta-inner::before {
      display: none;
    }
  }
