/* Google Fonts loaded via <link> in header.php — @import removed to avoid double request */

:root {
    --container-width: 1200px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
* {
    transition: all 0.3s ease-in-out;
    font-family: 'Roboto', sans-serif;
}
html {
    overflow-x: hidden;
}
body{
    margin: 0!important;
    overflow-x: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    border-bottom: 0.5px solid #dce3ea;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    transition: all 0.3s ease-in-out;
    width: 100%;

    .responsive-header {
        display: none;

        @media (max-width: 900px) {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
        }

        .start {
            width: 40%;

            @media (max-width: 900px) {
                width: 25%;
            }

            @media (max-width: 580px) {
                width: 32% !important;
            }

            img {
                width: 100%;
            }
        }
    }

    .responsive-contact {
        display: none;
        position: fixed;
        bottom: 50%;
        right: 0%;
        padding: 8px 5px;
        flex-direction: column;
        z-index: 99999999;
        box-shadow: 0px 25px 30px #0000000D;
        background-color: #FFFFFF;
        border-radius: 10px 0 0 10px;

        @media (max-width: 900px) {
            display: flex;
        }

        .end {
            width: 20%;
            display: flex;
            justify-content: flex-end;

            @media (max-width: 900px) {
                width: 100%;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .select-lang {
                background-image: url(https://bringitpstemp.a2hosted.com/bringit/wp-content/uploads/2024/12/globe-solid.svg);
                background-size: 25px 25px;
                background-repeat: no-repeat;
                width: 25px;
                position: relative;
                overflow: hidden;
                display: none;

                @media (max-width: 900px) {
                    height: 25px;
                }

                .widget.widget_polylang {
                    position: absolute;
                    opacity: 0;
                    z-index: -1;
                    transition: all 0.3s ease-in-out;
                    background-color: #FFFFFF;
                    box-shadow: 0px 20px 30px #0000000d;
                    padding: 10px;
                    bottom: -60px;
                    left: -50%;
                    overflow: hidden;

                    ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;

                        li {
                            width: 20px;
                            overflow: hidden;
                            letter-spacing: 0.5px;
                            text-transform: uppercase;

                            a {
                                color: #6b756e;
                                font-size: 16px;
                            }
                        }
                    }
                }

                &:hover {
                    overflow: visible;

                    .widget.widget_polylang {
                        opacity: 1;
                        z-index: 999999;
                        overflow: visible;

                        &:hover {
                            display: block;
                        }
                    }
                }
            }

            .expert {

                a {
                    width: 38px;
                    height: 38px;
                    display: block;
                    position: relative;
                    overflow: hidden;
                    transition: all 0.3s ease-in-out;
                    font-size: 0px;
                    border-radius: 20px;
                }
            }
        }
    }

    .container {
        background-color: transparent;
        display: flex;
        max-width: var(--container-width);
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
        gap: 23px;

        @media (max-width: 900px) {
            position: absolute;
            left: 0;
            top: 63px;
            background-color: #FFFFFF;
            transform: translateX(100%);
            width: 100%;
            height: 100vh;
            z-index: 999999999;
            flex-direction: column;
            padding: 2rem 0 4rem 0;
            justify-content: start;
            overflow-y: scroll;
            gap: 2rem;
        }

        .start {
            width: 18%;

            @media (max-width: 900px) {
                display: none;
            }

            img {
                width: 100%;
            }
        }

        .main-navigation {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;

            @media (max-width: 900px) {
                .menu-header-container {
                    text-align: center;
                    width: 80%;
                }

                .menu-primary-espanol-container {
                    text-align: center;
                    width: 80%;
                }
            }

            .menu {
                justify-content: center;
                gap: 35px;

                >li {
                    padding: 30px 0;

                    @media (max-width: 900px) {
                        border-bottom: 0.5px solid rgba(107, 117, 110, 0.431372549);
                        text-align: left;
                    }

                    >a {
                        color: #0E1713;
                        font-size: 15px;
                        font-weight: 500;

                        @media (max-width: 900px) {
                            font-size: 20px;
                            display: block;
                            position: relative;
                        }

                        &::after {
                            content: "";
                            background-image: url(https://bringitpstemp.a2hosted.com/bringit/wp-content/uploads/2025/01/Icon-ionic-ios-arrow-up.svg);
                            width: 8px;
                            height: 5px;
                            position: absolute;
                            right: -12px;
                            top: 48%;
                            background-size: contain;
                            background-repeat: no-repeat;

                            @media (max-width: 900px) {
                                top: 50%;
                                background-size: 100% 100%;
                                width: 15px;
                                height: 15px;
                                right: 0px;
                            }
                        }
                    }

                    &:hover>a::after {
                        background-image: url(https://bringitpstemp.a2hosted.com/bringit/wp-content/uploads/2024/12/Icon-ionic-ios-arrow-up.svg);
                    }

                    &.active-sub .sub-menu {
                        display: block !important;
                    }

                    .sub-menu {
                        background-color: #FFFFFF;
                        float: none !important;
                        top: 100%;
                        opacity: 0;
                        min-width: 260px;
                        transition: all 0.1s ease-in-out;
                        pointer-events: none;
                        padding-bottom: 5px;
                        display: block;
                        transform: translateX(-20%);

                        @media (max-width: 900px) {
                            display: flex !important;
                            flex-direction: column;
                            min-width: 280px !important;
                            width: auto;
                            position: relative !important;
                            display: none !important;
                            opacity: 1 !important;
                            box-shadow: none;
                            border: none;
                            left: 0;
                            pointer-events: all !important;
                            transform: none;
                            z-index: 9 !important;

                            li {
                                padding-left: 0 !important;
                            }
                        }

                        li {
                            transition: all 0.3s ease-in-out;
                            position: static;
                            padding: 10px 20px 10px 25px;

                            &.oculto {
                                display: none !important;
                            }

                            &:has(.sub-menu) a {
                                font-weight: 400;
                                color: #0E1713;
                            }

                            &.redes>a {
                                display: none;
                            }

                            &.redes div {
                                display: flex;
                                gap: 15px;
                                align-items: center;
                                width: 80px;

                                a:first-child {
                                    display: none;
                                }

                                a::before {
                                    display: none;
                                }

                                img {
                                    width: 12px;
                                    height: 12px;
                                }
                            }

                            a {
                                color: #6b756e;
                                font-weight: 300;
                                font-size: 14px;
                                transition: 0.2s all ease;
                                position: relative;

                                &::before {
                                    content: "";
                                    width: 8px;
                                    height: 8px;
                                    background-size: 100% 100%;
                                    background-image: url(https://bringitpstemp.a2hosted.com/bringit/wp-content/uploads/2024/12/Icon-ionic-ios-arrow-up-1.svg);
                                    position: absolute;
                                    left: -12px;
                                    top: 7px;
                                    opacity: 0;
                                    transition: all 0.3s ease-in-out;

                                    @media (max-width: 900px) {
                                        width: 20px;
                                        height: 12px;
                                        left: 0;
                                    }
                                }
                            }

                            .sub-menu {
                                display: flex !important;
                                flex-direction: column;
                                top: 0;
                                left: 98%;
                                height: 100%;
                                box-shadow: none;
                                opacity: 0 !important;
                                pointer-events: none !important;
                                width: 0;
                                height: 100%;
                                transition: all 0.3s ease-in-out;
                                min-width: auto !important;
                                padding: 0;
                                transform: none !important;

                                @media (max-width: 900px) {
                                    left: 0;
                                    top: 15%;
                                    height: 0;
                                    width: 100%;
                                }

                                li {
                                    position: relative;

                                    @media (max-width: 900px) {
                                        a::before {
                                            right: 0 !important;
                                            left: auto;
                                        }
                                    }

                                    &:last-child {
                                        margin-bottom: 0;
                                    }

                                    a {
                                        font-weight: 400 !important;
                                    }
                                }

                                a {
                                    transition: 0.2s all ease-in-out;
                                    transition-delay: 0.1s;
                                    opacity: 0;
                                }
                            }

                            &:hover,
                            &.current-menu-item {
                                background-color: #f2f2f2;

                                @media (max-width: 900px) {
                                    background-color: transparent;
                                }

                                a::before {
                                    opacity: 1;

                                    @media (max-width: 900px) {
                                        transform: rotate(90deg);
                                        right: 0 !important;
                                        left: auto;
                                    }
                                }

                                a .menu-description {
                                    color: #242424;
                                }

                                > .sub-menu {
                                    width: 120%;
                                    opacity: 1 !important;
                                    border-left: 0.5px solid #7DBF41;
                                    pointer-events: all !important;
                                    padding-right: 20px;
                                    padding-bottom: 5px;
                                    padding-top: 20px;
                                    min-height: max-content;

                                    @media (max-width: 900px) {
                                        width: 100%;
                                        display: none !important;
                                        padding-left: 1rem !important;
                                        border-top: 2px solid #7DBF41;
                                        border-bottom: 2px solid #7DBF41;
                                        border-left: none;
                                        top: 100%;
                                        position: relative;
                                        border: none;
                                        left: 0;
                                        height: 100% !important;
                                    }

                                    a {
                                        opacity: 1;

                                        &::before {
                                            opacity: 0;
                                        }

                                        &:hover::before {
                                            opacity: 1;
                                        }

                                        &:hover .menu-description {
                                            color: #242424;
                                        }

                                        .menu-description {
                                            color: #a8a8a8;
                                        }
                                    }
                                }
                            }

                            &.active-sub .sub-menu {
                                @media (max-width: 900px) {
                                    display: block !important;
                                }
                            }

                            &:not(:hover) .sub-menu a {
                                transition: 0.5s opacity ease-in-out;
                            }

                            &:last-child {
                                margin-bottom: 0;
                            }
                        }

                        .menu-link {
                            font-size: 15px;
                            color: #0E1713;
                            font-weight: 400;
                            margin-bottom: 3px;
                        }

                        .menu-description {
                            color: #a8a8a8;
                            font-size: 12px;
                            line-height: 18px;
                            display: block;
                        }
                    }

                    &:hover::after {
                        transform: rotate(180deg);
                    }

                    &:hover .sub-menu {
                        top: 100%;
                        opacity: 1;
                        z-index: 99999;
                        pointer-events: all;
                    }

                    &.menu-section {
                        .sub-menu {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            grid-auto-flow: dense;
                            min-width: 720px;
                            row-gap: 5px;
                            padding-right: 20px;
                            z-index: -1;
                            opacity: 0;
                            pointer-events: none;

                            li {
                                a {
                                    width: auto;
                                }

                                &.left.top,
                                &.right.top {
                                    border-bottom: 0.5px solid rgba(107, 117, 110, 0.3490196078);
                                    pointer-events: none !important;
                                    padding-top: 20px;

                                    @media (max-width: 900px) {
                                        pointer-events: all !important;
                                    }

                                    &:hover {
                                        background-color: transparent;
                                    }

                                    a {
                                        color: #6b756e;
                                        font-size: 18px;
                                        pointer-events: none;
                                        font-weight: 400;
                                    }

                                    &::before {
                                        display: none;
                                    }
                                }

                                &.left.top {
                                    grid-column: 1;
                                    grid-row: 1;
                                }

                                &.right.top {
                                    grid-column: 2;
                                    grid-row: 1;
                                }

                                &.left {
                                    grid-column: 1;
                                }

                                &.right {
                                    grid-column: 2;
                                }
                            }
                        }

                        &:hover .sub-menu {
                            display: grid;
                            z-index: 99999;
                            opacity: 1;
                            pointer-events: all;
                        }

                        &.responsive {
                            @media (max-width: 900px) {

                                li.left,
                                li.right {
                                    display: none !important;
                                }

                                li.left#active-sub-resp,
                                li.right#active-sub-resp {
                                    display: block !important;
                                }

                                li.left.top a::before,
                                li.right.top a::before {
                                    right: 0 !important;
                                    opacity: 1 !important;
                                    left: auto;
                                    transform: rotate(90deg);
                                }
                            }

                            &.active-sub {
                                @media (max-width: 900px) {

                                    .sub-menu li.left.top,
                                    .sub-menu li.right.top {
                                        display: block !important;
                                    }

                                    .sub-menu li.left,
                                    .sub-menu li.right {
                                        display: none !important;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .end {
            width: 20%;
            display: flex;
            justify-content: flex-end;
            flex-shrink: 0;

            @media (max-width: 900px) {
                width: 100%;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .select-lang {
                display: none;
                background-image: url(https://bringitpstemp.a2hosted.com/bringit/wp-content/uploads/2024/12/globe-solid.svg);
                background-size: 25px 25px;
                background-repeat: no-repeat;
                width: 25px;
                position: relative;
                overflow: hidden;

                @media (max-width: 900px) {
                    height: 25px;
                }

                .widget.widget_polylang {
                    position: absolute;
                    opacity: 0;
                    z-index: -1;
                    transition: all 0.3s ease-in-out;
                    background-color: #FFFFFF;
                    box-shadow: 0px 20px 30px #0000000d;
                    padding: 10px 25px;
                    bottom: -60px;
                    left: 0;
                    overflow: hidden;

                    ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;

                        li {
                            width: 20px;
                            overflow: hidden;
                            letter-spacing: 0.5px;
                            text-transform: uppercase;

                            a {
                                color: #6b756e;
                                font-size: 16px;
                            }
                        }
                    }
                }

                &:hover {
                    overflow: visible;

                    .widget.widget_polylang {
                        opacity: 1;
                        z-index: 999999;
                        overflow: visible;

                        &:hover {
                            display: block;
                        }
                    }
                }
            }

            .expert {
                section {
                    margin: 0;

                    p {
                        margin: 0;

                        a {
                            color: #0E1713;
                            background: linear-gradient(0deg, rgb(125, 191, 65) 30%, rgb(154, 202, 84) 101%);
                            transition: all 0.3s ease-in-out;
                            font-size: 14px;
                            border-radius: 20px;
                            padding: 10px 10px;
                            font-weight: 500;
                            text-decoration: none;
                            white-space: nowrap;
                        }
                    }
                }

            }
        }
    }

    &.scrolled {
        background-color: #FFFFFF;

        .main-navigation .nav-menu>li a {
            color: #0E1713 !important;
        }
    }

    #menuToggle {
        display: none;
        gap: 5px;
        flex-direction: column;
        z-index: 999999;

        @media (max-width: 900px) {
            display: flex;
        }

        span {
            width: 40px;
            height: 3px;
            background-color: #0E1713;
            border-radius: 2px;
            display: block;
        }

        &.toggled {
            span {
                &:first-child {
                    transform: rotate(45deg) translateY(2px);
                }

                &:nth-child(3) {
                    opacity: 0;
                }

                &:nth-child(2) {
                    transform: rotate(-45deg) translateX(5px) translateY(-5px);
                }
            }
        }
    }

    &.menuToggle {
        .container {
            transform: translateX(0);

            .menu {
                display: block;
            }
        }
    }
}


/* ============================================================
   HOME
   ============================================================ */


.site-main {

    .entry-content {
        width: min(100%, var(--container-width));
        max-width: var(--container-width);
        margin: 0 auto;

        .wpb-content-wrapper>.vc_row {
            margin-left: 0;
            margin-right: 0;
        }

        #hero {
            padding: 120px 0 60px;
			
			.banner-home__texto{
				padding-left: max(0px, calc((100vw - 1230px) / 2));
			}
			
            h1 {
                margin: 0;
                font-size: clamp(2rem, 1.5065rem + 2.0779vw, 4rem);
                line-height: clamp(2.5rem, 1.9756rem + 2.2078vw, 4.625rem);
                font-weight: bold;
                color: #0E1713;
            }

            p {
                margin: 21px 0 0;
                font-size: clamp(1.125rem, 1.0479rem + 0.3247vw, 1.4375rem);
                line-height: clamp(1.5rem, 1.3612rem + 0.5844vw, 2.0625rem);
                color: #0E1713;

                &:nth-of-type(2) {
                    margin: 0;
                }
            }

            a {
                margin-top: 30px;
                font-size: 14px;
                border-radius: 26px;
                display: inline-block;
                padding: 12px 44px;
                color: #0E1713;
                text-decoration: none;
                background: #7DBF41;
                font-weight: bold;
            }
        }

        #key-business {
            margin-top: 148px;

            h2 {
                font-size: clamp(2rem, 1.7532rem + 1.039vw, 3rem);
                line-height: clamp(2.625rem, 2.3782rem + 1.039vw, 3.625rem);
                font-weight: 500;
                color: #0E1713;
                margin-bottom: 0px;
            }

            .vc_col-sm-5 p a {
                cursor: pointer;
                position: relative;
                padding-right: 24px;
                text-decoration: none;
                transition: text-decoration 0.2s ease;
                color: #0E1713;
                font-size: clamp(1rem, 0.8944rem + 0.4444vw, 1.25rem);
                line-height: clamp(1.5rem, 1.3417rem + 0.6667vw, 1.875rem);
                font-weight: 400;

                &.kb-active {
                    text-decoration: underline;
					font-weight: 500;
					
                    &::after {
                        content: "keyboard_arrow_right";
                        display: inline-block;
                        vertical-align: middle;
                        margin-left: 12px;
                        font-family: 'Material Symbols Outlined';
                        font-size: 28px;
                        color: #7DBF41;
                        text-decoration: none;
                        font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
                    }
                }
            }


            .vc_col-sm-7 {
                .vc_custom_1776284949006 {
                    border-radius: 24px;
                    padding: 37px 32px;

                    .wpb_wrapper>.vc_row.vc_inner {
                        display: none;

                        &.kb-panel--active {
                            display: block;


                            h3 {
                                font-size: clamp(1.5rem, 1.2361rem + 1.1111vw, 2.125rem);
                                line-height: clamp(2.1875rem, 2.0487rem + 0.5844vw, 2.75rem);
                                color: #F2F2F2;
                                font-weight: 500;
                                width: 80%;
                                margin: 0;
                            }

                            .wpb_text_column {
                                margin: 0;

                                p {
                                    color: #F2F2F2;
                                    font-size: clamp(1rem, 0.9692rem + 0.1299vw, 1.125rem);
                                    line-height: clamp(1.5rem, 1.4692rem + 0.1299vw, 1.625rem);
                                    margin: 0;

                                    &:nth-of-type(2) {
                                        font-size: clamp(0.875rem, 0.8442rem + 0.1299vw, 1rem);
                                        margin: 17px 0 0;
                                    }
                                }

                                ul {
                                    margin: 20px 0 0 20px;
                                    padding: 0;
                                    color: #F2F2F2;
                                    font-size: clamp(0.75rem, 0.7037rem + 0.1948vw, 0.9375rem);
                                    line-height: clamp(1.25rem, 1.2037rem + 0.1948vw, 1.4375rem);

                                    li::marker {
                                        color: #7DBF41;
                                    }
                                }
                            }
                        }

                    }
                }
            }
        }

        #ERP-Solutions {
            margin-top: 148px;
            margin-bottom: 148px;

            h2 {
                font-size: clamp(2rem, 1.7532rem + 1.039vw, 3rem);
                font-weight: 500;
                line-height: clamp(2.5rem, 2.2224rem + 1.1688vw, 3.625rem);
                color: #0E1713;
            }

            p {
                margin: 0;
                font-size: clamp(0.875rem, 0.8442rem + 0.1299vw, 1rem);
                line-height: clamp(1.375rem, 1.3133rem + 0.2597vw, 1.625rem);
                color: #6B756E;
            }
			


            .owl-carousel {

                .owl-item {
                    background: #F2F2F2;
                    border-radius: 20px;
                    padding: 25px 17px 22px 22px;
                    min-height: 375px;
                    transition: all 0.3s ease;

                    .wpb_single_image {
                        width: 42px;
                        margin-bottom: 35px;
                    }

                    h4 {
                        margin: 0;
                        font-size: 18px;
                        line-height: 28px;
                        font-weight: 500;
                        color: #0E1713;
                    }

                    .wpb_text_column {
                        margin: 0;
                    }

                    ul {
                        margin: 18px 0 0;
                        padding: 0 0 0 22px;

                        li {
                            font-size: 15px;
                            line-height: 26px;
                            color: #0E1713;

                            &::marker {
                                color: #7DBF41;
                            }
                        }
                    }

                    &:hover{
                        background: #7DBF41;

                        .wpb_single_image{
                            opacity: 0;
                            margin-bottom: 0;
                            overflow: hidden;
                        }

                        h4{
                            color: #F2F2F2;
                        }

                        ul{
                            li{
                                color: #F2F2F2;

                                &::marker {
                                    color: #F2F2F2;
                                }
                            }
                        }
                    }
                }

                .owl-nav {

                    button.owl-prev {
                        position: absolute;
                        top: 80px;
                        left: -60px;
                        height: 200px;

                        span {
                            font-size: 40px;
                            color: #6B756E;
                            transition: all 0.3s ease;

                            &:hover {
                                transform: scale(0.9);
                            }
                        }
                    }

                    button.owl-next {
                        position: absolute;
                        top: 80px;
                        right: -60px;
                        height: 200px;

                        span {
                            font-size: 40px;
                            color: #6B756E;
                            transition: all 0.3s ease;

                            &:hover {
                                transform: scale(0.9);
                            }
                        }
                    }

                }

                .owl-dots {
                    display: flex;
                    justify-content: center;
                    gap: 12px;
                    margin-top: 47px;

                    .owl-dot {
                        width: 11px;
                        height: 11px;
                        border-radius: 100%;
                        background: #7DBF41;
                        opacity: 0.5;
                    }

                    .active {
                        opacity: 1;
                    }
                }
            }
        }

        #services {
            padding: 132px 103px;
            border-radius: 35px;

            h2 {
                font-size: clamp(2rem, 1.7532rem + 1.039vw, 3rem);
                line-height: clamp(2.625rem, 2.3782rem + 1.039vw, 3.625rem);
                font-weight: 500;
                color: #F2F2F2;
                margin-bottom: 58px;
            }

            .services-carousel-section {
                .services-carousel {

                    .service-card {

                        .service-card__image {
                            max-height: 361px;
                        }

                        .service-card__body {
                            display: flex;
                            flex-direction: column;
                            gap: 20px;
                            padding: 42px 0 0;

                            .service-card__title {
                                margin: 0;
                                font-size: clamp(1.5rem, 1.3458rem + 0.6494vw, 2.125rem);
                                line-height: clamp(2rem, 1.8149rem + 0.7792vw, 2.75rem);
                                font-weight: 400;
                                color: #F2F2F2;
                                width: 70%;
                            }

                            .service-card__description {
                                margin: 0;
                                font-size: clamp(0.75rem, 0.6883rem + 0.2597vw, 1rem);
                                line-height: clamp(1.25rem, 1.1575rem + 0.3896vw, 1.625rem);
                                color: #F2F2F2;
                            }
                        }

                    }
                }

                .owl-nav {
                    display: flex;

                    button.owl-prev {
                        position: absolute;
                        top: 150px;
                        left: -60px;
                        height: 200px;

                        span {
                            font-size: 40px;
                            color: #6B756E;
                            transition: all 0.3s ease;

                            &:hover {
                                transform: scale(0.9);
                            }
                        }
                    }

                    button.owl-next {
                        position: absolute;
                        top: 150px;
                        right: -60px;
                        height: 200px;

                        span {
                            font-size: 40px;
                            color: #6B756E;
                            transition: all 0.3s ease;

                            &:hover {
                                transform: scale(0.9);
                            }
                        }
                    }

                }
            }
        }

        #blog {
            margin-top: 148px;

            h2 {
                font-size: clamp(2rem, 1.7532rem + 1.039vw, 3rem);
                line-height: clamp(2.625rem, 2.3782rem + 1.039vw, 3.625rem);
                font-weight: 500;
                color: #0E1713;
            }

            .remote-posts-grid {
                margin-top: 61px;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;

                .remote-post-card {
                    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.0509803922);
                    border-radius: 15px;
                    min-height: 445px;

                    .remote-post-card__image img {
                        border-radius: 15px 15px 0 0;
                    }

                    .remote-post-card__body {
                        padding: 15px;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;

                        .remote-post-card__title {
                            margin: 0;
                            display: -webkit-box;
                            -webkit-line-clamp: 3;
                            line-clamp: 3;
                            -webkit-box-orient: vertical;
                            overflow: hidden;

                            a {
                                color: #0E1713;
                                font-size: clamp(1.125rem, 1.0942rem + 0.1299vw, 1.25rem);
                                line-height: clamp(1.125rem, 1.0633rem + 0.2597vw, 1.375rem);
                                text-decoration: none;
                            }
                        }

                        .remote-post-card__excerpt {
                            display: -webkit-box;
                            -webkit-line-clamp: 3;
                            line-clamp: 3;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                            margin: 10px 0;
                            color: #6b756e;
                            font-size: clamp(0.75rem, 0.6883rem + 0.2597vw, 1rem);
                            line-height: clamp(1.125rem, 1.0633rem + 0.2597vw, 1.375rem);
                        }

                        .remote-post-card__categories {
                            display: flex;
                            flex-flow: wrap;
                            gap: 10px;

                            .remote-post-card__category {
                                background-color: #dce3ea;
                                border-radius: 15px;
                                padding: 5px 10px;
                                color: #6b756e;
                                font-size: clamp(0.5rem, 0.4692rem + 0.1299vw, 0.625rem);
                                display: flex;
                                align-items: center;
                                text-align: center;
                                justify-content: center;
                                width: 100px;
                                text-decoration: none;
                            }
                        }
                    }
                }
            }
        }

        .section-5 {
            display: flex;
            flex-wrap: nowrap;
			justify-content: space-between;
            gap: 48px;
            margin-top: 148px;

            &::after,
            &::before {
                display: none;
            }

            .vc_col-sm-6 {

                h2 {
                    font-size: clamp(2rem, 1.7532rem + 1.039vw, 3rem);
                    line-height: clamp(2.625rem, 2.3782rem + 1.039vw, 3.625rem);
                    font-weight: 500;
                    color: #0E1713;
                }

                p {
                    font-size: clamp(0.875rem, 0.8442rem + 0.1299vw, 1rem);
                    line-height: clamp(1.375rem, 1.3133rem + 0.2597vw, 1.625rem);
                    color: #6B756E;
                    margin: 20px 0 30px;

                    &:nth-of-type(2) {
                        margin: 35px 0 0;
                    }
                }

                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 30px;
                    margin: 0;
                    padding: 0;

                    li {
                        list-style: none;
                        display: inline-flex;
                        align-items: center;
                        font-size: clamp(1rem, 0.9692rem + 0.1299vw, 1.125rem);
                        line-height: clamp(1.5rem, 1.4383rem + 0.2597vw, 1.75rem);
                        font-weight: 500;
                        color: #0E1713;

                        &::before {
                            content: "check";
                            margin-right: 12px;
                            font-family: 'Material Symbols Outlined';
                            font-size: 26px;
                            color: #7DBF41;
                            font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
                        }
                    }
                }
            }

            .vc_custom_1776263823761 {

                .wpb_wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: 22px;

                    .wpb_single_image {
                        margin: 0;
                    }
                }
            }

        }

        .location {
            margin-top: 148px;
            margin-bottom: 148px;
            border-radius: 35px;
			padding:94px 82px;
			gap:60px;
			flex-wrap:nowrap;

			
            .vc_col-sm-6 {
				padding:0;
				
				.vc_column-inner{
					padding:0;
				}

                h2 {
                    font-size: clamp(2rem, 1.7532rem + 1.039vw, 3rem);
                    line-height: clamp(2.625rem, 2.3782rem + 1.039vw, 3.625rem);
                    font-weight: 500;
                    color: #0E1713;
                    margin: 0;
                }

                p {
					font-size: clamp(1rem, 0.8944rem + 0.4444vw, 1.25rem);
					font-weight: 500;
					color: #0E1713;
					line-height:clamp(1.625rem, 0.7806rem + 3.5556vw, 3.625rem);
					
					&:nth-of-type(2) {
                        font-size: clamp(0.75rem, 0.6444rem + 0.4444vw, 1rem);
						font-weight: 400;
						color: #6B756E;
						line-height: clamp(1.375rem, 1.2694rem + 0.4444vw, 1.625rem);
                    }
                }
				
				.wpb_gmaps_widget {
					
					.wpb_wrapper{
                		background-color: transparent;
    					padding: 0px;
					}
            	}
            }
        }
    }
}

/* ============================================================
   FOOTER
   ============================================================ */

footer.site-footer {
    background-color: #0E1713;
    border-radius: 40px 40px 0 0;
    padding-top: 100px;
    position: relative;
    margin-top: 70px;

    @media (max-width: 1190px) {
        padding: 50px 2rem 0 2rem;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        z-index: 2;
        position: relative;

        .top-foot {
            display: flex;
            justify-content: space-between;
            gap: 100px;
            padding-bottom: 50px;
            align-items: center;
            border-bottom: 0.5px solid rgba(255, 255, 255, 0.1529411765);

            @media (max-width: 900px) {
                flex-direction: column;
                gap: 50px;
            }

            .start {
                width: 80%;

                @media (max-width: 900px) {
                    width: 100%;
                }

                img {
                    width: 140px;

                    @media (max-width: 900px) {
                        margin-bottom: 20px;
                    }
                }

                .copy p {
                    font-size: 16px;
                    color: #FFFFFF;
                    line-height: 26px;
                }
            }

            .end {
                width: 50%;
                text-align: end;

                @media (max-width: 900px) {
                    width: 100%;
                }
            }
        }

        .bot-foot {
            display: flex;
            border-bottom: 0.5px solid rgba(255, 255, 255, 0.1529411765);
            padding-bottom: 50px;
            padding-top: 68px;
            gap: 60px;

            @media (max-width: 900px) {
                gap: 60px;
            }

            @media (max-width: 580px) {
                flex-direction: column;
                gap: 20px;
            }

            .menu-footer {
                width: 15%;

                @media (max-width: 580px) {
                    width: 100%;
                }

                ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;

                    li {
                        margin-bottom: 15px;
                        position: relative;

                        .oculto {
                            display: none;
                        }

                        a {
                            color: #dce3ea;
                            font-weight: 300;
                            font-size: 13px;
                        }

                        .sub-menu {
                            opacity: 0;
                            pointer-events: none;
                            left: 0;
                            position: absolute;
                            z-index: 99999999;
                            display: flex;
                            visibility: hidden;
                            min-width: 230px;
                            flex-direction: column;
                            top: 100%;
                            padding: 10px 10px 0 10px;

                            &::before {
                                content: "";
                                position: absolute;
                                left: 0;
                                top: 0;
                                width: 100%;
                                height: 0;
                                background-color: #FFFFFF;
                                transition: all 0.1s ease-in-out;
                            }

                            li {
                                margin-bottom: 10px;

                                .oculto {
                                    display: none;
                                }

                                a {
                                    color: #0E1713;
                                    opacity: 0;
                                    transition-delay: 0.1s;
                                }
                            }
                        }

                        &.menu-item-has-children:hover>.sub-menu {
                            opacity: 1;
                            pointer-events: all;
                            visibility: visible;
                        }

                        &.menu-item-has-children:hover>.sub-menu a {
                            opacity: 1;
                        }

                        &.menu-item-has-children:hover>.sub-menu::before {
                            height: 100%;
                        }

                        &.menu-section .sub-menu {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            grid-auto-flow: dense;
                            row-gap: 0px;
                            padding-right: 20px;
                            opacity: 0;
                            min-width: 350px;
                        }

                        &.menu-section .sub-menu li a {
                            width: auto;
                        }

                        &.menu-section .sub-menu li.left {
                            grid-column: 1;
                        }

                        &.menu-section .sub-menu li.right {
                            grid-column: 2;
                        }

                        &.redes div {
                            display: flex;
                            gap: 7px;
                        }

                        &.redes div>a {
                            display: none;
                        }
                    }
                }
            }

            .localizations {
                width: 100%;

                ul {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    -moz-column-gap: 35px;
                    column-gap: 35px;
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    row-gap: 75px;

                    @media (max-width: 900px) {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 1rem;
                    }

                    @media (max-width: 580px) {
                        grid-template-columns: repeat(1, 1fr) !important;
                    }

                    li {
                        color: #DCE3EA;
                        font-size: 13px;
                        line-height: 23px;
                        position: relative;
                        padding-left: 20px;
						
						a {
							color: #DCE3EA;
							text-decoration:none;
						}
                        &::before {
                            content: "";
                            width: 10px;
                            height: 14px;
                            position: absolute;
                            left: 0;
                            top: 7px;
                            background-image: url(https://bringitpstemp.a2hosted.com/bringit/wp-content/uploads/2025/01/Grupo-5855.svg);
                            background-size: contain;
                            background-repeat: no-repeat;
                        }
                    }
                }
            }
        }

        .copy-final {
            padding: 50px 0;
            text-align: center;

            p {
                color: #6B756E;
                font-size: 15px;
                line-height: 18px;

                a {
                    text-decoration: underline;
                    color: #6B756E;
                }
            }
        }
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .site-main {

        .entry-content {

            #hero {
                padding: 20% 0 20px;
            }

            #key-business {
                margin-top: 13px;

                h2 {
                    text-align: center;
                    margin-bottom: 0;
                }

                .vc_col-sm-4 p a {
                    padding: 0;
                }

                .vc_col-sm-8 {
                    .vc_custom_1776284949006 {
                        border-radius: 24px;
                        padding: 22px 15px;

                        .wpb_wrapper>.vc_row.vc_inner {

                            &.kb-panel--active {

                                .wpb_text_column {
                                    margin: 0;

                                    p {
                                        &:nth-of-type(2) {
                                            margin: 8px 0 0;
                                        }
                                    }
                                }
                            }

                        }
                    }
                }
            }

            #ERP-Solutions {
                margin-top: 48px;
                margin-bottom: 74px;

                h2 {
                    text-align: center;
                    margin-bottom: 12px;
                }

                .owl-carousel {

                    .owl-item {
                        min-height: 300px;
                    }

                    .owl-nav {
                        display: none;
                    }

                    .owl-dots {
                        margin-top: 27px;
                    }
                }
            }

            #services {
                padding-top: 0px;
                padding-bottom: 20px;

                h2 {

                    margin-bottom: 28px;
                }

                .services-carousel-section {
                    .services-carousel {

                        .service-card {

                            .service-card__body {
                                gap: 14px;
                                padding: 32px 0 0;
                            }

                        }
                    }

                    .owl-nav.disabled {
                        display: none;
                    }
                }
            }



            #blog {
                margin-top: 13px;

                .remote-posts-grid {
                    margin-top: 61px;
                    grid-template-columns: minmax(0, 1fr);

                    .remote-post-card {
                        min-height: 365px;
                    }
                }
            }

            .section-5 {
                flex-direction: column;
                gap: 48px;
                margin-top: 48px;

                .vc_col-sm-6 {

                    p {
                        line-height: 26px;
                        color: #6B756E;
                        margin: 16px 0 32px;

                        &:nth-of-type(2) {
                            margin: 32px 0 0;
                        }
                    }

                    ul {
                        gap: 18px;
                    }
                }

                .vc_custom_1776263823761 {
                    padding: 35px 24px;
                    border-radius: 35px;
                }

            }

            .location {
                margin-top: 48px;
                margin-bottom: 48px;
				padding:54px 42px;
				flex-wrap: wrap;

            }
        }

    }
}

@media (max-width: 768px) {}