.head__product {
    font-size: 1.3rem;
    height: auto;
    background: url(../img/productos-quimicos.jpg) no-repeat center center;
    padding: .5rem 2rem;
    background-size: cover;
}

.head__aux {
    color: var(--white);
    font-size: 1.3rem;
    height: auto;
    background: url(../img/auxiliares-textiles.jpg) no-repeat center center;
    padding: .5rem 2rem;
    background-size: cover;
}

.head__res {
    color: var(--white);
    font-size: 1.3rem;
    height: auto;
    background: url(../img/resinas-para-pinturas.jpg) no-repeat center center;
    padding: .5rem 2rem;
    background-size: cover;
}

.head__adhes {
    color: var(--white);
    font-size: 1.3rem;
    height: auto;
    background: url(../img/adhesivos-para-papel-y-carton.jpg) no-repeat center center;
    padding: .5rem 2rem;
    background-size: cover;
}

.head__details {
    color: var(--fonts);
    font-size: 1.3rem;
    height: auto;
    background: url(../img/fondo-producto-detalle.jpg) no-repeat center center;
    padding: .5rem 2rem;
    background-size: contain;
}

.head__details h1 {
    font-weight: bold;
    padding: 2.5rem 0;
    letter-spacing: .4rem;
}

.details__h2 {
    font-size: 1.2rem;
    margin: 2.5rem 0;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    text-indent: 22px;
}

.bcrumb {
    margin-left: 1.2rem;
}

.modal__head {
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 51, 162, 0.7);
    animation: modal 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
}

.modal__content {
    font-size: .9rem;
    letter-spacing: .03rem;
    background-color: var(--white);
    margin: auto;
    width: 90%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    text-align: center;
    padding: 1em 2.2em;
}

.modal__content h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.modal__paragraph {
    font-size: 1rem;
    font-weight: 700;
    margin-top: .6rem;
    margin-bottom: 2rem;
}

@keyframes modal {
    100% {
        visibility: visible;
        opacity: 1;
    }
}

#cerrar {
    display: none;
}

#cerrar+label {
    font-size: 15px;
    font-weight: 900;
    color: var(--white);
    background: var(--fonts);
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    text-align: center;
}

.modal__close {
    display: none;
}

.form-label {
    margin-top: 0;
    margin-bottom: 0;
    font-size: .9rem;
}

.form-control {
    padding: 0.4rem 0.6rem;
    margin-top: 0;
    margin-bottom: .6rem;
    font-size: .9rem;
}

.accordion-header button {
    font-size: 1.3rem;
}

.accordion-button,
.accordion-header,
.accordion-button:not(.collapsed) {
    color: var(--fonts);
    height: 90px;
}

.accordion-button {
    justify-content: center;
}

.accordion-body {
    height: auto;
    background: url(../img/fondo-products-quimicos.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
}

.cat__aux {
    height: auto;
    background: url(../img/fondo-productos.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
}

.cat__res {
    height: auto;
    background: url(../img/fondo-resinas.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
}

.cat__adhes {
    height: auto;
    background: url(../img/fondo-adhesivos.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
}

.bt__gn {
    color: var(--white);
    background-color: var(--green);
}

.bt__yw {
    color: var(--white);
    background-color: var(--yellow);
}

.bt__bwn {
    color: var(--white);
    background-color: var(--brown);
}

.products_auxtex,
.products_res,
.products_adhs {
    color: var(--fonts);
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    margin: 3rem 1.3rem;
    cursor: pointer;
}

.products_auxtex p,
.products_res p,
.products_adhs p {
    height: 220px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
    background: transparent;
    border: solid 1px var(--white);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    box-shadow: inset 0px 0px 10px rgb(255 255 255 / 97%), inset 0px 0px 10px rgb(255 255 255 / 97%), inset 3px 3px 7px rgb(255 255 255), inset -3px -3px 7px rgb(0 0 0);
}

.products_auxtex p:hover,
.products_auxtex p:focus {
    color: var(--white);
    background: var(--green);
    transform: scale(1.1);
}

.products_res p:hover,
.products_res p:focus {
    color: var(--white);
    background: var(--yellow);
    transform: scale(1.1);
}

.products_adhs p:hover,
.products_adhs p:focus {
    color: var(--white);
    background: var(--brown);
    transform: scale(1.1);
}

.mod_spf {
    height: auto;
    background: url(../img/products-quimicos.jpg) no-repeat center center;
    background-size: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
}

.mod_spf h2 {
    font-weight: 900;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: .3rem;
}

.mod__paragraph {
    font-size: 1.3rem;
    letter-spacing: .3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.mod__aux,
.mod__res,
.mod__adh {
    color: var(--white);
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    margin: 3rem 1.3rem;
    cursor: pointer;
}

.mod__aux p {
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
    background: var(--green);
    border: solid 1px var(--green);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    box-shadow: inset 0px 0px 10px rgb(255 255 255 / 97%), inset 0px 0px 10px rgb(255 255 255 / 97%), inset 3px 3px 7px rgb(255 255 255), inset -3px -3px 7px rgb(0 0 0);
}

.mod__aux p:hover,
.mod__aux p:focus {
    color: var(--blue);
    background: url(../img/auxiliares-textiles.jpg) no-repeat center center;
    border: none;
    transform: scale(1.1);
}

.mod__res p {
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
    background: var(--yellow);
    border: solid 1px var(--yellow);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    box-shadow: inset 0px 0px 10px rgb(255 255 255 / 97%), inset 0px 0px 10px rgb(255 255 255 / 97%), inset 3px 3px 7px rgb(255 255 255), inset -3px -3px 7px rgb(0 0 0);
}

.mod__res p:hover,
.mod__res p:focus {
    color: var(--white);
    background: url(../img/resinas-para-pinturas.jpg) no-repeat center center;
    border: none;
    transform: scale(1.1);
}

.mod__adh p {
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
    background: var(--brown);
    border: solid 1px var(--brown);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    box-shadow: inset 0px 0px 10px rgb(255 255 255 / 97%), inset 0px 0px 10px rgb(255 255 255 / 97%), inset 3px 3px 7px rgb(255 255 255), inset -3px -3px 7px rgb(0 0 0);
}

.mod__adh p:hover,
.mod__adh p:focus {
    color: var(--blue);
    background: url(../img/adhesivos-para-papel-y-carton.jpg) no-repeat center center;
    border: none;
    transform: scale(1.1);
}

.mod_services {
    color: var(--white);
    font-size: 1.3rem;
    height: auto;
    background: url(../img/atencion-personalizada.jpg) no-repeat center center;
    padding: 1.5rem 2rem 4rem;
    background-size: cover;
    letter-spacing: .2rem;
    text-shadow: 0 0 black;
}

.mod_provee {
    color: var(--white);
    font-size: 1.3rem;
    height: auto;
    background: url(../img/proveedor_materias-prima.jpg) no-repeat center center;
    padding: 1.5rem 2rem 4rem;
    background-size: cover;
    letter-spacing: .2rem;
    text-shadow: 0 0 black;
}

.btn {
    color: var(--white);
    font-weight: 900;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
    background: transparent;
    border: solid 1px var(--white);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    box-shadow: inset 0px 0px 10px rgb(255 255 255 / 97%), inset 0px 0px 10px rgb(255 255 255 / 97%), inset 3px 3px 7px rgb(255 255 255), inset -3px -3px 7px rgb(0 0 0);
}

.btn:focus,
.btn:hover {
    color: var(--white);
    background: var(--fonts);
    border: none;
    transform: scale(1.2);
}

.list-container {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}

.btn-item {
    font-size: 1.2rem;
    background: var(--white);
    color: var(--fonts);
    display: block;
    text-align: center;
    padding: 1rem 3rem 1rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    align-items: center;
    margin: 0.3rem 0;
    border-radius: 0.5rem;
    border-bottom: 1px solid rgba(8, 51, 162, 0.5);
    box-shadow: inset 0px 0px 5px rgb(8 51 162 / 50%), inset 0px 0px 5px rgb(255 255 255 / 50%), inset 6px 14px 8px rgb(255 255 255), inset -6px -14px 8px rgb(0 0 0);
    cursor: pointer;
}

.item-content {
    background: url(../img/fondo-detalles.png) no-repeat center center;
    background-color: rgba(8, 51, 162, 0.6);
    color: var(--white);
    font-size: 1.1rem;
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    background-size: auto;
    letter-spacing: .05rem;
    text-shadow: -1px -2px 5px black;
    border-radius: 0.8rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, var(--fonts), transparent) 1;
    transition: 0.3s ease-out;
}

.active+.item-content {
    max-height: max-content;
    padding: 35px;
    opacity: 1;
    text-align: justify;
}

.btn-item.active {
    color: var(--white);
    background-color: var(--fonts);
    border: 1px solid var(--fonts);
}

.btn-item::after {
    content: "\002B";
    float: right;
}

.btn-item.active::after {
    content: "\2212";
}

.item-content h4 {
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: underline;
}

.item-content ul {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.item-content ul li {
    font-size: 1rem;
    position: relative;
}

.item-content ul li::before {
    content: ">";
    font-weight: 200;
    font-size: 1.5rem;
    position: absolute;
    top: 100%;
    left: -16px;
    transform: translateY(-50%);
    width: 10px;
    height: 250%;
}

.item-content p {
    margin-bottom: 1rem;
}

.paragraph__note {
    color: var(--green);
    font-weight: 900;
}

.btn__pdf {
    display: contents;
    background: transparent;
    color: var(--fonts);
    font-size: 1.3rem;
}