/**BANNER*/
#hero-slider {
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.hero-slider-inner {
    height: 100%;
    position: relative;
}

.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 1200ms ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 6%;
    box-sizing: border-box;
}

.hs-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, rgba(37, 37, 37, 0.72), rgba(100, 100, 100, 0));
    z-index: 1;
    pointer-events: none;
}

.hs-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06));
    pointer-events: none;
    mix-blend-mode: normal;
}

.hs-content {
    position: relative;
    max-width: 700px;
    color: #0b0b0b;
    text-shadow: none;
    z-index: 3;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(.2, .9, .2, 1), opacity 700ms ease;
}

.hs-active .hs-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 160ms;
}

.hs-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #ffffffff;
    letter-spacing: -0.5px;
}

.hs-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #eeeeeeff;
}

.hs-content .btn {
    border-width: 2px;
}

.hs-graphics {
    position: absolute;
    right: 4%;
    top: 12%;
    width: 220px;
    height: 220px;
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
}

.hs-graphics svg {
    width: 100%;
    height: 100%;
    stroke: #111;
    fill: none;
    stroke-width: 1.2;
}

.hs-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transform: translateX(-105%) translateY(-5%) rotate(-8deg);
    transition: transform 800ms cubic-bezier(.25, .8, .25, 1), opacity 800ms ease;
    opacity: 0;
    mix-blend-mode: normal;
}

.btn-view-service {
    background: #188d38;
    border: solid 1px #188d38;
    color: #fff;
    text-decoration: none;
    padding: 15px 59px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 10px rgb(7 97 31);
}

.btn-view-service:hover {
    background: #188d38;
    border: solid 1px #ffffffff;
    color: #ffffffff;
    box-shadow: 0 5px 10px rgb(199 247 212);
}

.btn-view-cotiza {
    background: #ffffffff;
    border: solid 1px #ffffffff;
    color: #188d38;
    text-decoration: none;
    padding: 15px 59px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 10px rgb(87 107 92);
}

.btn-view-cotiza:hover {
    background: #ffffffff;
    border: solid 1px #188d38;
    color: #188d38;
    box-shadow: 0 5px 10px rgb(199 247 212);
}

.hs-mask.revealing {
    transform: translateX(5%) translateY(-5%) rotate(-8deg);
    opacity: 1;
}

.hs-controls {
    position: absolute;
    left: 6%;
    top: 13%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.88);
    padding: 8px 12px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(20, 20, 20, 0.08);
    align-items: center;
}

.hs-controls .hs-prev,
.hs-controls .hs-next {
    border: none;
    background: transparent;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
    color: #222;
    transition: transform .18s ease;
}

.hs-controls .hs-prev:hover,
.hs-controls .hs-next:hover {
    transform: translateY(-2px);
}

.hs-counter {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hs-counter .hs-current,
.hs-counter .hs-total {
    min-width: 34px;
    text-align: center;
}

.hs-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hs-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.hs-dots button.active {
    background: #111;
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .hs-content h1 {
        font-size: 1.2rem;
    }

    .hs-content h2 {
        font-size: 35px;
    }

    .hs-content p {
        font-size: 1rem;
    }

    .hs-graphics {
        width: 140px;
        height: 140px;
        right: 6%;
        top: 8%;
        opacity: 0.09;
    }

    #hero-slider {
        height: calc(100vh - 64px);
    }
}

@media (max-width: 576px) {
    .hs-content {
        padding-right: 14px;
        padding-left: 14px;
    }

    .hs-content h1 {
        font-size: 1.6rem;
    }

    .hs-controls {
        left: 38px;
        top: 25%;
        padding: 6px 10px;
    }

    .hs-graphics {
        display: none;
    }

    .hs-content p {
        display: none;
    }

    .btn-view-cotiza,
    .btn-view-service {
        padding: 10px 22px;
    }
}

/**CONTENT SEARCH*/
.div-cont-search {
    margin-top: -72px;
    z-index: 3;
    position: relative;
}

.h2-search {
    color: #000;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}

.div-search {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.lbl-search-categ {
    border-bottom: solid 1px #ffffff;
    margin: 10px 12px 0px 12px;
    font-size: 18px;
    font-weight: 500;
    color: #5a5a5a;
    user-select: none;
}

.lbl-search-categ:hover {
    border-bottom: solid 1px #888888;
    color: #888888;
    cursor: pointer;
}

.lbl-search-categ.active {
    border-bottom: solid 1px #5a5a5a;
    margin: 10px 12px 0px 12px;
    font-size: 16px;
    font-weight: 500;
    color: #5a5a5a;
}

.div-input-search {
    display: flex;
    justify-content: space-around;
    margin: 15px 0px;
    position: relative;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    width: 574px;
}

.search-box {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 10px;
}

.search-box i {
    font-size: 16px;
    color: #888;
    margin-right: 8px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.search-button {
    background-color: #000000ff;
    color: #ffffffff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.search-button:hover {
    background-color: #242424ff;
    color: #ffffffff;
}

.dropdown-search {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-top: 1px solid #908888;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 535px;
    z-index: 18;
    padding: 10px;
}

.dropdown-search .scroll-cont {
    overflow-y: auto;
    max-height: 278px;
}

.dropdown-search .scroll-cont::-webkit-scrollbar {
    width: 8px;
}

.dropdown-search .scroll-cont::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
}

.dropdown-search .scroll-cont::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    cursor: pointer;
}

.div-search-comp {
    background: #fff;
    color: #000;
    border-bottom: solid 1px #e0e0e0;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
    margin: 6px 0px;
    font-size: 12px;
}

.div-search-comp:hover {
    background: #f1f1f1;
}

.img-search {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    padding: 5px;
}

.div-btn-option {
    display: flex;
    justify-content: space-around;
}

.btn-option-dark {
    background: #000;
    color: #ffffffff;
    border: solid 1px #000;
    border-radius: 50px;
    padding: 4px 15px;
    margin: 12px 0px 0px 0px;
    user-select: none;
}

.btn-option-dark:hover {
    background: #000;
    color: #ffffffff;
    border: solid 1px #ffffffff;
}

.btn-option-grey {
    background: #c7c7c7ff;
    color: #000;
    border: solid 1px #c7c7c7ff;
    border-radius: 50px;
    padding: 4px 15px;
    margin: 12px 0px 0px 0px;
    user-select: none;
}

.btn-option-grey:hover {
    background: #c7c7c7ff;
    color: #000;
    border: solid 1px #ffffffff;
}

@media (max-width: 771px) {
    .dropdown-search {
        width: 90%;
    }
}

/**MODAL*/
.scroll-cont-modal {
    overflow-y: auto;
    max-height: 360px;
}

.scroll-cont-modal::-webkit-scrollbar {
    width: 8px;
}

.scroll-cont-modal::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
}

.scroll-cont-modal::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    cursor: pointer;
}

.btn-close-modal {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #188d38;
    margin-left: 91%;
    margin-top: -21px;
    color: #fff !important;
    display: flex;
    font-weight: bold;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mdl-cont-bsc {
    width: 90%;
    margin-left: 5%;
    border-radius: 25px;
}

.btn-dark-form {
    width: 80%;
    background-color: #000000;
    text-align: center;
    color: #fff;
    border: solid 1px #000000;
    border-radius: 30px;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}

.btn-dark-form:hover {
    background-color: #424242;
    color: #ffffff;
    border: solid 1px #000000;
}

.div-file {
    border: solid 1px #e9e9e9;
    padding: 8px;
    border-radius: 10px;
    background: #f9f9f9;
}

.div-form {
    color: #000;
}

.div-form .form-control {
    border-radius: 10px;
    color: #0035ff;
}

.btn-dark-form-disabled {
    width: 100%;
    background-color: #8d8d8d;
    text-align: center;
    color: #fff;
    border: solid 1px #8d8d8d;
    border-radius: 30px;
    padding: 10px;
    cursor: no-drop;
    user-select: none;
}

.btn-dark-form-disabled:hover {
    background-color: #aaaaaa;
    color: #ffffff;
    border: solid 1px #aaaaaa;
}

.message-green {
    border-bottom: solid 3px #009c56;
    background: #00bd6712;
    color: #009c56;
}

.message-red {
    border-bottom: solid 3px #ff0000;
    background: #ff000017;
    color: #c70000;
}

.lbl-adjunto {
    font-size: 12px;
    text-align: justify;
    line-height: normal;
}

/**TOOTLTIP*/
.tooltip-wrapper {
    position: relative;
}

.tooltip-label {
    position: absolute;
    top: -6px;
    right: 10px;
    cursor: pointer;
    z-index: 2;
}

.tooltip-label i {
    font-size: 16px;
    color: #555;
}

.tooltip-text {
    visibility: hidden;
    width: 280px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    top: 78%;
    right: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    z-index: 3;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.tooltip-label:hover .tooltip-text,
.tooltip-label:focus-within .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-wrapper-select {
    position: relative;
}

.tooltip-label-select {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    margin: -10px 0px 0px 104px;
}

.tooltip-label-select i {
    font-size: 16px;
    color: #555;
}

.tooltip-select {
    visibility: hidden;
    width: 165px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    z-index: 9999;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.tooltip-label-select:hover~.tooltip-select,
.tooltip-label-select:focus-within~.tooltip-select {
    visibility: visible;
    opacity: 1;
}

/**COTIZACION PAG*/
.div-service-white {
    background: #ffffff;
    border-radius: 10px;
    margin: 20px 0px;
    color: #fff;
    padding: 24px 10px;
    box-shadow: -2px 0px 5px 0px rgb(216 223 230);
}

.div-service-rojo {
    background: #178d38;
    border-radius: 10px;
    color: #fff;
    padding: 24px 10px;
}

.h2-title-service {
    text-align: center;
    font-size: 25px;
}

.box-service-rojo {
    display: flex;
    align-items: center;
    background: #178d38;
    border-radius: 10px;
    padding: 11px;
    margin: 10px 0px;
}

.box-service-rojo:hover {
    background: #0e6b29;
}

.box-service-rojo img {
    width: 120px;
    border-radius: 10px;
}

.box-text-service-rojo {
    margin: 9px;
}

.box-text-service-rojo p {
    font-weight: 500;
}

.btn-verdetails {
    background: #00000000;
    border: solid 1px #ffffff;
    color: #fff;
    border-radius: 10px;
    padding: 8px;
}

.btn-verdetails:hover {
    background: #ffff;
    border: solid 1px #178d38;
    color: #178d38;
}

.btn-brochure-white {
    background: #ffffff;
    border: solid 1px #ffffff;
    color: #178d38;
    border-radius: 10px;
    padding: 8px;
    font-weight: 600;
}

.btn-brochure-white:hover {
    background: #f5f5f5;
    border: solid 1px #e9e9e9;
    color: #178d38;
}

.scroll-cont-service {
    overflow-y: auto;
    max-height: 620px;
}

.scroll-cont-service::-webkit-scrollbar {
    width: 8px;
}

.scroll-cont-service::-webkit-scrollbar-track {
    background: #0e6b29;
    border-radius: 10px;
}

.scroll-cont-service::-webkit-scrollbar-thumb {
    background: #0c6324;
    border-radius: 10px;
    border: 1px solid #0c6324;
    cursor: pointer;
}

.scroll-cont-pag {
    overflow-y: auto;
    max-height: 480px;
}

.scroll-cont-pag::-webkit-scrollbar {
    width: 8px;
}

.scroll-cont-pag::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
}

.scroll-cont-pag::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    cursor: pointer;
}

/**Ensayos*/
.lista-articulos {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
    position: absolute;
    width: calc(93% - 24px);
    background-color: white;
    z-index: 1;
}

.lista-articulos li {
    padding: 3px 10px 3px 10px;
    cursor: pointer;
    font-size: 11px;
}

.lista-articulos li:hover {
    background-color: #f0f0f0;
}

.lista-articulos::-webkit-scrollbar {
    width: 7px;
}

.lista-articulos::-webkit-scrollbar-track {
    background: #ffffff;
}

.lista-articulos::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

.lista-articulos::-webkit-scrollbar-thumb:hover {
    background-color: #000;
}

.btn-del-ensayo {
    cursor: pointer;
    margin-top: 7px;
    color: #28a745;
}

.head-table th {
    font-weight: 300;
    font-size: 14px;
}
.error-inpt{
    font-size: 11px;
    line-height: normal;
    color: #dc3545;
}
/*MI SCROLL ENSAYOS*/
.scroll-ordfact {
    max-height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.scroll-ordfact::-webkit-scrollbar {
    width: 5px;
}

.scroll-ordfact::-webkit-scrollbar-track {
    background: #ffffff;
}

.scroll-ordfact::-webkit-scrollbar-thumb {
    background-color: #e9e9e9;
    border-radius: 4px;
}

.scroll-ordfact::-webkit-scrollbar-thumb:hover {
    background-color: #e9e9e9;
}

/**LIBRO RECLAMACIONES*/
.bnt-lbr-recla {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    width: 113px;
    text-align: center;
    line-height: 11px !important;
}

.bnt-lbr-recla:hover {
    background: #ebebeb;
}

.bnt-lbr-recla span {
    line-height: 14px;
    color: #e6332a;
    font-size: 11px;
    font-weight: 500;
    padding-bottom: 5px
}

/**PASOS*/
.lg-div-pasos {
    display: flex;
    justify-content: center
}

.div-pasos-ico {
    display: flex;
    align-items: center;
    padding: 0px 15px
}

.i-pasos-active {
    background: #ce0a00;
    border-radius: 50px;
    color: #fff;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    margin: 0px 10px;
}

.i-pasos {
    background: #C9C9C9;
    border-radius: 50px;
    color: #ffffff;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    margin: 0px 10px;
}

.spn-color-active {
    color: #ce0a00;
}

.spn-color {
    color: #C9C9C9;
}

.info-tipo {
    font-size: 10px;
    line-height: normal;
    border-bottom: solid 1px #000;
}

.info-desc {
    font-size: 10px;
    line-height: normal;
    border: solid 1px #c1c1c1;
    padding: 8px 28px;
    border-radius: 10px;
}

.text-negrita {
    font-weight: 600;
    color: #000;
}

.div-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px 0px;
}

#modal-error-message .modal-dialog {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#modal-error-message .modal-content {
    margin: auto;
}

.btn-close-modal-error {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgb(255 255 255);
    margin-left: 90%;
    margin-top: -25px;
    color: #000000 !important;
    display: flex;
    font-weight: bold;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mdl-error-red {
    border-bottom: 0px;
    background: #ff0000;
    border-radius: 21px;
}

.mdl-error-green {
    border-bottom: 0px;
    background: #00a306;
    border-radius: 21px;
}

.text-error-white {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 17px 0px;
    margin-bottom: 0px;
}

/**LIBRO RECLAMACIONES*/
.bnt-lbr-recla {
    display: flex !important;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    width: 173px;
    text-align: left;
    align-items: center;
    flex-direction: row;
}

.bnt-lbr-recla:hover {
    background: #ebebeb;
}

.bnt-lbr-recla span {
    line-height: 14px;
    color: #178d38;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 7px;
}

/**PASOS*/
.lg-div-pasos {
    display: flex;
    justify-content: center
}

.div-pasos-ico {
    display: flex;
    align-items: center;
    padding: 0px 15px
}

.i-pasos-active {
    background: #178d38;
    border-radius: 50px;
    color: #fff;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    margin: 0px 10px;
}

.i-pasos {
    background: #C9C9C9;
    border-radius: 50px;
    color: #ffffff;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    margin: 0px 10px;
}

.spn-color-active {
    color: #178d38;
}

.spn-color {
    color: #C9C9C9;
}

.info-tipo {
    font-size: 10px;
    line-height: normal;
    border-bottom: solid 1px #000;
}

.info-desc {
    font-size: 10px;
    line-height: normal;
    border: solid 1px #c1c1c1;
    padding: 8px 28px;
    border-radius: 10px;
}

.text-negrita {
    font-weight: 600;
    color: #000;
}

.div-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px 0px;
}

#modal-error-message .modal-dialog {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#modal-error-message .modal-content {
    margin: auto;
}

.btn-close-modal-error {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgb(255 255 255);
    margin-left: 90%;
    margin-top: -25px;
    color: #000000 !important;
    display: flex;
    font-weight: bold;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mdl-error-red {
    border-bottom: 0px;
    background: #ff0000;
    border-radius: 21px;
}

.mdl-error-green {
    border-bottom: 0px;
    background: #00a306;
    border-radius: 21px;
}

.text-error-white {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 17px 0px;
    margin-bottom: 0px;
}

.btn-grey-form {
    width: 80%;
    background-color: #7d7d7d;
    text-align: center;
    color: #fff;
    border: solid 1px #7d7d7d;
    border-radius: 30px;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}

.btn-grey-form:hover {
    background-color: #9c9c9c;
    color: #ffffff;
    border: solid 1px #7d7d7d;
}

.div-btn-form {
    width: 50%;
    text-align: center;
}

/**CONTACTANOS*/
.div-form-contactanos{
    box-shadow: -2px 0px 5px 0px rgb(216 223 230);
    background: #ffffff;
    border-radius: 10px;
    margin: 16px 0px;
    padding: 24px 24px;
}