.hero-section {
    background: #f8f9fa;
    border-radius: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 48px 0;
  }
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero-section img {
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  }
  
  /* Benefits Section */
  .benefits-card {
    background-image: url('../../images/grainchain/Card-Container.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 296px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  
  .benefits-content {
    width: 90%;
    display: flex;
    justify-content: center;
  }


    .benefits-content_traders {
      width: 90%;
      max-width: 100%;
      display: flex;
      justify-content: center;
  } 

    .benefits-content_brokers {
      width: 90%;
      max-width: 100%;
      display: flex;
      justify-content: center;
  } 
  
  .content-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: start;
  }

  .content-wrapper_traders{
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: start;
  }

    .content-wrapper_brokers{
    max-width: 100%;
    width: 75%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: start;
  }
  
  .benefit-icon {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    max-width: 160px;
    object-fit: contain;
  }
  
  /* Products Section */
  .products-section .card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    min-height: 280px;
    transition: transform 0.2s;
  }
  .products-section .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .products-section h5 {
    color: #3bb54a;
  }

  .product-card {
      background-image: url('../../images/grainchain/trazado-49278@1x.png');
      background-repeat: no-repeat;
      background-size: 100% 95%;
      background-position: center;
      min-height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 354px;
      overflow: hidden;
    }

    .product-card2 {
      background-image: url('../../images/grainchain/trazado-49285@1x.png');
      background-repeat: no-repeat;
      background-size: 100% 95%;
      background-position: center;
      min-height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 349px;
      overflow: hidden;
    }
    
    .product-content {
      width: 100%;
      max-width: 100%;
      display: flex;
      justify-content: center;
    }
    
    .product-wrapper {
      max-width: 100%;
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding-bottom: 1.8rem;
      height: 310px;
    }
    
    .product-icon {
      width: 349px;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .product-text{
      font-size: 13px;
    }

  .product-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden; 
  }

  .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* oculto por defecto */
    transition: opacity 0.4s ease-in-out;
  }

  .product-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* centra horizontalmente */
    width: 60%;
    height: 8px; /* altura de la barrita */
    background-color: #F15A24; /* color de la barrita */
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.4s ease-in-out;
  }

  /* 👇 ahora el hover depende del card completo */
  .product-card2:hover .product-overlay, .product-card:hover .product-overlay {
    opacity: 0.7;
  }

  .product-card2:hover .product-image-wrapper::after, .product-card:hover .product-image-wrapper::after {
    opacity: 1; /* aparece la barrita al hacer hover */
  }

  /* Colores por producto */
  .product-image-wrapper.harvx::after {
    background-color: #F15A24;
  }

  .product-image-wrapper.trumodity::after {
    background-color: #FDBF0F;
  }

  .product-image-wrapper.silosys::after {
    background-color: #007DDC;
  }

  .product-image-wrapper.seed-audit::after {
    background-color: #359901;
  }
  
  /* Use Cases Section */
  .use-cases-section .card {
    border: none;
  }
  .use-cases-section .col-md-6,
  .use-cases-section [id^="img-"] {
    background: transparent !important;
    box-shadow: none !important;
  }

  .use-cases-section img.img-fluid {
    background: transparent !important;
  }

  .use-cases-section {
    position: relative;
    z-index: 0;
  }

  .custom-pills .nav-link {
    border: 1px solid #ccc;
    border-radius: 999px;
    color: #000;
    background-color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    transition: all 0.2s ease-in-out;
  }
  
  .custom-pills .nav-link.active {
    background-color: #f0f8f2; /* verde muy claro */
    border: 1px solid #58b54c; /* verde */
    color: #000;
  }

  .custom-left-image {
    width: 100px;
    left: 0;
  }
  
  .custom-right-image {
    width: 100px;
    right: 0;
    top: -26px;
    z-index: -1; /* Asegura que quede por debajo */
    position: absolute;
  }

  .mockup-container {
    width: 100%;
    max-width: max-content; /* o el ancho que desees */
    height: 500px;     /* altura fija deseada */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* O "cover" si prefieres que recorte en lugar de ajustar */
    border-radius: 0.5rem;
  }
  
  /* Suite Section */
    .font-nova-suite{
      font-family: var(--font-family-proximanova-bold) !important;
    }
  .suite-section .card {
    border: none;
    border-radius: 16px;
    background: #f8f9fa;
    min-height: 120px;
  }
  .suite-section h6 {
    color: #3bb54a;
    font-size: 1rem;
  }

  .suite-section-card{
    position: relative;
    background-image: url('../../images/grainchain/trazado-30520-1@1x.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 240px;
    min-width: 200px;
    aspect-ratio: 1 / 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    z-index: 0;
   }

   .suite-section-card * {
    position: relative;
    z-index: 1; /* <- el contenido (texto, íconos) va encima */
  }

  .suite-section-trumodity{
    background-image: url('../../images/grainchain/trazado-30520-1@1x.png');
  }

  .suite-section-silosys{
    background-image: url('../../images/grainchain/trazado-30520-1@1x.png');
  }

   .suite-section-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .suite-section-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; /* ← esto hace que el texto se acomode debajo de la imagen */
    align-items: center;     /* ← centramos horizontalmente el contenido */
    gap: 1rem;
    text-align: center;      /* ← centramos el texto */
  }
  
  .suite-section-icon {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    max-width: 100%;
    object-fit: contain;
  }


    .suite-section-trumodity::after {
      content: "";
      position: absolute;
      inset: 0; /* ocupa todo el div */
      background-image: url('../../styles/components/images/home/Trazado\ 30477\ Trumodity\ Hover.svg');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      opacity: 0; /* oculto por defecto */
      transition: opacity 0.3s ease-in-out;
  }

    /* Mostrar overlay al hacer hover */
    .suite-section-trumodity:hover::after {
        opacity: 1;
    }

    .suite-section-silosys::after {
      content: "";
      position: absolute;
      inset: 0; /* ocupa todo el div */
      background-image: url('../../styles/components/images/home/Trazado 30477 Silosys Hover.svg');
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center;
      opacity: 0; /* oculto por defecto */
      transition: opacity 0.3s ease-in-out;
  }

    /* Mostrar overlay al hacer hover */
    .suite-section-silosys:hover::after {
        opacity: 1;
    }

    /* CTA Section */
    .cta-section {
      margin-top: 32px;
      background-image: url('../../images/grainchain/rect-ngulo-23345@1x.png');
    }
    .cta-section .btn-success {
      background: #3bb54a;
      border: none;
      padding: 0.75rem 2.5rem;
      font-size: 1.25rem;
      border-radius: 32px;
      box-shadow: 0 2px 12px rgba(59,181,74,0.12);
      transition: background 0.2s;
    }
    .cta-section .btn-success:hover {
      background: #2e9e3e;
    }

    .bg-cta-section{
      background-color: #f4f7f3 !important;
    }

    .cta-section-bg {
      position: relative;
      background: #f4f7f3;
      overflow: visible;
      padding-bottom: 0;
    }
    

    .cta-img-mask {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      height: 261px; /* Ajusta según lo que necesites mostrar */
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }

    .cta-img-decor {
      width: 98vw;
      min-width: 100%;
      position: absolute;
      left: 0;
      top: -472px; /* Ajusta este valor para mostrar solo la parte superior de la imagen */
      object-fit: cover;
    }

  .nav-link-use-cases{
    border: 1px solid var(--gray-100) !important;
    border: 1px solid #353637 !important;
    border-radius: 28px !important;
    opacity: 1 !important;
    color: #000;
    padding: .5rem 1rem !important;
  }

  .bg-grainchain{
    background-color: #3AAA00;
  }

  .accordion-item{
    background-color: transparent !important;
    border: none !important;
  }

  .accordion-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .accordion-content.collapse {
    max-height: 0;
  }

  .accordion-content.show {
    max-height: 200px; /* ajusta según contenido */
  }

  .accordion-toggle {
    cursor: pointer;
  }
  

    /* Challenges Section */
  .challenges-card {
    min-height: 240px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    max-width: 80%;        /* limita el ancho dentro de la columna */
    margin: 0 auto; 
  }
  
  .challenges-content {
    width: 90%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .challenges_content-wrapper {
    max-width: 100%;
    width: 75%;
    display: flex;
    flex-direction: column; /* cambia de fila a columna */
    align-items: center;    /* centra horizontalmente */
    text-align: center;     /* centra texto */
    gap: 1rem;
  }
  
  .challenges-icon {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    max-width: 25%;
    object-fit: contain;
  }

    .challenges-right-image{
      width: 150px;
      right: 0;
      top: 0;
      z-index: -1; /* Asegura que quede por debajo */
      position: absolute;
    }

     /* Customized solutions Section */
     .solutions-section{
      background-color: #f4f7f3;
     }
    .solutions-section .card {
      border: none;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      min-height: 280px;
      transition: transform 0.2s;
      background-color: #F4F7F3;
    }
    .solutions-section .card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    .solutions-section h5 {
      color: #3bb54a;
    }

    .bg-white {
      background-color: #ffffff !important;
    }
    
    .shadow-sm {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
    
    img {
      display: inline-block;
    }

    .solutions-section .shadow-sm {
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }
    
 

    .solutions-section-text-subtitle{
      font-family: var(--font-family-proximanova-regular);
      font-size: var(--font-size-22px);
      font-style: normal;
    }

  .solutions-card {
      background-image: url('../../images/grainchain/trazado-49278@1x.png');
      background-repeat: no-repeat;
      background-size: 100% 95%;
      background-position: center;
      min-height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 100%;
      overflow: hidden;
    }

    .solutions-card2 {
      background-image: url('../../images/grainchain/trazado-49285@1x.png');
      background-repeat: no-repeat;
      background-size: 100% 95%;
      background-position: center;
      min-height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 100%;
      overflow: hidden;
    }
    
    .solutions-content {
      width: 100%;
      max-width: 100%;
      display: flex;
      justify-content: center;
    }
    
    .solutions-wrapper {
      max-width: 100%;
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding-bottom: 1.8rem;
      height: 310px;
    }
    
    .solutions-icon {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .solutions-text{
      font-size: 13px;
    }

    .solutions-left-image{
      width: auto;
      left: -110px;
    }

    /* Works Section */
    .works-step-1{
      top: 30%; 
      left: 0; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-2{
      top: 30%; 
      left: 27%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3{
      top: 30%; 
      left: 50%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-4{
      top: 45%; 
      left: 80%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-5{
      top: 76%; 
      left: 61%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-6{
      top: 76%; 
      left: 33%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-7{
      top: 98%; 
      left: 9%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-subtitle{
      font-size: 15px;
    }

    .works-step-text{
      font-family: var(--font-family-proximanova-light);
      font-size: var(--font-size-29px);
      font-style: light;
    }
    .works-step-btn{
        top: 89%;
    }

  /* Background Gradient */
  .bg-gradient-section {  
    background-image: url('../../images/grainchain/Gradient.svg'); 
    background-size: cover; 
    background-position: center;
  }



  .bg-pattern-wrapper {
    background: #f8faf7 url('../../images/grainchain/bg-pattern.png') center top repeat;
    background-size: cover;
    min-height: 600px;
    width: 100%;
  }

  .hero-section {
    background: transparent;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .text-grainchain{
    color: #3AAA00;
    letter-spacing: 6px;
  }

  /* Button Demo */
  .btn-demo {
    background: #9dd580;
    color: #000;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.7em 1.5em;
    border: 1px solid #236600;
    box-shadow: 0 2px 8px rgba(34, 177, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    transition: padding-right 0.3s ease, background 0.2s;
    position: relative;
    /* font-size: var(--font-size-l); */
    font-size: 1rem;
  }
  
  /* Oculta completamente la flecha y el espacio */
  /* .btn-arrow {
    display: inline-block;
    width: 0;
    overflow: hidden;
    margin-left: 0;
    color: #236600 !important;
    transition: width 0.3s ease, margin-left 0.3s ease;
  }*/
  
  /* Aparece en hover */
  /* .btn-demo:hover .btn-arrow {
    display: inline;
    animation: slideIn 0.2s ease forwards;
  }  */
  
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .btn-demo:hover,
  .btn-demo:focus {
    background: #3AAA00;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 177, 0, 0.18);
  }

  /* Effects's images */

  .image-overlay {
    position: relative;
    overflow: hidden;
  }
  
  .image-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(298deg, #FDBF0F 0%, #FDBF0FA3 100%);
    opacity: 0.33;
    pointer-events: none;
    z-index: 1;
  }
  
  .image-overlay img {
    position: relative;
    z-index: 0;
  }

    /* Responsive tweaks */
  @media (max-width: 991px) {
    .hero-section .row {
      /* flex-direction: column-reverse; */
      text-align: center;
    }
    .hero-section img {
      margin-bottom: 24px;
    }
    .products-section .card,
    .suite-section .card {
      min-height: 180px;
    }

    .bg-pattern-wrapper {
        min-height: 400px;
        background-size: auto 100%;
      }
  }

  @media (min-width: 991px) and (max-width: 2500px) {
    .product-wrapper {
      height: 450px !important;
    }

    .product-text{
      font-size: 18px;
    }

    .custom-left-image{
      width: 130px;
      left: -60px;
    }

    .custom-right-image{
      width: 157px;
      right: 0;
      top: -26px;
      z-index: -1; /* Asegura que quede por debajo */
      position: absolute;
    }

    .cta-img-mask {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 99vw;
      height: 253px; /* Ajusta según lo que necesites mostrar */
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }

    .cta-img-decor {
      width: 99vw;
      min-width: 100%;
      position: absolute;
      left: 0;
      top: -727px; /* Ajusta este valor para mostrar solo la parte superior de la imagen */
      object-fit: cover;
    }
  }

  /* @media (min-width: 1390px){
    .content-wrapper{
      width: 75%;
    }
  } */

    @media (min-width: 1769px){
       .content-wrapper{
      width: 75%;
    }

    .content-wrapper_traders{
      width: 75%;
    }

    .content-wrapper_brokers{
      width: 75%;
    }
  }

  @media (min-width: 1440px) and (max-width: 1768px){
    .content-wrapper{
      width: 85%;
    }

    .content-wrapper_traders{
      width: 85%;
    }

     .content-wrapper_brokers{
      width: 90%;
    }

  
  }

   @media (min-width: 1440px) and (max-width: 1599px){
    .works-step-1 {
      top: 30%;
      left: 2%;
      font-size: 19px;
      max-width: 217px;
    }

     .works-step-2{
      top: 30%; 
      left: 28%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3{
      top: 30%; 
      left: 50%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-4{
      top: 46%; 
      left: 79%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-5{
      top: 76%; 
      left: 60%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-6{
      top: 76%; 
      left: 34%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-7{
      top: 96%; 
      left: 9%; 
      font-size: 19px; 
      max-width:217px;
    }
  
  }

  @media (min-width: 1600px) and (max-width: 1679px){
    .works-step-1 {
      top: 30%;
      left: 7%;
      font-size: 19px;
      max-width: 217px;
    }

     .works-step-2{
      top: 30%; 
      left: 30%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3{
      top: 30%; 
      left: 50%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-4{
      top: 46%; 
      left: 76%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-5{
      top: 76%; 
      left: 60%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-6{
      top: 76%; 
      left: 34%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-7{
      top: 91%; 
      left: 8%; 
      font-size: 19px; 
      max-width:217px;
    }
  }

    @media (min-width: 1680px) and (max-width: 1750px){
    .works-step-1 {
      top: 30%;
      left: 9%;
      font-size: 19px;
      max-width: 217px;
    }

     .works-step-2{
      top: 30%; 
      left: 31%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3{
      top: 30%; 
      left: 50%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-4{
      top: 46%; 
      left: 76%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-5{
      top: 76%; 
      left: 58%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-6{
      top: 76%; 
      left: 36%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-7{
      top: 91%; 
      left: 12%; 
      font-size: 19px; 
      max-width:217px;
    }
  }

      @media (min-width: 1750px) and (max-width: 1850px){
    .works-step-1 {
      top: 30%;
      left: 11%;
      font-size: 19px;
      max-width: 217px;
    }

     .works-step-2{
      top: 30%; 
      left: 31%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3{
      top: 30%; 
      left: 50%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-4{
      top: 46%; 
      left: 73%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-5{
      top: 76%; 
      left: 58%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-6{
      top: 76%; 
      left: 36%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-7{
      top: 91%; 
      left: 13%; 
      font-size: 19px; 
      max-width:217px;
    }
  }

   @media (min-width: 1231px) and (max-width: 1439px){
    .content-wrapper_traders{
      width: 100%;
    }

     .content-wrapper_brokers{
      width: 100%;
    }

    .works-step-1 {
      top: 32%;
      left: -1%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-2{
      top: 32%; 
      left: 26%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3 {
      top: 32%;
      left: 49%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-4 {
      top: 47%;
      left: 80%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-5 {
      top: 76%;
      left: 60%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-6 {
      top: 76%;
      left: 32%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-7 {
      top: 97%;
      left: 9%;
      font-size: 19px;
      max-width: 217px;
    }
  }

   @media (min-width:1031px) and (max-width: 1230px){
    .benefits-content_brokers{
      width: 85%;
    }

     .works-step-1 {
      top: 33%;
      left: -2%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-2{
      top: 34%; 
      left: 24%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3 {
      top: 35%;
      left: 45%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-4 {
      top: 48%;
      left: 81%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-5 {
      top: 71%;
      left: 58%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-6 {
      top: 71%;
      left: 30%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-7 {
      top: 85%;
      left: 0%;
      font-size: 19px;
      max-width: 217px;
    }
  }

  @media (min-width:891px) and (max-width: 1030px){
    .benefits-content_brokers{
      width: 100%;
    }

    .works-step-1 {
      top: 36%;
      left: -4%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-2{
      top: 35%; 
      left: 24%; 
      font-size: 19px; 
      max-width:217px;
    }

    .works-step-3 {
      top: 35%;
      left: 45%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-4 {
      top: 48%;
      left: 81%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-5 {
      top: 69%;
      left: 58%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-6 {
      top: 69%;
      left: 30%;
      font-size: 19px;
      max-width: 217px;
    }

    .works-step-7 {
      top: 84%;
      left: 4%;
      font-size: 19px;
      max-width: 217px;
    }
  }


  @media (min-width: 1190px) and (max-width: 1380px){
    .benefits-card{
      min-height: 220px !important;
    }

    .benefits-card2{
      min-height: 146px !important;
    }

    .benefits-content{
      width: 100%;
    }
  }

   @media (min-width: 1400px) and (max-width: 1590px){
    .brokers-c .benefits-card{
      min-height: 230px !important;
    }

    .benefits-card{
      min-height: 230px !important;
    }

    .benefits-card2{
      min-height: 215px !important;
    }
  }


  