:root {
    /* === Primary (Blue) Palette === */
    --color-primary-50: #ffffff;
    --color-primary-100: #e6e6ff;
    --color-primary-200: #ccccff;
    --color-primary-300: #9999ff;
    --color-primary-400: #6666ff;
    --color-primary-500: #0000ff; /* Core blue */
    --color-primary-600: #0000cc;
    --color-primary-700: #000099;
    --color-primary-800: #000066;
    --color-primary-900: #000000; /* Deep black */

    /* === Accent (Red Highlight) === */
    --color-accent-50: #fff5f5;
    --color-accent-100: #ffe5e5;
    --color-accent-200: #ffb3b3;
    --color-accent-300: #ff8080;
    --color-accent-400: #ff4d4d;
    --color-accent-500: #ff0000; /* Core red */
    --color-accent-600: #cc0000;
    --color-accent-700: #990000;
    --color-accent-800: #660000;
    --color-accent-900: #330000;

    /* === Neutral Colors === */
    --color-gray-light: #f8fafc;
    --color-gray-hover: #e2e8f0;
    --color-black: #000000;
    --color-white: #ffffff;

    /* === Base Colors (for convenience) === */
    --color-primary: var(--color-primary-500);
    --color-accent: var(--color-accent-500);
    --color-base: var(--color-primary-500);
}

/* Prevent overlapping with Wordpress admin bar when logged in */
.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height, 32px);
}

/*** Links for all sections ***/
section a {
    color: var(--color-primary-500);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}
section a:hover {
    color: var(--color-primary-600);
}

/* Fonts */
h1,
h2,
h3 {
    text-align: center;
}

/*** HEADER NAVIGATION ***/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
/* Main row */
.header-inner {
    /* max-width: 1600px; */
    max-width: 100vw;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
/* LEFT SIDE */
.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1 1 auto;
    min-width: 0;
}
/* Logo */
.header-logo img {
    height: 60px;
    width: auto;
    display: block;
}
/* Navigation */
.header-nav {
    flex: 1 1 auto;
    min-width: 0;
}
.header-nav ul {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.header-nav ul li {
    flex: 0 0 auto;
    padding: 0 !important;
    margin: 0 0.85rem 0 0 !important;
}
.header-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-primary-900);
    transition: color 0.2s ease;
}
.header-nav a:hover {
    color: var(--color-primary-900);
}
/* RIGHT SIDE */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}
/* Contact icons */
.top-nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.top-nav-contact a {
    color: var(--color-primary-900);
    font-size: 0.85rem;
    transition: 0.2s ease;
}
.top-nav-contact a:hover {
    color: var(--color-primary-500);
    transform: scale(1.1);
}
.top-nav-contact i {
    color: var(--color-primary-500);
}
.language-selector select {
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 10rem;
    background: var(--color-primary-500);
    color: var(--color-primary-50);
}

/*** MOBILE MENU ***/
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: auto;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
    z-index: 9999;

    padding: 2rem 1.5rem;
    overflow-y: auto;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}
.mobile-menu.open {
    right: 0;
    max-height: 100% !important;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* Backdrop */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}
.mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
}
/*** RESPONSIVE ***/
@media (max-width: 1825px) {
    .top-nav-contact-phone,
    .top-nav-contact-email {
        display: none;
    }
}
@media (max-width: 1585px) {
    .header-nav {
        display: none;
    }
    .top-nav-contact-phone,
    .top-nav-contact-email {
        display: contents;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (max-width: 655px) {
    .top-nav-contact {
        display: none;
    }
}

/*** Home ***/
/* ===== BASE GRID ===== */
.home-grid {
    display: grid;
    /* 3 columns: bg | content | bg */
    /* grid-template-columns: 1fr minmax(300px, 700px) 1fr; */
    grid-template-columns: 1fr 400px 1fr;
    /* 2 rows:
     row 1 = content
     row 2 = background-only space */
    grid-template-rows: auto 1fr;
    grid-template-areas:
        ". content ."
        ". . .";
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.home-header-content h1 {
    font-size: 2.75rem;
}

/* Optional overlay for readability */
.home-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
}

/* Content sits in top middle cell */
.home-header-content {
    grid-area: content;
    position: relative;
    z-index: 2;
    text-align: center;
    align-self: top; /* vertically center within top row */
    height: clamp(300px, 50svh, 600px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* THIS aligns content to bottom */
}

/* Large Vertical Screens */
@media (orientation: portrait) and (min-height: 1020px) {
    .home-grid {
        min-height: 50svh;
    }
    .home-header-content {
        height: 30svh;
        justify-content: flex-end;
        padding: 1rem;
        scale: 0.7;
    }
}

/* Landscape fix */
@media (orientation: landscape) and (max-height: 500px) {
    .home-header-content {
        height: auto;
        justify-content: flex-end;
        padding: 1rem;
        scale: 0.7;
    }
    .home-header-content h1 {
        font-size: 1.75rem;
    }
    .home-header-content h3 {
        font-size: 1rem;
    }
    .home-grid {
        grid-template-columns: 1fr 400px 1fr;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 420px) {
    .home-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "content";
        align-items: start;
    }
    .home-header-content {
        padding: 1rem;
    }
    .home-header-content h1 {
        font-size: 2rem;
    }
}



/* Base styles: Small mobile (portrait) - ~320px to ~480px */
/* This is your default: single column, touch-friendly, stacked elements */

/* Small to medium mobile (includes many landscape phones) */
@media (min-width: 481px) {
    /* Adjustments for wider phones or small tablets */
}

/* Tablet portrait / small landscape */
@media (min-width: 768px) {
    /* Multi-column possible, larger fonts, etc. */
}

/* Tablet landscape / small laptop */
@media (min-width: 1024px) {
    /* More horizontal space */
}

/* Desktop / large laptop */
@media (min-width: 1280px) {
    /* Full layouts, wider containers */
}

/* Large desktop / ultra-wide */
@media (min-width: 1440px) {
    /* Optional: constrain max-width or add extras */
}

@media (orientation: portrait) and (max-width: 480px) {
    /* Extra tweaks for tall narrow phones */
}

@media (orientation: landscape) and (max-width: 900px) {
    /* Wide but short viewports, e.g., phones in landscape */
}

/* Languages */
.languages-wysiwyg {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .languages-wysiwyg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .languages-wysiwyg {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .languages-wysiwyg {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.languages-wysiwyg h3 {
    text-align: center;
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: var(--color-primary-700);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-primary-200);
    padding-bottom: 0.25rem;
}

.languages-wysiwyg ul {
    text-align: center;
    color: #374151; /* text-gray-700 */
}

.languages-wysiwyg ul li {
    margin-bottom: 0.5rem;
}

#services,
#contact {
    background-position: top;
}

/* --- Typewriter Container --- */
.typewriter-text-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem; /* use responsive spacing instead of fixed pixel values */
    height: 50px;
    z-index: 1;
}
/* --- Typewriter Text --- */
.typewriter-text {
    color: #0000ff;
    font-family: monospace;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #ff0000;
    display: inline-block;
    animation: blink 0.75s step-end infinite;
    transition:
        font-size 0.3s ease,
        margin 0.3s ease;
    /* Responsive font scaling */
    font-size: clamp(1rem, 4vw, 2.5rem);
    margin: 0; /* remove negative offset */
    /* Ensure the text never exceeds the viewport width */
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.language-selector:hover .language-dropdown {
    display: block;
}

.hero-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url("https://images.unsplash.com/photo-1523961130375-69d1d8e8b941?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80");
    background-size: cover;
    background-position: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.transition-all {
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.expertise-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--color-gray-light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.expertise-item:hover {
    background-color: var(--color-gray-hover);
    transform: translateX(4px);
}

.expertise-icon {
    margin-right: 10px;
    color: var(--color-primary);
}

/* WYSIWYG - mimics Tailwind utilities used in the template */
.restyle-wysiwyg {
    color: #4b5563; /* text-gray-600 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 0; /* wrapper has spacing from container */
    padding-right: 0;
    line-height: 1.6;
}

/* h3 headings inside WYSIWYG (maps to text-xl font-semibold mb-3 text-primary-700) */
.restyle-wysiwyg h3 {
    font-size: 1.125rem; /* ~text-xl */
    line-height: 1.25;
    font-weight: 600; /* semibold */
    margin-top: 2rem; /* mb-3 equivalent spacing */
    margin-bottom: 0.75rem;
    color: var(
        --color-primary-700
    ); /* use your theme var, or hardcode e.g. #1D4ED8 */
}

/* paragraph style (maps to max-w-3xl mx-auto text-gray-600) */
.restyle-wysiwyg p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* keep <u> and <strong> visually consistent */
.restyle-wysiwyg u {
    text-decoration: underline;
}
.restyle-wysiwyg strong,
.restyle-wysiwyg b {
    font-weight: 700;
}

/* grid blocks pasted inside WYSIWYG: allow full-width grids to work */
.restyle-wysiwyg .grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .restyle-wysiwyg .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Happy Clients/Translators Bubbles */
.restyle-wysiwyg .bubble-content h3 {
    margin: 1rem;
}
.restyle-wysiwyg .bubble-content p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.2rem;
}
.restyle-wysiwyg .bubble-content ul li {
    font-weight: bold;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}
.bubble-content {
    cursor: pointer;
}

/* Privacy Statement Modal - Headings */
.restyle-wysiwyg .modal-box h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin-bottom: 1rem;
}
.restyle-wysiwyg .modal-box h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.restyle-wysiwyg .modal-box h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: #1f2937; /* gray-800 */
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.restyle-wysiwyg .modal-box h4 {
    font-size: 1rem; /* text-base */
    font-weight: 600;
    color: #1f2937;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.restyle-wysiwyg .modal-box h5 {
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    color: #374151; /* gray-700 */
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}
.restyle-wysiwyg .modal-box h6 {
    font-size: 0.75rem; /* text-xs */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563; /* gray-600 */
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

/* ================================
   CONTACT SECTION
================================ */

.contact-section {
    padding: 80px 20px;
    background: #f9fafb;
}

/* .contact-section a {
    color: var(--color-primary-500);
} */

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-text {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-privacy {
    margin-top: 25px;
    font-size: 0.75rem;
    text-align: center;
    color: #9ca3af;
    line-height: 1.5;
}

/* ================================
   FORM LAYOUT
================================ */

.cf7-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cf7-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cf7-floating,
.cf7-field {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ================================
   INPUT FIELDS
================================ */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="file"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.wpcf7 textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus state (accessible & brand aligned) */

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: rgb(0, 0, 204);
    box-shadow: 0 0 0 3px rgba(0, 0, 204, 0.15);
}

/* Keyboard accessibility */
.wpcf7 input:focus-visible,
.wpcf7 textarea:focus-visible {
    outline: 2px solid rgb(0, 0, 204);
    outline-offset: 2px;
}

/* ================================
   SUBMIT BUTTON
================================ */

.cf7-submit {
    position: relative;
}

.cf7-submit input[type="submit"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: var(--color-primary-600);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.1s ease;
}

/* Hover */
.cf7-submit input[type="submit"]:hover {
    background: rgb(0, 0, 153);
}

/* Active click */
.cf7-submit input[type="submit"]:active {
    transform: scale(0.98);
}

/* Disable while submitting */
.wpcf7-form.submitting .cf7-submit input[type="submit"] {
    pointer-events: none;
    color: transparent;
}

/*** Browse button ***/
.cf7-file input[type="file"]::file-selector-button {
    background: rgb(0, 0, 204);
    color: #ffffff;
    border: 1px solid var(--color-primary-600);
    padding: 4px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cf7-file input[type="file"]::file-selector-button:hover {
    background: #fff;
    color: var(--color-primary-600);
}

/* File upload  */
/* Container layout */
.cf7-file {
    display: flex;
    align-items: left;
    gap: 10px;
    flex-wrap: wrap; /* allows wrapping on small screens */
}
/* Label wrapper */
.file-upload {
    position: relative;
    display: inline-flex;
}
/* Hidden input */
.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
/* Custom button */
.file-label {
    background: rgb(0, 0, 204);
    color: #fff;
    border: 1px solid var(--color-primary-600);
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.file-label:hover {
    background: #fff;
    color: var(--color-primary-600);
}
/* File name */
.file-name {
    font-size: 0.9rem;
    color: #333;
}
/* Help text */
.file-help {
    font-size: 0.8rem;
    color: #9ca3af;
    align-content: center;
    margin-left: 10px;
}

/* Warning messages */
.cf7-file .wpcf7-form-control-wrap {
    align-content: center;
    margin-left: 10px;
}

/* Remove file */
.file-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.file-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #999;
    padding: 0;
}
.file-remove:hover {
    color: #e00;
}

/* ================================
   SPINNER (INSIDE BUTTON)
================================ */

.cf7-submit .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: 0;
    transform: translate(-50%, -50%);
    visibility: hidden;
    background: none;
}

.wpcf7-form.submitting .cf7-submit .wpcf7-spinner {
    visibility: visible;
}

.cf7-submit .wpcf7-spinner::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    display: block;
    animation: cf7spin 0.7s linear infinite;
}

@keyframes cf7spin {
    to {
        transform: rotate(360deg);
    }
}

/*** Contact Form 7 ***/

/* VALIDATION STATES */
.wpcf7-not-valid {
    border-color: #dc2626 !important;
}
.wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 4px;
}

/* SUCCESS & ERROR MESSAGES */
.wpcf7-response-output {
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.wpcf7-mail-sent-ok {
    background: #ecfdf5;
    border: 1px solid #10b981;
}
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background: #fef2f2;
    border: 1px solid #ef4444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-box {
        padding: 30px 20px;
    }
    .cf7-row {
        flex-direction: column;
    }
}

/*** Privacy Statement Modal ***/

/* Utility */
.hidden {
    display: none;
}

/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal box */
.modal-box {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

/* Happy Clients and Happy Translators Bubbles */
@keyframes floatSoft {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(calc(-1 * var(--float-amp, 8px)));
    }
    100% {
        transform: translateY(0);
    }
}
.testimonial-bubble {
    position: absolute;
    opacity: 1;
}
.bubble-mover {
    animation: floatSoft var(--float-dur, 6s) cubic-bezier(0.22, 0.9, 0.33, 1)
        var(--float-delay, 0s) infinite;
}
.bubble-content {
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.testimonial-bubble:hover .bubble-content {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
/* H3 ALWAYS visible */
.bubble-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.4rem;
}
/* Everything except h3 collapses */
.bubble-content > *:not(h3) {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.4s ease;
}
.testimonial-bubble:hover .bubble-content > *:not(h3) {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}
/* Breakpoint */
@media (max-width: 1200px) {
    .testimonial-bubble {
        position: static !important;
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto 1.2rem;
    }
    .bubble-mover {
        animation: none;
    }
    #smile-clients,
    #smile-translators {
        height: auto !important;
        padding: 1rem;
    }
}
/* Breakpoint */
@media (max-width: 1600px) {
    .bubble-content {
        padding: 10px !important;
    }
    .bubble-content h3 {
        font-size: 1rem !important;
    }
}

/*** Footer ***/
.footer-links a {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem; /* default for text-sm */
    text-decoration: underline; /* underline */
    transition-property:
        color, background-color, border-color, text-decoration-color, fill,
        stroke;
    transition-duration: 200ms; /* duration-200 */
    transition-timing-function: cubic-bezier(
        0.4,
        0,
        0.2,
        1
    ); /* Tailwind default */
}

.footer-links a:hover {
    color: #ffffff; /* text-white */
}
