/*/////////////// /////////
//
LEFT-THEME CSS : theme.css
//
////////////////////////*/

/*********************
# IMPORT Theme Styles ▼
**********************/

/***************
VARIABLES SCSS
***************/

/* Colors */

/* Body */

/* roboto=100,300,400,700 */

/* Layout */

/* main wrapper : max-width */

/* section padding */

/* grid gap */

/*fonts*/

h1, h2, h3, h4, h5, h6, p{
    color:#333;
}

a{
    color: #000;
}

a:hover{
        color: #333;
    }

/* Grids */

/* Variables Styles */

/* RESET */

*:where(:not(iframe):not(canvas):not(img):not(svg):not(video):not(svg *):not(symbol *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    scroll-margin-top: 5rem;
}

*[type=button] {
    -webkit-appearance: none;
}

*:active,
*:focus,
*:hover {
    outline: none;
}

ol, ul, menu {
    list-style: none;
}

li {
    display: inline-block;
}

a{
    cursor: pointer;
}

img {
    max-width: 100%;
}

table {
    border-collapse: collapse;
}

textarea {
    white-space: revert;
}

iframe {
    border: none;
}

:where([contenteditable]){
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    word-wrap: break-word;
    -webkit-line-break: after-white-space;
}

html{
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    font-size: calc(1rem + 1vw);
}

/*
FONT STYLES
*/

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.17em;
}

h4 {
    font-size: 1em;
}

h5 {
    font-size: 0.83em;
}

h6 {
    font-size: 0.67em;
}

p {
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    font-weight: normal;
}

/* HTML Reset */

/*************
Left Theme 2021 by Left Design Chile.
BASE STYLES
**************/

/* MAIN VARS */

/* Screens */

/* @$sm */

/* @$md */

/* @$xl */

/* Media Queries */

/* icons*/

/*GRIDS*/

.grid {
    display: grid;
    grid-gap: 15px;
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
    flex-wrap: wrap;
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
}

.grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    grid-auto-flow: dense;
}

@media (min-width: 576px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    }

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 992px) {

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 1200px) {

    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }

}

/* Base */

/*
Left Theme 2021 by Left Design Chile.
THEME HELPERS
*/

/*Styles*/

.transparent {
    background: transparent!important;
}

/*Displays, Positions, Aligns*/

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-iblock {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.d-grid {
    display: grid !important;
}

.pos-a {
    position: absolute !important;
}

.pos-rel {
    position: relative !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

/*Size Helpers*/

.w100 {
    width: 100% !important;
}

.h100 {
    height: 100% !important;
}

.s100 {
    width: 100% !important;
    height: 100% !important;
}

/*Text Helpers*/

.tac {
    text-align: center !important;
}

.tal {
    text-align: left !important;
}

.tar {
    text-align: right !important;
}

.lspace1 {
    letter-spacing: 0.0625rem !important;
}

.lspace2 {
    letter-spacing: 0.125rem !important;
}

/*Align Helpers*/

/*Spacing Helpers*/

.m-0 {
    margin: 0 !important;
}

.m-025 {
    margin: 0.25rem !important;
}

.m-05 {
    margin: 0.5rem !important;
}

.m-1 {
    margin: 1rem !important;
}

.m-15 {
    margin: 1.5rem !important;
}

.m-2 {
    margin: 2rem !important;
}

.m-25 {
    margin: 2.5rem !important;
}

.m-3 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-025 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-05 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-15 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
}

.mx-25 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
}

.mx-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-025 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-05 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.my-25 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.my-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-025 {
    margin-top: 0.25rem !important;
}

.mt-05 {
    margin-top: 0.5rem !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-15 {
    margin-top: 1.5rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-25 {
    margin-top: 2.5rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-025 {
    margin-right: 0.25rem !important;
}

.mr-05 {
    margin-right: 0.5rem !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.mr-15 {
    margin-right: 1.5rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

.mr-25 {
    margin-right: 2.5rem !important;
}

.mr-3 {
    margin-right: 3rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-025 {
    margin-bottom: 0.25rem !important;
}

.mb-05 {
    margin-bottom: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-15 {
    margin-bottom: 1.5rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-25 {
    margin-bottom: 2.5rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-025 {
    margin-left: 0.25rem !important;
}

.ml-05 {
    margin-left: 0.5rem !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.ml-15 {
    margin-left: 1.5rem !important;
}

.ml-2 {
    margin-left: 2rem !important;
}

.ml-25 {
    margin-left: 2.5rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-025 {
    padding: 0.25rem !important;
}

.p-05 {
    padding: 0.5rem !important;
}

.p-1 {
    padding: 1rem !important;
}

.p-15 {
    padding: 1.5rem !important;
}

.p-2 {
    padding: 2rem !important;
}

.p-25 {
    padding: 2.5rem !important;
}

.p-3 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-025 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-05 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}

.px-25 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

.px-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-025 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-05 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-25 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.py-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-025 {
    padding-top: 0.25rem !important;
}

.pt-05 {
    padding-top: 0.5rem !important;
}

.pt-1 {
    padding-top: 1rem !important;
}

.pt-15 {
    padding-top: 1.5rem !important;
}

.pt-2 {
    padding-top: 2rem !important;
}

.pt-25 {
    padding-top: 2.5rem !important;
}

.pt-3 {
    padding-top: 3rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-025 {
    padding-right: 0.25rem !important;
}

.pr-05 {
    padding-right: 0.5rem !important;
}

.pr-1 {
    padding-right: 1rem !important;
}

.pr-15 {
    padding-right: 1.5rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}

.pr-25 {
    padding-right: 2.5rem !important;
}

.pr-3 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-025 {
    padding-bottom: 0.25rem !important;
}

.pb-05 {
    padding-bottom: 0.5rem !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.pb-15 {
    padding-bottom: 1.5rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.pb-25 {
    padding-bottom: 2.5rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-025 {
    padding-left: 0.25rem !important;
}

.pl-05 {
    padding-left: 0.5rem !important;
}

.pl-1 {
    padding-left: 1rem !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.pl-25 {
    padding-left: 2.5rem !important;
}

.pl-3 {
    padding-left: 3rem !important;
}

/* Style Helpers */

/*
Left Theme 2021 by Left Design Chile.
MAIN COMPONENTS STYLES
*/

/* VARS */

/*BASE OBJECTS*/

/*Buttons*/

.btn {
    display: inline-block;
    padding: .5rem 1rem;
    border: solid 1px #999;
    background: #999;
    color: #fff;
    font-size: .9rem;
    letter-spacing: 0.0125rem;
}

.btn:hover{
        border: solid 1px #999;
        background: transparent;
        color: #999;
    }

.btn-alt {
    display: inline-block;
    padding: .5rem 1rem;
    border: solid 1px #fff;
    background: #fff;
    color: #999;
    font-size: .8rem;
}

.btn-alt:hover {
        border: solid 1px #fff;
        background: transparent;
        color: #fff;
    }

.btn-cta {
    display: inline-block;
    padding: .5rem 1rem;
    border: solid 1px #fff;
    background: #fff;
    color: #741106;
    font-size: 1.2em;
}

.btn-cta:hover{
        border: solid 1px #fff;
        background: transparent;
        color: #fff;
    }

/*Hero Slider*/

.slider{    
    margin-bottom: 30px;
}

.slider .slide{
        min-height: 500px;
        background-color: #333;
        display: flex;
        flex-wrap: wrap;
        align-content:flex-end;
        justify-content:flex-end;
        align-items: center;
        width: 100%;
    }

.slider .slide .slide-content{    
            display: flex;
            align-content: center;
            justify-content:flex-end;
            flex-wrap: wrap;
            padding: 2em;
            flex-direction: column;
            align-items:flex-end;
            max-width:45%;
            text-align:right;
        }

.slider .slide .slide-content h1{
                color:#fff;
                text-transform: uppercase;
                font-size:.8em;
                font-weight: 300;
                margin: 5px 0px;
                padding: 15px 0px;
                border-bottom: 1px solid #fff;
            }

.slider .slide .slide-content h1 span{
                color: #999999;
                font-weight: 300;
            }

.slider .slide .slide-content h2{
                color:#fff;
                font-size:.5em;
                font-weight: 100;
                letter-spacing: 0.0625rem;
                line-height: 1.5em;
            }

@media (max-width: 640px){

    .slider .slide .slide-content h1{
        font-size:1em;
    }
}

@media (max-width: 640px){

    .slider .slide .slide-content h2{
        font-size:.7em;
    }
}

@media (max-width: 640px){

    .slider .slide .slide-content{
        justify-content:center;
        align-items:center;
        max-width:90%;
        text-align:center;
    }
}

@media (max-width: 640px){

    .slider .slide{
        align-content:center;
        justify-content:center;
    }
}

.slick-prev, .slick-next {
    width: auto;
    height: auto;
}

/* Carrusel */

.carrusel{
    padding: 15px 0px;
    
}

.carrusel .slick-next {
    right: -30px;
}

.carrusel .slick-prev {
    left: -30px;
}

.carrusel .slick-prev:before,
.carrusel .slick-next:before
{
    font-size: 3rem;
    color:  #666;

}

/*
EMBED CONTENT
*/

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container embed,
.embed-container iframe,
.embed-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contacto form{

    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.0625rem;
    padding: 15px 0px;

}

.contacto form div{
        display: grid;
    }

.contacto form label{
        display: inline-block;
        padding: 15px 0px;
        text-transform: uppercase;
        font-weight: 400;

    }

.contacto form input, .contacto form textarea{
        padding: 10px;
        border: solid 1px #666;
        text-align: left;
        width: inherit;
        max-width: 640px;
        margin-bottom: 15px;
    }

.contacto form input[type="submit"] {
        text-align: center;
        text-transform: uppercase;
        margin: 15px auto;
        display: inline-block;
        width: auto;
        padding: 15px 30px;
        cursor: pointer;
        border: solid 1px #666;
        background: #666;
        font-weight: 600;
        letter-spacing: 0.125rem;
        font-size: 0.8rem;
    }

.contacto form input[type="submit"]:hover{
            background: transparent;
            color: #666;
        }

/* Components Styles */

/***************
PAGES LAYOUT STYLES SCSS
***************/

/*----
VARS 
----*/

/* <body> */

body {
    background-image: url('#') cover center no-repeat fixed;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;  
    color: #333;
}

#left-menu ~ * {
    margin-top: 50px;
}

header{
    width: 100%;
}

.page-title{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    box-shadow: inset 0px 10px 5px -8px rgba(0,0,0,0.1);
}

.page-title h1{
        display: inline-block;
        color: #741106;
        font-weight: 300;
        font-size: 1.2em;
        text-transform: uppercase;
    }

.page-title h2{
        display: block;
        color: #999;
        font-weight: 300;
        font-size: .5em;
        text-transform: uppercase;
        letter-spacing: 0.125rem;
    }

/* <main> */

main{
    max-width: 1140px;
    margin: auto;
    padding: 1rem;
}

/* <section> */

section{
    padding: 15px 0px;
    text-align: center;

}

section h2{
        color: #666;
        border-bottom: 4px solid #741106;
        font-size: .9em;
        margin: 15px 0px 30px 0px;
        text-align: center;
        margin: auto;
        display: inline-block;
        font-weight: 300;
        text-transform: uppercase;
        padding: 0.3em;
        letter-spacing: 0.0625rem;
    }

section h3{
        color: #666;
        font-weight: 300;
        letter-spacing: 0.0625rem;
        font-size: 0.7em;
        margin:0px;
        text-transform: uppercase;
        margin-bottom: 15px;
        border-bottom: solid 1px #741106;
        padding: 7px 0px;
        display: inline-block;
    }

section .cta{
        text-align: center;
    }

section .cta .btn{
            padding: 15px 12px;
            margin: 15px;
            text-transform: uppercase;
            color:#fff;
            background-color: #741106;
            border: solid 1px #741106;
        }

section .cta .btn:hover{
            background-color: transparent;
            color:#741106;
        }

section p{
        color: #666;
        font-weight: 300;
        font-size: 0.5em;
        letter-spacing: 0.0625rem;
        text-transform: uppercase;
    }

section + .negocio{
        align-items: flex-start;
    }

section .cotiza a{
            color: #999;
            font-size: 1rem;
            letter-spacing: 0.0625rem;
        }

section .cotiza a:hover{
            color: #666;
        }

section .cotiza a.fono{
            font-size: 1.5em;
            font-weight: 900;
            line-height: 5rem;
            letter-spacing: 0;
        }

footer{
    width: 100%;    
    padding: 15px;
    padding-top: 250px;    
    display: flex;
    background-color: #fff;
    background: url('../src/images/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    min-height: 700px;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
    color: #fff;
    font-weight: 300;
    overflow: hidden;
}

footer address{
        margin-top: auto;        
        color: #fff;
        font-size: .7rem;
        display: inline-block;
    }

footer h3{
        color:#fff;
        display: block;
        font-weight: 300;
        text-transform: uppercase;
        padding: 0.45em;
        letter-spacing: 0.0625rem;
        font-size: 0.7rem;
        border-bottom: 1px solid #fff;
        margin-bottom: 30px;
    }

footer img{
        max-width: 80px;
    }

footer a{
        color: #fff;
        font-size: .9rem;
        padding: 2px;
        display: block;
    }

footer a:hover {
            color: #741106;
        }

footer i{
        font-size: 1.2rem;
    }

/***
Home
***/

/*Hero Slider*/

.hero-home .slide{
}

.slider .sld-onetto{
    background-image: url('../src/images/slides/slide-onetto.jpg');
}

.slider .sld-trabajo{
    background-image: url('../src/images/slides/slide-industrial.jpg');
}

.slider .sld-uniformes{
    background-image: url('../src/images/slides/slide-uniformes.jpg');
}

/***
Single
***/

#single{
    border-top: solid 1px #c9c9c9;
}

@media (max-width: 920px) {

    #single{
        text-align: center;
    }

}

/***
Archive
***/

.archive{
    display: grid;
    grid-template-columns: 20% 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: stretch;
    max-width: 100%;
    margin-top: 0px!important;
}

.archive .sidebar{
        padding: 15px;
        text-align:left;

    }

.archive .sidebar .tax-title{
            font-size: 1.125rem;
            color: #741106;
            text-transform: uppercase;
        }

.archive .sidebar .tax-list .cat-item{
                display:block;                
            }

.archive .sidebar .tax-list .cat-item a{
                font-size: 1rem;
                color:#666;
            }

.archive .sidebar .tax-list .cat-item a:not(:only-child):after{
                font-family: "web-icons";
                content: " \e856";
                padding-left: 5px;
                color:#741106;
            }

.archive .sidebar .tax-list .children li{
                display:block;
                margin-left:15px;
            }

.archive .sidebar .tax-list .children a{
                font-size: 0.875rem;
                color:#999;

            }

.archive .sidebar .tax-list .children .children a{
                font-size: 0.75rem;
                color:#999;

            }

.archive .sidebar .tax-list li a:hover{
                color:#741106!important;
            }

@media (max-width: 640px){

    .archive .sidebar .tax-list .cat-item{
        display:inline-block;
    }
}

@media (max-width: 640px){

    .archive .sidebar .tax-list .cat-item a:not(:only-child):after{
        display:none;
    }
}

@media (max-width: 640px){

    .archive .sidebar .tax-list .children li{
        display:none;
        margin-left:0px;
    }
}

@media (max-width: 640px){

    .archive .sidebar .tax-list{
        display:flex;
        justify-content:space-evenly;
    }
}

.archive .items{

    }

@media (max-width: 640px){

    .archive .sidebar{
        text-align:center;
    }
}

/* Page Base & Core Templates Layouts Styles */

/***************
POST STYLES SCSS
***************/

/* POST */

.post .media img{
            width:100%;
            padding: 30px;
        }

.post .meta{
        text-align: center;
    }

.post .meta .title{
            color: #666;
            display: inline-block;
            border-bottom: 1px solid #999;
            transition: .2s;
        }

.post .meta .desc{
            padding: 15px 0px;
    
        }

.post .meta .label{ 
            color: #999;               
        
        }

.post .meta span{
            padding: 5px 0px;
            margin: 0px 0px 0.5rem;
            font-size: 1rem;
            display: block;
            color: #666;
        }

.post .meta ul li{
            display: inline-block;
        }

.post .meta .tallas ul{
            display: inline-block;
        }

.post .meta .category a{
                font-size: 0.8rem;
            }

.post .meta .category ul li a:first-child:nth-last-child(2):after{
                font-family: 'web-icons';
                font-size: 1rem;
                content: " \e858";
                color: #999999
            }

.post .meta .color{
            height: 1em;
            width: 1em;
            padding: 1em 1.5em;
            margin: .6em 0px;
            border: solid 1px;          
        }

.post .meta .btn{
            margin: 15px auto;
        }

/* #SINGLE */

#single .post{
    display: grid;
    justify-items:stretch;

}

#single .post .media{

    }

#single .post .meta{
        text-align:left;

    }

#single .post .meta .title{
            border-bottom: 4px solid #741106;
            font-size: .9em;
            text-transform: uppercase;
            font-weight: 300;
        }

#single .post .meta h4{
            display: inline-block;
        }

#single .post .meta p {
            text-transform: none;
        }

@media (max-width: 640px){

    #single .post .meta{
        text-align:center;
    }
}

/* ARCHIVE CARDS & SLIDES */

.post.item{
    box-shadow: rgba(100 100 111 / 30%) 0px 2px 12px 0px;
    transition: transform .2s;
    width: 100%;
}

.post.item .media img{
            padding: 0px;
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
            max-height: 100%;
            height: 300px!important;
        }

.post.item .meta{
        display: grid;

    }

.post.item .meta .title{
            margin: 0px;
            text-transform: uppercase;
            font-size: .9rem;

        }

.post.item .meta span{
            margin: 0px;
            font-size: .8rem;
        }

.post.item:hover{
    transform: scale(1.05);
}

.post.item:hover .item .title{
        border-bottom: 1px solid #741106;
    }

#home .slide{
    transition: transform .2s;

}

#home .slide:hover{
        transform: scale(1.05);
}

#home .slide:hover .item .title{
    border-bottom: 1px solid #741106;
}

/* Post Items Styles */

/***************
HOME PAGE STYLES SCSS
***************/

/* VARS */

/* Template Pages Styles */

@media (max-width: 640px){

    .slider{
        margin-top:50px;
    }
}

@media (min-width: 920px){

    #left-menu ~ *{
        margin-top:0px;
    }
}

@media (max-width: 640px){

    .hero-home .slide{
        background-blend-mode:overlay;
    }
}

@media (max-width: 640px){

    .slider .sld-onetto{
        background-position:-180px;
    }
}

@media (max-width: 640px){

    .slider .sld-trabajo{
        background-position:-180px;
    }
}

@media (max-width: 640px){

    .slider .sld-uniformes{
        background-position:-180px;
    }
}

@media (max-width: 640px){

    .archive{
        grid-template-columns:auto;
    }
}

@media (min-width: 920px){

    .archive{
        min-width:920px;
        max-width:80%;
    }
}

@media (max-width: 640px){

    #single .post{
        justify-items:center;
    }
}

/* Estilos 2023 */

footer a {
    font-weight: 500;
    letter-spacing: .4px;
}

footer .qr{
    max-height: 140px;
    margin-top: 20px;
}

.frm_message{
    margin-top: 48px;
}

.contacto form div {
    display: flex;
    width: 100%;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

fieldset {
    width: 100%;
}

.contacto form .btn {
    text-align: center;
    text-transform: uppercase;
    margin: 15px auto;
    display: inline-block;
    width: auto;
    padding: 15px 30px;
    cursor: pointer;
    border: solid 1px #666;
    background: #666;
    font-weight: 600;
    letter-spacing: 0.125rem;
    font-size: 0.8rem;
}

.contacto form .btn:hover{
        background: transparent;
        color: #666;
    }


/*Menu*/
#left-menu{
    font-family: 'Nunito', sans-serif;
    
}
#left-menu .menu a{
    font-weight: 700;
}    

#left-menu .menu li li > a:first-child:nth-last-child(2):after {
    font-family: "web-icons";
    content: " \e858";
    left:auto;
    right: 20px;
    position: absolute;
}