@font-face {
    font-family: AzoSans-Black;
    src: url("../../font/AzoSans-Black.ttf") format(opentype);
}

@font-face {
    font-family: AzoSans-Bold;
    src: url("../../font/AzoSans-Bold.ttf") format(opentype);
}

@font-face {
    font-family: AzoSans-Light;
    src: url("../../font/AzoSans-Light.ttf") format(opentype);
}

@font-face {
    font-family: AzoSans-Medium;
    src: url("../../font/AzoSans-Medium.ttf") format(opentype);
}

@font-face {
    font-family: AzoSans-Regular;
    src: url("../../font/AzoSans-Regular.ttf") format(opentype);
}

@font-face {
    font-family: AzoSans-Thin;
    src: url("../../font/AzoSans-Thin.ttf") format(opentype);
}

body {
    font-weight: 400;
    background-color: #edefef;
    font-family: AzoSans-Regular;
}

.content-header {
    background-color: #1d1d1b;
    padding: 10px;
    height: 75px;
}

.navbar-nav .nav-item {
    margin: 0 1.5vw;
}

.logo-header {
    height: 45px;
    margin: 15px 0;
    transition: transform 0.3s, box-shadow 0.3s; /* Agrega una transición suave a las propiedades transform y box-shadow */
}

.logo-header:hover {
    transform: scale(1.1); /* Aumenta ligeramente el tamaño al pasar el mouse */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Agrega una sombra al pasar el mouse */
}

/* Otros efectos posibles */

.logo-header:active {
    transform: scale(0.9); /* Reduce el tamaño al hacer clic */
    box-shadow: none; /* Elimina la sombra al hacer clic */
}

.logo-header:focus {
    outline: none; /* Elimina el contorno predeterminado al hacer clic */
}


.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.custom-btn-primary {
    border-radius: 40px;
    background-color: #f9b03d;
    color: #fff;
    font-weight: bold;
}

<!-- 
.mb-5 {
    margin-bottom: 18px !important;
}

.me-5 {
    margin-right: 18px !important;
}

/* Estilo del botón de registro */
@keyframes pulseAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); /* Aumentado de 1.05 a 1.1 para un pulso más grande */ }
}

.custom-btn-secondary {
    background-color: #f9b03d;
    color: #ffffff;
    border: 2px solid #ffffff; /* Borde blanco */
    border-radius: 10px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 8px 12px rgba(255, 255, 255, 0.4), 0px 16px 24px rgba(0, 0, 0, 0.3);
    animation: pulseAnimation 1.5s infinite ease-in-out;

    &:hover {
        background-color: #ffffff;
        color: #f9b03d;
        border-color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0px 8px 12px rgba(255, 255, 255, 0.4), 0px 16px 24px rgba(0, 0, 0, 0.3);
    }

    &:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    &:active {
        transform: scale(0.95);
        box-shadow: none;
    }

    /* Estilo cuando el mouse no está encima */
    &:not(:hover) {
        color: #000000 !important; /* Letras negras cuando no hay mouse encima */
        border-color: #ffffff;
    }
}



.custom-btn-secondary2 {
    background-color: #2b2837; /* Cambia el color principal para el botón de login */
    color: #ffffff !important; /* Forzar el color del texto blanco */
    border: 2px solid #ffffff; /* Borde blanco */
    border-radius: 10px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.2); /* Sombras con tono blanco */

    &:hover {
        background-color: #2b2837; /* Mantiene el color principal al pasar el mouse */
        color: #ffffff !important; /* Forzar el color del texto blanco al pasar el mouse */
        border-color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0px 8px 12px rgba(255, 255, 255, 0.4), 0px 16px 24px rgba(255, 255, 255, 0.3); /* Tonos de sombra blanco */
    }

    &:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    &:active {
        transform: scale(0.95);
        box-shadow: none;
    }
}








.content-box-banner,
.content-box-banner-warehouse,
.content-box-banner-materials {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.content-box-banner {
    background-image: url("../../img/banner.jpg");
}

.content-details-banner {
    padding-top: 360px;
    padding-bottom: 100px;
}



.christmas-tree {
    position: relative;
    display: inline-block;
    margin: 20px;
}

.tree-top, .tree-middle, .tree-bottom, .tree-stand {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    margin: 0 auto;
}

.tree-top {
    border-bottom: 80px solid green;
    z-index: 3;
}

.tree-middle {
    border-bottom: 120px solid green;
    margin-top: -40px;
    z-index: 2;
}

.tree-bottom {
    border-bottom: 160px solid green;
    margin-top: -40px;
    z-index: 1;
}

.tree-stand {
    width: 40px;
    height: 60px;
    background-color: brown;
    margin-top: -20px;
    z-index: 4;
}





.content-input {
    padding: 18px 26px;
    border-radius: 40px;
    display: flex;
    flex: 1;
    background-color: #fff;
    align-items: center;
    transition: box-shadow 0.3s, border 0.3s; /* Agregamos una transición para hacerlo suave */
    box-shadow: 0 0 5px #f9b03d;
    border: 3px solid #ffffffbd; /* Borde inicial */

    &:hover {
        box-shadow: 0 0 15px #f9b03d; /* Añadimos una sombra al pasar el ratón */
        border: 2px solid #f9b03d; /* Borde al pasar el ratón */
    }

    &:focus {
        outline: none;
        box-shadow: 0 0 15x #f9b03d; /* Sombra al enfocar */
        border: 2px solid #f9b03d; /* Borde al enfocar */
    }
}

.arrow-input {
    width: 40px;
}

.custom-input {
    padding: 0;
    border: 0;
    font-weight: bold;
    font-size: 30px;
    color: #1d1d1b;
}

.custom-input::placeholder {
    font-weight: normal;
    color: #a39a99;
    font-size: 22px;
}

.custom-input:focus {
    box-shadow: none;
    outline: 0;
}

.title-banner {
    font-size: 60px;
    line-height: 50px;
    font-family: AzoSans-Black;
    color: white;
}


.btn-search {
    padding: 12px 68px;
    margin-left: 40px;
    width: 240px;
    font-size: 20px;
    border-radius: 40px; /* Borde redondeado */
}

.btn-search:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    border: 1px solid #ffffff; /* Borde blanco al enfocar */
    font-weight: bold; /* Letras en negrita al pasar el ratón */
}











/* styles.css */

/* Ajustes para el botón principal */
.custom-navbar-dropdown .btn {
    background-color: #2b2837; /* Color principal del botón */
    color: #ffffff !important; /* Color del texto blanco */
    border: 2px solid #ffffff; /* Borde blanco */
    border-radius: 10px;
    padding: 8px 14px; /* Ajusté el padding para dar un poco más de espacio */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2), 0px 8px 12px rgba(255, 255, 255, 0.2); /* Sombras con tono blanco */
}
}

.custom-navbar-dropdown .btn:hover {
    background-color: #2b2837; /* Mantiene el color principal al pasar el mouse */
    color: #ffffff !important; /* Color del texto blanco al pasar el mouse */
    border-color: #ffffff;
    transform: scale(1.02); /* Se redujo el factor de escala para un cambio más sutil */
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.2); /* Sombra con tono blanco */
}

.custom-navbar-dropdown .btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-navbar-dropdown .btn:active {
    transform: scale(0.98); /* Se redujo el factor de escala para un cambio más sutil */
    box-shadow: none;
}







.content-box-options {
    background-color: #f9b03d;
}

.content-box-banner-warehouse {
    background-image: url("../../img/banner-warehouse.jpg");
}

.content-box-banner-materials {
    background-image: url("../../img/banner-materials.jpg");
}

.title-warehouse,
.title-materials {
    font-size: 50px;
    padding: 100px 0;
    font-family: AzoSans-Bold;
}

.content-box-carousel-products,
.content-box-carousel-materials {
    padding: 70px 0;
}

.content-box-card {
    border-radius: 15px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    transition: box-shadow 0.3s; /* Agregamos una transición para hacerlo suave */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 
}

.content-box-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 12); 
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1); /* Cambiado a rgba con una opacidad más baja */
    pointer-events: none; /* Agregado para permitir interactividad detrás del backdrop */
}


.slick-arrow.arrow-responsive {
    top: inherit;
    bottom: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-prev.slick-arrow.arrow-responsive {
    left: calc(50% - 50px);
}

.slick-next.slick-arrow.arrow-responsive {
    right: calc(50% - 50px);
}

.content-box-card .content-box-card__img {
    border-radius: 15px;
    width: 100%;
}

.content-box-card .content-box-card__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 18px;
}

.content-box-card .content-box-card__value {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 14px;
}

.btn-go-buy {
    border-radius: 20px;
    border: 2px solid #f9b03d;
    color: #f9b03d;
    font-weight: 600;
    background-color: transparent;
    transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);

}

.btn-go-buy:hover {
    transform: scale(1.1);
    background-color: #f9b03d;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}


.content-box-card .content-box-card__btn {
    width: 100%;
    font-size: 14px;
}

.content-box-card .content-box-card__btn:focus {
    box-shadow: none;
    outline: 0;
}

.slick-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    border: 0;
}

.slick-prev {
    left: -60px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev,
.slick-next {
    width: 30px;
    height: 30px;
    top: 50%;
    background-color: #1d1d1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: #1b147c80 !important;
}

.slick-next {
    right: -60px;
}

.slick-prev .slick-prev-icon,
.slick-next .slick-next-icon {
    width: 16px;
    height: 16px;
}

.developed-by {
    background-color: #1d1d1b;
}

.content-terms-conditions {
    color: #1d1d1b;
}

.content-box-footer-info {
    background-color: #1d1d1b;
    padding: 50px 0;
    z-index: 2;
}

.content-box-hyperlink {
    padding-left: 0;
    list-style: none;
}

.hyperlink-footer {
    color: #fff !important;
    font-size: 20px;
    text-decoration: none;
}

.title-footer {
    font-family: AzoSans-Black;
    color:#fff;
}
.contact-info {
        color:#fff;
    }
.AzoSans {
    font-family: AzoSans-Black;
}

.content-box-dropdown .dropdown .dropdown-toggle {
    background-color: #edefef;
    border-radius: 0;
    font-weight: bold;
    color: #1d1d1b;
    padding: 12px 22px;
    box-shadow: none;
}

.dropdown-menu.show {
    width: 100%;
    border-radius: 0;
    border: 1px solid transparent;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0;
    margin: 0;
}

.content-box-item {
    display: flex;
}

.content-box-item .dropdown-item {
    font-size: 20px;
    color: #1d1d1b;
    font-weight: 500;
}

ul.breadcrumb {
    padding: 70px 0;
    margin-bottom: 0;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
    color: #1d1d1b;
    font-weight: bold;
}

ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: "\003E";
}

ul.breadcrumb li a,
ul.breadcrumb li a:hover {
    color: #1d1d1b;
    text-decoration: none;
    font-weight: 400;
}

.content-box-results {
    background-color: #f9fafa;
    border-radius: 20px;  
    overflow: hidden; 
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

.content-box-results .title-search {
    color: #1d1d1b;
    font-size: 18px;
    font-family: 'Arial', sans-serif; /* Considera una fuente más moderna */
}

.content-box-table {
    border-radius: 0 20px 20px 0; 
    color: #000;
    background-color: #fff;
    width: 115%;
    margin-right: 30px;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    animation: slideIn 1s ease-out;
}

.content-box-table:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Sombras más suaves */
    background-color: #f0f0f0; /* Cambio sutil en el color de fondo */
}

@media (max-width: 768px) {
    .content-box-table {
        width: 100%;
        margin-right: 0;
        border-radius: 0;
    }
}

/* Animación de entrada */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.title-product {
    color: #1d1d1b;
    font-weight: bold;
    margin-bottom: 0;
    margin: 40px 0;
    text-align: left;
}

.row.custom-row-table {
    border-left: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.content-grid .field-grid {
    padding: 30px;
    color: #1d1d1b;
    font-size: 18px;
    border-top: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.content-grid .field-grid[class^="field-grid"]:nth-last-child(-n + 8) {
    border-bottom: 1px solid #ededed;
}

.content-grid .text-table-lg {
    font-size: 28px;
    font-weight: bold;
    line-height: 18px;
}

.content-box-first-row {
    background-color: #ededed;
}

.content-box-second-row {
    background-color: #f5f5f5;
}

.btn-buy {
    background-color: #f9b03d;
    color: #fff !important;
    padding: 18px 34px;
    border-radius: 45px;
    font-size: 35px;
    line-height: 35px;
    font-weight: bold;
}

.btn-go-buy.btn-go-buy-table {
    font-size: 18px;
}

.slide-options {
    display: none;
}

.text-logo {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 20px;
    color: white;
}

.logo-footer {
    height: 100px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.content-social {
    text-decoration: none;
    margin-right: 20px;
    display: inline-block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    grid-auto-rows: auto;
    overflow: auto;
}



.content-items-dropdown {
    display: none;
}

.navbar-dark .navbar-nav .nav-link:not(.custom-btn-primary):focus,
.navbar-dark .navbar-nav .nav-link:not(.custom-btn-primary):hover {
    color: #f9b03d;
}

.img-option {
    width: 160px;
}

.text-option {
    font-weight: bold;
    font-size: 38px;
    margin-top: 20px;
}

.content-box-social {
    border-radius: 50%;
    background-color: #f9b03d;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box-social i {
    font-size: 40px;
    color: #fff;
}

.content-box-social i.fa-facebook-f {
    top: 4px;
    position: relative;
    right: -4px;
}

.icon-address {
    font-size: 26px;
    display: block;
    color: #f9b03d;
}

.text-address {
    font-size: 20px;
    margin-bottom: 0;
    font-family: AzoSans-Light;
}

/* SEGUNDA PARTE */
.content-box-scanner {
    background-color: #f9fafa;
    color: #1d1d1d;
}

.content-box-scanner .content-box-scanner__title {
    font-size: 26px;
    color: #000;
    background-color: #edefef;
    font-weight: bold;
    padding: 70px 0;
}

.content-box-scanner .custom-box-row {
    overflow: auto;
    display: flex;
}

.content-box-scanner .custom-box-row .custom-col:first-child {
    min-width: 250px;
}

.content-box-scanner .custom-box-row .custom-col {
    min-width: 240px;
    padding: 0 20px;
}

.content-box-switch {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.content-box-switch span {
    font-size: 20px;
}

.content-box-switch .form-switch .form-check-input {
    background-image: none;
    position: relative;
    height: 2.5em;
    width: 5em;
    border: 3px solid #edefef;
    box-shadow: none;
    background-color: transparent;
    filter: none;
}
.content-box-switch .form-switch .form-check-input:checked:before {
    content: "";
    width: 30px;
    height: calc(100% - 5px);
    background-color: #1d1d1d;
    bottom: 3px;
    position: absolute;
    border-radius: 50%;
    transform: translateX(5px);
    transition: transform 0.15s ease-in-out;
}

.content-box-switch .form-switch .form-check-input:before {
    content: "";
    width: 30px;
    height: calc(100% - 5px);
    background-color: green;
    bottom: 3px;
    position: absolute;
    border-radius: 50%;
    transform: translateX(40px);
    transition: transform 0.15s ease-in-out;
}

.content-box-col {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
}

.content-box-col .content-box-col__title {
    font-weight: bold;
    margin-bottom: 16px;
}

.content-box-text-value {
    display: flex;
    flex-flow: column;
}

.content-box-text-value span {
    display: block;
    margin-bottom: 16px;
    line-height: 21px;
    font-size: 14px;
}

.content-box-col-text {
    padding-top: 70px;
}

.content-box-col-text p {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: bold;
}

.content-box-price-value {
    display: flex;
    flex-flow: column;
    padding: 40px 0;
}

.content-box-price-value span {
    display: block;
    font-size: 12px;
    margin-bottom: 0;
}

.content-box-price-value h1 {
    line-height: 56px;
    margin-bottom: 0;
    font-size: 70px;
    margin-top: 6px;
    font-weight: bold;
}

/* Añade estas reglas al CSS de tu aplicación */
.btn-subscribe {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 15px; /* Ajusta el radio de borde para hacerlo más redondeado */
    box-shadow: 0 0 10px rgba(0, 0, 0.0, 0.7);
}

.btn-subscribe:hover {
    transform: scale(1.1);
    color: #f8af3c;
    box-shadow: 0 0 30px rgba(0, 0, 0.0, 0.8); 
}

/* Reemplaza las reglas existentes con estas */
.btn-subscribe {
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #d1d1d1;
}

.btn-subscribe.btn-subscribe--primary {
    background-color: #f8af3c;
    color: #fff;
}

.btn-subscribe.btn-subscribe--primary:hover {
    background-color: #f8af3c;
    color: #fff;
}


.content-box-services,
.content-box-contact {
    background-color: #f9fafa;
    color: #1d1d1b;
}

.content-box-services-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("../../img/banner-materials.jpg");
}

.content-box-services__title {
    color: #fff;
    padding: 70px 0;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
    font-family: AzoSans-Black;
}

.content-breadcrumb {
    background-color: #edefef;
}

.content-breadcrumb .content-breadacrumb__item {
    display: inline-block;
    text-decoration: none;
    color: #1d1d1b;
}

.content-box-services .title-services {
    font-weight: bold;
    margin-bottom: 20px;
}

.content-box-services .text-services {
    margin-bottom: 0;
}

.content-box-services .text-services.text-services__w-60 {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.content-box-services .content-image img {
    width: 100%;
    height: 250px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.content-box-services .content-box-text-services {
    background-color: #fff;
    padding: 22px 28px;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.content-box-services .title-operations {
    font-weight: bold;
    font-size: 47px;
    line-height: 42px;
    max-width: 84%;
    margin-bottom: 16px;
}

.content-box-services .text-operations {
    font-weight: 600;
    line-height: 20px;
}

.box-form {
    border-radius: 16px;
    border: none;
    background-color: #fff;
    padding: 25px;
}

.content-box-information {
    border-radius: 16px;
    background-color: #fff;
    padding: 26px 44px;
}

.content-box-information h3 {
    margin-bottom: 16px;
    text-align: center;
    font-weight: bold;
}

.content-box-contact .content-detail-information {
    display: flex;
}

.content-box-contact .content-detail-information .content-icon {
    color: #f8af3c;
    font-size: 40px;
    margin-right: 10px;
}

.content-box-contact .content-detail-information p:first-child {
    font-weight: 600;
}

.content-box-contact .content-detail-information p {
    margin-bottom: 0;
    line-height: 20px;
    font-size: 18px;
}

.content-box-contact .content-box-atention {
    border-top: 1px solid #edefef;
    padding: 30px 0;
}

.content-box-contact .content-box-atention h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.content-box-contact .content-box-atention p {
    font-size: 20px;
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
    line-height: 23px;
    font-weight: 500;
}

.content-box-fyq .text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 20px;
}

.content-box-fyq .accordion .accordion-item {
    border: 0;
    border-top: 1px solid;
    border-radius: 0;
    background-color: transparent;
}

.content-box-fyq .accordion .accordion-item:last-child {
    border-bottom: 1px solid;
}

.content-box-fyq .accordion .accordion-item .accordion-button:focus,
.content-box-fyq .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #1d1d1b;
    box-shadow: none;
}

.content-box-fyq .accordion .accordion-item .accordion-button:not(.collapsed),
.content-box-fyq .accordion .accordion-item .accordion-collapse {
    background-color: #edefef;
}

.content-box-fyq .accordion .accordion-item .accordion-button i {
    transition: transform 0.2s ease-in-out;
    margin-left: auto;
}

.content-box-fyq
    .accordion
    .accordion-item
    .accordion-button:not(.collapsed)
    i {
    transform: rotate(-180deg);
}

.content-box-fyq .accordion .accordion-item .accordion-button::after {
    display: none;
}

.content-box-fyq .accordion .accordion-item .accordion-button {
    padding: 25px 20px;
    font-size: 20px;
    font-weight: bold;
    background-color: transparent;
}

.content-box-fyq .btn-query {
    color: #fff;
    background-color: #f8af3c;
    box-shadow: none;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.content-button-back .btn-back {
    background: #f8af3c;
    padding: 4px 18px;
    border-radius: 20px;
    color: #fff;
    font-size: 15px;
}

.content-box-sales-products .content-image-product img {
    width: 100%;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    height: 100%;
}

.content-box-sales-products .content-image-product {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    height: 100%;
}

.content-box-sales-products .content-details-product {
    height: 100%;
    background: #fff;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    padding: 28px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.content-box-sales-products .content-details-product h4 {
    margin-bottom: 16px;
    font-weight: bold;
}

.content-box-sales-products .content-details-product p {
    font-size: 18px;
    line-height: 19px;
}

.content-box-sales-products .content-details-product-actions {
    display: flex;
    align-items: center;
    justify-content: end;
}

.content-box-sales-products .content-details-product-actions i {
    color: #39b54a;
    font-size: 32px;
}

.content-box-sales-products .content-details-product-actions .btn-more-info {
    background: #f8af3c;
    padding: 4px 18px;
    border-radius: 20px;
    color: #fff;
    font-size: 15px;
    margin-left: 12px;
}

.content-box-our {
    color: #1d1d1b;
}

.content-box-our .title {
    font-size: 40px;
    font-family: AzoSans-Black;
}

.content-box-our .text-our {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    line-height: 20px;
}

.content-box-our .content-img-our {
    padding: 40px 0;
}

.content-box-our .content-img-our img {
    width: 100%;
}

.content-box-our .content-item-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.content-box-our .content-item-title .content-image-circle {
    width: 40px;
    height: 40px;
    background: #f8af3c;
    display: block;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-right: 12px;
}

.content-box-our .content-item-title h3 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0;
}

.modal-register .content-box-modal-login {
    padding: 60px;
    text-align: center;
    color: #1d1d1b;
}

.modal-register .modal-content {
    border-radius: 18px;
    color: #1d1d1b;
    font-family: AzoSans-Medium;
}

.modal-register .modal-content .content-box-modal-login h3 {
    margin-bottom: 10px;
    margin-top: 40px;
    font-size: 24px;
    font-family: AzoSans-Black;
}

.modal-register .modal-content .content-box-modal-login p {
    font-family: AzoSans-Medium;
}

.modal-register .modal-content .content-box-modal-login .content-log-social {
    display: block;
    border: 1px solid #e2e2e2;
    padding: 8px;
    text-decoration: none;
    margin-bottom: 16px;
}

.modal-register
    .modal-content
    .content-box-modal-login
    .content-log-social
    span {
    color: #1d1d1b;
}

.modal-register
    .modal-content
    .content-box-modal-login
    .content-box-terms
    span {
    margin-left: 5px;
}

.modal-register .modal-content .content-box-modal-login .content-box-terms a {
    text-decoration: none;
    color: #f8af3c;
}

.modal-register .modal-content .content-box-modal-login .btn-crate-account {
    background: #f8af3c;
    border-radius: 20px;
    color: #fff;
    margin: 30px 0;
}

.modal-register .modal-content .content-box-modal-login .text-information {
    color: #d1d2de;
    font-family: AzoSans-Regular;
    line-height: 20px;
    margin-bottom: 20px;
}

.modal-register .modal-content .content-box-modal-login .text-login {
    color: #f8af3c;
    text-decoration: none;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .content-box-carousel-products,
    .content-box-carousel-materials {
        padding-bottom: 100px;
    }

    .content-options {
        display: none;
    }

    .slide-options {
        display: block;
    }

    .slick-dots {
        bottom: -45px;
    }

    .slick-dots li button:before {
        font-size: 16px;
        color: #fff;
    }

    .slick-dots li.slick-active button:before {
        opacity: 0.75;
        color: #fff;
    }

    .text-options {
        font-size: 40px;
        font-weight: bold;
    }

    .img-option {
        width: 200px;
        margin: 0 auto;
    }

    .subtitle-options {
        font-size: 40px;
    }

    .title-banner {
        font-size: 50px;
        line-height: 50px;
        font-weight: bold;
        padding-bottom: 20px;
        margin-bottom: 0;
    }

    .btn-search {
        width: auto;
        padding: 12px 28px;
        color: #fff !important;
        margin: 0 auto;
        display: block;
        margin-top: 20px;
    }

    .content-input {
        padding: 12px 18px;
    }

    .custom-input {
        font-size: 20px;
    }

    .text-banner {
        font-size: 26px;
    }

    .content-terms-conditions {
        text-align: center;
    }

    .slick-arrow.arrow-responsive {
        bottom: -85px;
    }

    .text-logo {
        margin-bottom: 30px;
        font-size: 26px;
    }

    .img-brand {
        width: 100%;
    }

    .content-header {
        height: auto;
    }

    .navbar-dark .navbar-toggler {
        box-shadow: none;
        border: 0 !important;
        margin-left: auto;
    }

    .navbar-collapse {
        background: #1d1d1b;
        position: absolute;
        top: 74px;
        right: 0px;
        padding-bottom: 16px;
        border-bottom-left-radius: 10px;
        min-width: 230px;
    }

    .navbar {
        position: inherit;
    }

    .navbar-nav .nav-item {
        margin: 0 10px;
    }

    .navbar-nav .nav-item:nth-child(2) {
        margin: 0 10px;
    }

    .navbar-nav .nav-item .nav-link {
        padding: 1rem;
    }

    .content-box-dropdown .dropdown-toggle {
        display: none;
    }

    .content-items-dropdown {
        display: block;
        padding-left: 0;
        list-style: none;
        margin-bottom: 0;
    }

    .content-items-dropdown .content-items-dropdown-element {
        margin: 0 10px;
    }

    .content-items-dropdown
        .content-items-dropdown-element
        .content-items-dropdown-element-link {
        text-decoration: none;
        color: #fff;
        padding: 0.5rem 0;
        display: block;
    }

    .content-grid {
        margin-bottom: 40px;
    }

    /* NUEVO */
    .content-box-scanner .content-box-scanner__title {
        padding: 40px 0;
    }

    .content-box-services .content-image img {
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
    }

    .content-box-services .content-box-text-services {
        border-top-right-radius: 0;
        border-bottom-left-radius: 20px;
    }

    .content-box-information {
        padding: 20px;
    }

    .content-box-sales-products .content-details-product {
        border-top-right-radius: 0;
        border-bottom-left-radius: 14px;
    }

    .content-box-sales-products .content-image-product img {
        border-top-right-radius: 14px;
        border-bottom-left-radius: 0;
    }
}
