/* --- CONTENEDOR SIMPLIFICADO ON DEMAND --- */
.mint-demand-simple-box {
width: 100% !important;
max-width: 1200px !important;
margin: 50px auto !important;
padding: 20px 20px !important;
text-align: center !important;
font-family: 'Montserrat', sans-serif !important;
box-sizing: border-box !important;
}
/* --- TÍTULO PRINCIPAL NEGRO --- */
.mint-demand-s-title {
font-size: 44px !important;
font-weight: 800 !important;
color: #000000 !important;
margin: 0 0 8px 0 !important;
letter-spacing: -1px !important;
line-height: 1.2 !important;
}
/* --- SUBTÍTULO VERDE --- */
.mint-demand-s-subtitle {
font-size: 24px !important;
font-weight: 600 !important;
color: #8cbe51 !important;
margin: 0 0 15px 0 !important;
letter-spacing: -0.5px !important;
}
/* --- BOTÓN REDONDEADO OUTLINE --- */
.mint-demand-s-btn {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
gap: 10px !important;
background: transparent !important;
color: #1a1a1a !important;
border: 2px solid #8cbe51 !important;
border-radius: 50px !important;
padding: 14px 35px !important;
font-size: 18px !important;
font-weight: 600 !important;
text-decoration: none !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
}
/* 🎯 SOLUCIÓN: Cambiado a degradado de 3 colores con textos e icono en blanco */
.mint-demand-s-btn:hover {
background: linear-gradient(to right, #6caa2a, #89bb44, #81bf80) !important;
color: #ffffff !important;
border-color: transparent !important;
transform: translateY(-2px) !important;
box-shadow: 0 8px 25px rgba(108, 170, 42, 0.35) !important;
}
/* Icono de corazón (Por defecto verde) */
.mint-heart-s-icon {
width: 22px !important;
height: 22px !important;
display: inline-block !important;
vertical-align: middle !important;
transition: stroke 0.3s ease !important;
}
/* Cambia el trazo del corazón a blanco cuando el botón está en hover */
.mint-demand-s-btn:hover .mint-heart-s-icon {
stroke: #ffffff !important;
}
/* HTML Smooth Scroll */
html {
scroll-behavior: smooth !important;
}
/* Responsive */
@media (max-width: 768px) {
.mint-demand-s-title { font-size: 32px !important; }
.mint-demand-s-subtitle { font-size: 19px !important; }
.mint-demand-s-btn { font-size: 16px !important; padding: 12px 28px !important; }
}
(function() {
const btn = document.querySelector('.mint-demand-s-btn');
if (btn) {
btn.addEventListener('click', function(e) {
e.preventDefault();
const targetSection = document.querySelector('.mint-reviews-section');
if (targetSection) {
/* 🛠️ TRUCO: Modifica este número (-100).
Si lo pones en -130 frenará más ARRIBA. Si lo pones en -70 frenará más ABAJO. */
const yOffset = -100;
const yPosition = targetSection.getBoundingClientRect().top + window.pageYOffset + yOffset;
window.scrollTo({
top: yPosition,
behavior: 'smooth'
});
}
});
}
})();
/* --- ESTILOS DE TÍTULOS (REORGANIZADOS) --- */
.mint-header-container {
text-align: center !important;
font-family: 'Montserrat', sans-serif !important;
margin-bottom: 20px !important;
}
.mint-pretitle {
color: #6caa2a !important;
font-weight: 800 !important;
font-size: 22px !important;
letter-spacing: 2px !important;
text-transform: uppercase !important;
margin-top: 15px !important;
margin-bottom: 0 !important;
}
.mint-main-title {
font-family: 'Montserrat', sans-serif !important;
font-size: 55px !important;
/* 🎯 SOLUCIÓN: Ajustado a 700 para que tenga buen cuerpo sin verse exagerado */
font-weight: 700 !important;
color: #1a1a1a !important;
line-height: 0.9 !important;
margin: 0 !important;
letter-spacing: -2px !important;
}
.mint-gradient-text {
background: linear-gradient(to right, #6caa2a, #89bb44, #81bf80) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
display: inline-block !important;
}
/* --- ESTILOS DE TARJETAS --- */
.mint-flex-row {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
justify-content: center !important;
gap: 20px !important;
width: 100% !important;
max-width: 1300px !important;
margin: 0 auto !important;
align-items: stretch !important;
/* 🎯 MANTENIDO: Movido sutilmente a la izquierda */
position: relative !important;
left: -30px !important;
}
.mint-card-final {
flex: 1 !important;
background: #ffffff !important;
border: 1px solid #e0e0e0 !important;
border-radius: 25px !important;
padding: 40px 10px 60px 12px !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
text-align: center !important;
transition: all 0.4s ease !important;
cursor: pointer !important;
box-sizing: border-box !important;
}
.mint-card-final:hover {
background: linear-gradient(135deg, #6caa2a, #89bb44, #81bf80) !important;
border-color: transparent !important;
transform: translateY(-10px) !important;
box-shadow: 0 15px 30px rgba(108, 170, 42, 0.2) !important;
}
.mint-card-final:hover h3,
.mint-card-final:hover p {
color: #ffffff !important;
}
/* ICONOS CON BORDES REDONDEADOS */
.mint-icon-container {
position: relative !important;
width: 70px !important;
height: 70px !important;
margin-bottom: 20px !important;
border-radius: 15px !important;
overflow: hidden !important;
}
.mint-icon-container img {
width: 70px !important;
height: 70px !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
border-radius: 15px !important;
transition: opacity 0.3s ease !important;
object-fit: cover !important;
}
.img-hover { opacity: 0 !important; }
.mint-card-final:hover .img-normal { opacity: 0 !important; }
.mint-card-final:hover .img-hover { opacity: 1 !important; }
.mint-card-final h3 {
font-size: 20px !important;
font-weight: 800 !important;
color: #1a1a1a !important;
margin: 0 0 15px 0 !important;
line-height: 1.2 !important;
min-height: 44px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-family: 'Montserrat', sans-serif !important;
}
.mint-card-final p {
font-size: 17px !important;
color: #4a4a4a !important;
line-height: 1.4 !important;
margin: 0 !important;
}
Healthcare
HIPAA - compliant OPI and VRI for patient care, telehealth and intake. Connect to interpreters when the patient needs it.
Legal & Governments
Court proceedings, depositions, client meetings. Precise, confidential, court-compliant interpretation.
Education
Parent - teacher conferences, IEP meetings, enrollment and student support - all bridged instantly.
Businesses
Customer support, sales, and operations. Real-time language access for clear communication.
Social Services & Non Profits
Case management, crisis response, and community support.
And more!
We have flexible solutions for any organizations. We adapt to your needs, ensuring clear and reliable on-demand interpretation.
/* --- CONTENEDOR PRINCIPAL --- */
.mint-how-works {
display: flex !important;
flex-direction: row !important;
gap: 40px !important;
max-width: 1200px !important;
margin: 0 auto !important;
padding: 25px 20px !important;
font-family: 'Montserrat', sans-serif !important;
align-items: flex-start !important;
}
/* --- COLUMNA IZQUIERDA --- */
.mint-hiw-left { flex: 1 !important; }
.mint-hiw-pretitle {
color: #6caa2a !important;
font-weight: 800 !important;
font-size: 22px !important;
text-transform: uppercase !important;
letter-spacing: 2px !important;
margin-bottom: 0px !important;
}
.mint-hiw-title {
font-size: 52px !important;
font-weight: 800 !important;
color: #000000 !important;
line-height: 1.1 !important;
margin-bottom: 40px !important;
}
.mint-hiw-gradient {
background: linear-gradient(to right, #6caa2a, #89bb44, #81bf80) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
display: inline-block !important;
}
/* CARDS INTERACTIVAS */
.mint-hiw-card {
background: #f8f8f8 !important;
border: 2px solid transparent !important;
border-radius: 25px !important;
padding: 25px !important;
margin-bottom: 20px !important;
display: flex !important;
align-items: center !important;
gap: 20px !important;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
cursor: pointer !important;
text-align: left !important;
box-shadow: 0 4px 6px rgba(0,0,0,0.02) !important;
}
.mint-hiw-card:hover {
background: #ffffff !important;
border-color: #6caa2a !important;
box-shadow: 0 15px 30px rgba(108, 170, 42, 0.12) !important;
transform: translateX(10px) !important;
}
.mint-hiw-icon-box {
background: transparent !important;
width: 85px !important;
height: 85px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
flex-shrink: 0 !important;
position: relative !important;
border: none !important;
}
.mint-hiw-icon-box img {
width: 100% !important;
height: 100% !important;
max-width: 100% !important;
max-height: 100% !important;
min-width: 100% !important;
min-height: 100% !important;
object-fit: contain !important;
display: block !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
border: none !important;
background: none !important;
padding: 0 !important;
margin: 0 !important;
box-shadow: none !important;
transition: opacity 0.3s ease !important;
}
.img-verde { opacity: 0 !important; }
.img-gris { opacity: 1 !important; }
.mint-hiw-card:hover .img-verde { opacity: 1 !important; }
.mint-hiw-card:hover .img-gris { opacity: 0 !important; }
.mint-hiw-badge {
background: #e8e8e8 !important;
color: #999 !important;
font-size: 11px !important;
font-weight: 800 !important;
padding: 4px 12px !important;
border-radius: 6px !important;
display: inline-block !important;
margin-bottom: 8px !important;
transition: all 0.3s ease !important;
}
.mint-hiw-card:hover .mint-hiw-badge {
background: #d4e8c4 !important;
color: #6caa2a !important;
}
.mint-hiw-card-title {
font-size: 20px !important;
font-weight: 800 !important;
color: #1a1a1a !important;
margin: 0 0 5px 10px !important;
display: inline-block !important;
vertical-align: middle !important;
}
.mint-hiw-card-desc {
font-size: 15px !important;
color: #666 !important;
line-height: 1.5 !important;
margin: 0 !important;
}
/* --- COLUMNA DERECHA --- */
.mint-hiw-right { flex: 1 !important; }
.mint-steps-pretitle {
color: #6caa2a !important;
font-weight: 800 !important;
font-size: 22px !important;
text-transform: uppercase !important;
margin-bottom: 25px !important;
text-align: center !important;
letter-spacing: 1px !important;
/* 🎯 SOLUCIÓN: Subimos de 45px a 85px para bajar todo el bloque derecho hasta el medio del título izquierdo */
margin-top: 85px !important;
}
.mint-steps-container {
background: linear-gradient(135deg, #6caa2a, #89bb44, #81bf80) !important;
border-radius: 35px !important;
padding: 45px 35px !important;
box-shadow: 0 20px 40px rgba(108, 170, 42, 0.2) !important;
}
.mint-step-row {
background: rgba(255, 255, 255, 0.15) !important;
border-radius: 20px !important;
padding: 15px 25px !important;
margin-bottom: 15px !important;
display: flex !important;
align-items: center !important;
color: white !important;
transition: all 0.3s ease !important;
backdrop-filter: blur(5px);
}
.mint-step-number {
background: #ffffff !important;
color: #6caa2a !important;
width: 35px !important;
height: 35px !important;
border-radius: 50% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-weight: 800 !important;
margin-right: 18px !important;
flex-shrink: 0 !important;
font-size: 16px !important;
}
.mint-step-text { font-size: 16px !important; font-weight: 700 !important; }
.mint-time-highlight {
background: #ffffff !important;
color: #6caa2a !important;
padding: 4px 12px !important;
border-radius: 10px !important;
margin-left: 10px !important;
font-size: 22px !important;
font-weight: 900 !important;
display: inline-block !important;
}
/* --- AJUSTES RESPONSIVE MÓVIL --- */
@media (max-width: 900px) {
.mint-how-works { flex-direction: column !important; }
.mint-hiw-title { font-size: 40px !important; }
/* MANTENIDO: Reseteamos el empuje en móvil para que fluya de arriba a abajo ordenadamente */
.mint-steps-pretitle {
margin-top: 20px !important;
font-size: 19px !important;
}
}
HOW IT WORKS
Three ways to connect instantly.
OPI
Over-the-Phone
Dial in from any phone. Connect to a live interpreter in under 30 seconds.
WWW
Website
Visit the website and connect with an interpreter in under 30 seconds.
APP
Mobile App
One-tap interpreter requests from iOS or Android. Anywhere, anytime.
5 STEPS TO CONNECT TO AN INTERPRETER
1
Dial the MINTNow! Number
2
Enter your PIN followed by #
3
Say the language followed by #
4
Say the client's identifier followed by #
5
Wait to be connected in <30s
/* --- BANNER EXTRA LARGO Y CENTRADO --- */
.mint-banner-full-center {
/* Degradado de 3 colores exacto */
background: linear-gradient(to right, #6caa2a, #89bb44, #81bf80) !important;
border-radius: 20px !important;
/* ESTO HACE QUE SEA LARGO Y SE MANTENGA CENTRADO */
width: 95vw !important; /* Ocupa el 95% del ancho de pantalla */
max-width: 1500px !important; /* Límite para que no se deforme en pantallas gigantes */
position: relative !important;
left: 50% !important;
transform: translateX(-50%) !important; /* Técnica infalible de centrado */
margin-top: 0 !important; /* Pegado al bloque anterior */
margin-bottom: 40px !important;
padding: 20px 0 !important; /* Slim (angosto) */
display: flex !important;
flex-direction: row !important;
justify-content: space-evenly !important;
align-items: center !important;
font-family: 'Montserrat', sans-serif !important;
box-shadow: 0 10px 30px rgba(108, 170, 42, 0.2) !important;
box-sizing: border-box !important;
}
.mint-stat-group {
flex: 1 !important;
text-align: center !important;
color: #ffffff !important;
}
/* NÚMEROS */
.mint-num-val {
font-size: 40px !important;
font-weight: 900 !important;
line-height: 1 !important;
margin: 0 !important;
display: block !important;
}
/* TEXTO MEDIO */
.mint-label-val {
font-size: 17px !important;
font-weight: 700 !important;
text-transform: uppercase !important;
margin: 2px 0 !important;
display: block !important;
}
/* TEXTO PEQUEÑO */
.mint-info-val {
font-size: 12px !important;
font-weight: 400 !important;
opacity: 0.9 !important;
margin: 0 !important;
line-height: 1.1 !important;
}
/* RESPONSIVE MÓVIL */
@media (max-width: 1024px) {
.mint-banner-full-center {
width: 95% !important;
left: 0 !important;
transform: none !important;
flex-wrap: wrap !important;
padding: 30px 10px !important;
}
.mint-stat-group {
min-width: 50% !important;
margin-bottom: 20px !important;
}
}
200+
Languages
Including rare and indigenous
<30s
Connect Time
Average interpreter match
24/7
Availability
No scheduling required
100%
Satisfaction
Among enterprise clients
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
/* --- SECCIÓN PRINCIPAL --- */
.mint-reviews-section {
background-color: #f9fbf7;
padding: 60px 20px;
text-align: center;
font-family: 'Montserrat', sans-serif;
overflow: hidden;
}
.mint-reviews-title {
font-size: 42px;
font-weight: 800;
color: #1a1a1a;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: -1px;
}
.mint-reviews-subtitle {
font-size: 18px;
color: #666;
margin-bottom: 50px;
font-weight: 500;
}
/* --- CONTENEDOR DE TARJETAS --- */
.mint-cards-container {
display: flex;
justify-content: center;
align-items: center;
position: relative;
max-width: 1100px;
margin: 0 auto 50px auto;
height: 480px;
}
/* --- ESTILO BASE DE LAS TARJETAS --- */
.mint-review-card {
background: #ffffff;
border-radius: 20px;
/* 🎯 SOLUCIÓN: Reducido padding superior/inferior para empujar el contenido hacia arriba */
padding: 30px 25px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
width: 320px;
position: absolute;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
text-align: left;
border: 1px solid #eef2eb;
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateX(0) scale(0.7);
z-index: 0;
}
/* --- ESTADOS DE ANIMACIÓN --- */
.mint-review-card.pos-left {
opacity: 0.5;
visibility: visible;
pointer-events: auto;
transform: translateX(-290px) scale(0.85);
z-index: 1;
}
.mint-review-card.pos-center {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateX(0) scale(1.18);
z-index: 3;
box-shadow: 0 25px 50px rgba(140, 190, 81, 0.22);
border-top: 5px solid #8cbe51;
}
.mint-review-card.pos-right {
opacity: 0.5;
visibility: visible;
pointer-events: auto;
transform: translateX(290px) scale(0.85);
z-index: 1;
}
.mint-review-card.pos-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateX(0) scale(0.7);
z-index: 0;
}
/* --- ESTILO DE LAS FLECHAS DE NAVEGACIÓN --- */
.mint-review-arrow {
position: absolute !important;
top: 50% !important;
transform: translateY(-50%) !important;
background: #ffffff !important;
border: 1px solid #eef2eb !important;
color: #8cbe51 !important;
width: 50px !important;
height: 50px !important;
border-radius: 50% !important;
font-size: 28px !important;
font-weight: 400 !important;
cursor: pointer !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
z-index: 10 !important;
transition: all 0.3s ease !important;
box-shadow: 0 6px 20px rgba(0,0,0,0.06) !important;
user-select: none !important;
}
.mint-review-arrow:hover {
background: #8cbe51 !important;
color: #ffffff !important;
border-color: transparent !important;
box-shadow: 0 10px 25px rgba(140, 190, 81, 0.4) !important;
transform: translateY(-50%) scale(1.1) !important;
}
.mint-arrow-left { left: -10px !important; }
.mint-arrow-right { right: -10px !important; }
/* CONTENIDO INTERNO */
.mint-card-title {
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 10px 0;
font-family: 'Montserrat', sans-serif;
}
.mint-card-quote {
font-size: 24px;
color: #8cbe51;
font-weight: 800;
line-height: 1;
margin-bottom: 5px;
display: block;
}
/* 🎯 SOLUCIÓN: Caja de texto ampliada y optimizada para evitar cortes feos */
.mint-card-text {
font-size: 14px;
color: #4d4d4d;
line-height: 1.5;
margin-bottom: 15px; /* Reducido de 25px para levantar el perfil */
height: 110px; /* Incrementado para dar más margen vertical */
overflow: hidden;
font-weight: 500;
}
/* PERFIL USUARIO */
.mint-card-profile {
display: flex;
align-items: center;
gap: 15px;
border-top: 1px solid #f0f0f0;
padding-top: 15px;
}
.mint-profile-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}
.mint-profile-name {
font-size: 15px;
font-weight: 700;
color: #1a1a1a;
margin: 0;
}
.mint-profile-role {
font-size: 12px;
color: #777;
margin: 3px 0 0 0;
}
/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
.mint-cards-container { height: auto; flex-direction: column; gap: 25px; }
.mint-review-card.pos-left,
.mint-review-card.pos-center,
.mint-review-card.pos-right,
.mint-review-card.pos-hidden {
position: relative !important;
transform: none !important;
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
width: 100% !important;
max-width: 340px;
}
.mint-card-text { height: auto; }
.mint-review-arrow { display: none !important; }
}
Our client's stories
We are very happy because we have happy customers.
‹
›
Eye West Vision
“
I could not speak more highly of MINT services. This has been incredibly convenient and easy to use, and we have had mostly good success with the interpreters. The interpreter was very professional, courteous, and good. Thank you for providing access to our students, staff, and families!.
The Emily Program
“
The in-person interpreter today was phenomenal and professional. Our client looked really at-ease with him, doing an amazing job all-around!
Bluestone Services
“
Gabriel was absolutely amazing with a challenging client! He was very flexible, respectful, and ensured we understood the cultural and language context.
US Oncology
“
Thank you so much! You all are AWESOME. I absolutely love scheduling professional interpreters through your company, it's a great experience.
NorthField Schools
“
We had a wonderful experience with Melina at our school's conference. She was prompt, knowledgeable, and very helpful. We would love to have her back!
(function() {
const container = document.getElementById('mint-reviews-track');
const cards = Array.from(container.getElementsByClassName('mint-review-card'));
const btnPrev = document.getElementById('mint-review-prev');
const btnNext = document.getElementById('mint-review-next');
const totalCards = cards.length;
let activeIndex = 1;
function updateCarousel() {
cards.forEach((card, i) => {
card.classList.remove('pos-left', 'pos-center', 'pos-right', 'pos-hidden');
if (i === activeIndex) {
card.classList.add('pos-center');
} else if (i === (activeIndex - 1 + totalCards) % totalCards) {
card.classList.add('pos-left');
} else if (i === (activeIndex + 1) % totalCards) {
card.classList.add('pos-right');
} else {
card.classList.add('pos-hidden');
}
});
}
btnPrev.addEventListener('click', () => {
activeIndex = (activeIndex - 1 + totalCards) % totalCards;
updateCarousel();
});
btnNext.addEventListener('click', () => {
activeIndex = (activeIndex + 1) % totalCards;
updateCarousel();
});
cards.forEach((card, i) => {
card.addEventListener('click', () => {
if (i !== activeIndex) {
activeIndex = i;
updateCarousel();
}
});
});
updateCarousel();
})();
/* IMPORTAR MONTSERRAT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap');
/* --- CONTENEDOR PRINCIPAL --- */
.mint-ready-block {
display: flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: center !important;
max-width: 1250px !important;
margin: 1px auto !important;
padding: 0 !important; /* Eliminamos padding para quitar bordes blancos */
gap: 20px !important;
font-family: 'Montserrat', sans-serif !important;
background: transparent !important; /* Fondo transparente */
}
/* COLUMNA DE LA IMAGEN (SIN MARCOS) */
.mint-ready-visual-box {
flex: 1.2 !important;
max-width: 600px !important;
background: transparent !important; /* !!! QUITA EL FONDO BLANCO !!! */
border: none !important; /* Quita bordes */
padding: 0 !important; /* Quita espacios internos */
box-shadow: none !important; /* Quita sombras del contenedor */
}
.mint-ready-visual-box img {
width: 100% !important;
height: auto !important;
display: block !important;
border-radius: 40px !important; /* Mantiene el redondeado de tu diseño */
box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; /* Sombra solo a la imagen */
border: none !important;
margin: 0 !important;
}
/* COLUMNA DE TEXTO */
.mint-ready-content-box {
flex: 0.8 !important;
text-align: right !important;
background: transparent !important;
}
.mint-ready-h2 {
font-size: 62px !important;
font-weight: 800 !important;
color: #1a1a1a !important;
line-height: 1.05 !important;
margin: 0 0 25px 0 !important;
letter-spacing: -2px !important;
font-family: 'Montserrat', sans-serif !important;
}
.mint-ready-gradient-text {
background: linear-gradient(to right, #6caa2a, #89bb44, #81bf80) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
display: inline-block !important;
}
.mint-ready-p {
font-size: 23px !important;
color: #4d4d4d !important;
line-height: 1.4 !important;
font-weight: 500 !important;
margin: 0 !important;
font-family: 'Montserrat', sans-serif !important;
}
/* MÓVIL */
@media (max-width: 900px) {
.mint-ready-block { flex-direction: column !important; text-align: center !important; gap: 40px !important; }
.mint-ready-content-box { text-align: center !important; }
.mint-ready-h2 { font-size: 42px !important; }
}
Ready to break language barriers?
Join thousands of organizations that trust MINTNow! for instant, professional language access 24/7 in 200+ languages.