
/*  */


:root {
    
    --black: #000000;
    --white: #ffffff;
    --color: #ff6600;
    --gray: #a3a3a3;
    --darkgray: #222222;
    --light: #e3e3e3;
    --ultralight: #f6f6f6;
    --lightblue: #CED9F4;

}


/*  */


@font-face {
    font-family: D-DIN;
    src:url(../fonts/D-DIN-Bold.woff2) format("woff2"),url(../fonts/D-DIN-Bold.woff) format("woff"),url(../fonts/D-DIN-Bold.otf) format("opentype");
    font-style:bold;
    font-weight:700;
    font-display:block;
}
@font-face {
    font-family: D-DIN;
    src:url(../fonts/D-DIN.woff2) format("woff2"),url(../fonts/D-DIN.woff) format("woff"),url(../fonts/D-DIN.otf) format("opentype");
    font-style:normal;
    font-weight:400;
    font-display:block;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Body */


* {
    box-sizing: border-box;
}


body {
    
    color: #fff;
    font-size: 18px;
    background-color: var(--black);

    font-family: 'D-DIN', Helvetica, sans-serif;
    box-sizing: border-box;

    margin: 0;
    padding: 0;
    padding-top: 100px;

    background-image: url(../images/bg/backdrop.png);
    background-repeat: repeat;

}

@media (min-width: 1024px) {

    body {
        padding-top: 100px;
    }
}

/* Selection */

::selection {
    background: #222;
}

/* Overflow */

html.overflow,
body.overflow {
    overflow:hidden;
}

/* Page Overlay */

.page-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 12000;
    background-color: var(--black);
    top: 0;
    left: 0;
    bottom: 0;

    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: center;
    justify-content: center;

    -webkit-align-items: center;
    align-items: center;

    text-transform: uppercase;
    color: #333;
    font-size: 85%;

}


/* Regular */


h1 {
    position: relative;

    font-size: 52px;
    line-height: 56px;
    font-weight: 400;
    font-style: normal;
    
    text-transform: uppercase;
    color: #fff;
    margin: auto;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 75px;
        line-height: 80px;
        font-weight: 400;
        font-style: normal;
    }
    h1.jumbo {
        font-size: 140px;
        line-height: 140px;
    }
}

h2, h2.jumbo {
    position: relative;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    h2 {
        font-size: 46px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
    }
    h2.jumbo {
        font-size: 80px;
        line-height: 70px;
        font-weight: 400;
        font-style: normal;
    }
}

p {
    line-height: 1.6;
}

.mw-p {
    margin: 40px auto;
}

@media (min-width: 1024px) {
    .mw-p {
        max-width: 80%;
    }
}

.hidden {
    display: none;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Container */


.container {
    display: block;
    position: relative;
    width: 100vw;
    z-index: 2;
}

@media (min-width: 1024px) {
    .container {
        width: 100vw;
        max-width: 1400px;
        margin: 0 auto;
    }
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Btn */


.btn {
    position: relative;
    display: block;
    padding: 0 25px;
    border: 2px solid var(--white);
    margin-bottom: 15px;
}

.btn .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale3d(1,0,1);
    transform: scale3d(1,0,1);
    -webkit-transition: -webkit-transform .6s cubic-bezier(.19,1,.22,1);
    transition: -webkit-transform .6s cubic-bezier(.19,1,.22,1);
    transition: transform .6s cubic-bezier(.19,1,.22,1);
    transition: transform .6s cubic-bezier(.19,1,.22,1),-webkit-transform .6s cubic-bezier(.19,1,.22,1);
}

.btn .text {
    position: relative;
    display: inline-block;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    line-height: 50px;
    text-transform: uppercase;
    width: 100%;
    -webkit-transition: color .5s cubic-bezier(.19,1,.22,1);
    transition: color .5s cubic-bezier(.19,1,.22,1);
}

.btn:hover .hover {
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

.btn:hover .text {
    color: var(--black);
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* X Grid */


.x-grid {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    justify-items: inherit;
    height: 100%;
}

@media (min-width: 768px) {
    .x-grid {
        grid-column-gap: 48px;
        grid-row-gap: 56px;
        -ms-grid-columns: repeat(12, 1fr);
        grid-template-columns: repeat(12, 1fr);
    }
}


.x-col {
    width: 100%;
    display: -ms-grid;
    display: grid;
    
    grid-column: span 4;

    -ms-grid-row-align: start;
    align-self: start;
    order: 0;
}

@media (min-width: 768px) {
    .x-col {
        grid-column: span 12;
    }
}


/* X2 */

.x-col-2 {
    width: 100%;
    display: -ms-grid;
    display: grid;
    
    grid-column: span 4;

    -ms-grid-row-align: start;
    align-self: start;
    order: 0;
}

@media (min-width: 768px) {
    .x-col-2 {
        grid-column: span 6;
    }
}

/* X3 */

.x-col-3 {
    width: 100%;
    display: -ms-grid;
    display: grid;
    
    grid-column: span 4;

    -ms-grid-row-align: start;
    align-self: start;
    order: 0;
}

@media (min-width: 768px) {
    .x-col-3 {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) {
    .x-col-3 {
        grid-column: span 4;
    }
}

/* X4 */

.x-col-4 {
    width: 100%;
    display: -ms-grid;
    display: grid;
    
    grid-column: span 4;

    -ms-grid-row-align: start;
    align-self: start;
    order: 0;
}

@media (min-width: 768px) {
    .x-col-4 {
        grid-column: span 3;
    }
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Section */


.section {
    position: relative;
    width: 100%;

    display: block;
    height: 100%;
    margin: 0;
    padding: 0;

    border-bottom: 1px solid #222;
}

.section-content {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    padding: 20px;
    padding-bottom: 50px;
}


@media (min-width: 1024px) {
    .section-content {
        width: 100%;
        margin: 0 auto;
        max-width: 1400px;
        padding: 50px;
        padding-bottom: 100px;
    }
}

.section-content .title h1 {
    margin-bottom: 25px;
}

@media (min-width: 1024px) {
    .section-content .title h1 {
        margin-bottom: 50px;
    }
}


.section-content .title  .product-brand {
    text-decoration: none;
    color: inherit;
}

.section-content .title h3 {
    text-transform: uppercase;
    margin-bottom: 25px;
}




/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Archive */



.archive-list-item{
    display: block;
}


.archive-list-item .data {
    display: block;

    background-color: var(--gray);
    color: var(--black);
    padding: 30px 25px;
    text-transform: uppercase;
}

.archive-list-item .data .product-name {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}

.archive-list-item .data .product-name:hover{
    color: var(--black);
}

.archive-list-item .data .product-brand {
    color: var(--black);
    text-decoration: none;
}

.archive-list-item .data .product-brand:hover {
    color: var(--white);
}

.archive-list-item .data p.product-date {
    margin: 0;
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Search */



.product-list-item{
    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    flex-direction: column;

    background-color: var(--gray);
    color: var(--black);
    padding: 30px 25px;
}

@media (min-width: 1024px ) {
    .product-list-item {
        -webkit-flex-direction: row;
        flex-direction: row;

        -webkit-align-items: center;
        align-items: center;

        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;

        margin: 0;
        width: 100%;
    }
}

.product-list-item .image {
    display: none;
}


@media (min-width: 1024px ) {
    .product-list-item .image {
        display: block;
        margin-right: 25px;
    }
    .product-list-item .image a {}

    .product-list-item .image a img {}
}

.product-list-item .data {
    display: block;
    text-transform: uppercase;
}

.product-list-item .data .product-name {
    color: var(--white);
    text-decoration: none;
}

.product-list-item .data .product-name:hover {
    color: var(--black);
}

.product-list-item .data .product-brand {
    color: var(--black);
    text-decoration: none;
}

.product-list-item .data .product-brand:hover {
    color: var(--white);
}

.product-list-item .data p.product-date {
    margin: 0;
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Search Input */


.section-search {
    margin-bottom: 50px;
}

@media (min-width: 1024px) {

    .section-search {
        margin-bottom: 50px;
    }
}

.section-search form {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;

    border-radius: 0;

    box-shadow: none;
    box-sizing: border-box;

    overflow: hidden;

    -webkit-transition-property: box-shadow,width;
    transition-property: box-shadow,width;

    background-color: var(--black);
    border: 2px solid var(--white);
    border-radius: 0rem;
    width: 100%;
}

@media (min-width: 1024px) {

    .section-search form {
        width: 50%;
    }
}

.search-input {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 50px;
    position: relative;
}

.search-input input {
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    line-height: 24px;

    -webkit-letter-spacing: -0.1px;
    -moz-letter-spacing: -0.1px;
    -ms-letter-spacing: -0.1px;
    letter-spacing: -0.1px;
    
    text-decoration: unset;

    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;

    background-color: transparent;
    border: none;

    color: var(--gray);
    cursor: text;

    height: 100%;
    padding: 0;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
}

@media (min-width: 768px) {
    .search-input input {
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 28px;

        -webkit-letter-spacing: -0.25px;
        -moz-letter-spacing: -0.25px;
        -ms-letter-spacing: -0.25px;
        letter-spacing: -0.25px;
        
        text-decoration: unset;
    }
}

.search-button {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    background: none;

    border: 0;
    color: unset;
    font: inherit;
    padding: 0;
    text-align: unset;
    cursor: pointer;
    height: 100%;
    outline: 0;
    position: absolute;
    left: 15px;
    top: 2px;
}

.search-icon {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;

    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: 25px;
    fill: var(--gray);
}


/* Resultado */

.search-results h3 {
    margin-bottom: 50px;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Single Productos */


/* Product Content */



.product-content {
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

@media (min-width: 1024px ) {
    .product-content {
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin: 0;
        width: 100%;
    }
}

.product-content .data {
    display: block;
    margin: 0;
    visibility: visible;
    width: 100%;
    margin-top: 30px;
}

@media (min-width: 1024px) {
    .product-content .data {
        display: block;
        margin: 0;
        visibility: visible;
        width: calc(30% - 24px);
        margin-top: 0;
    }
}


.product-content .gallery {
    display: block;
    margin: 0;
    visibility: visible;
    width: 100%;
}


@media (min-width: 1024px) {
    .product-content .gallery {
        display: block;
        margin: 0;
        visibility: visible;
        width: calc(70% - 24px);
    }
}


.nombre h2 {
    margin-bottom: 10px;
}

.marca {
    text-transform: uppercase;
    margin-bottom: 25px;
}

.descripcion {
    margin-bottom: 25px;
}

.descargas {
    margin-bottom: 25px;
}

.section-title {
    font-size: 75%;
    letter-spacing: 0.5px;
    color: var(--color);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Swiper */


.myswiper-s {
    box-sizing: border-box;
    padding: 10px 0;
}

@media (max-width: 1023px) {
    .myswiper-s {
        display: none;
    }
}

.myswiper-s .swiper-slide {
    width: 20%;
    height: auto;
    opacity: 1;
    background-color: var(--black);
    border-radius: 0.25rem;
    border: 2px solid var(--darkgray);
    cursor: default;
}

.myswiper-s .swiper-slide img {
    opacity: 0.5;
}

.myswiper-s .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--darkgray);
}

.myswiper-s .swiper-slide-thumb-active img {
    opacity: 1;
}


.myswiper-l {
}

.myswiper-l .swiper-slide img {
    opacity: 1 !important;
}

.swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: center;
    justify-content: center;

    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    filter: invert(1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Tax Marcas */


.brands {
    padding: 0;
    margin: 0;
    list-style: none;
}

.brands-item {
    padding: 25px 0;
    border-bottom: 1px solid #222;
}

.brands-item:last-child  {
    border-bottom: 0;
}

.brands-item a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
}

.brands-item a:hover h1 {
    color: var(--gray);
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Simple Contact Form */


.simple-contact-form {

}


.simple-contact-form form {

}


.simple-contact-form form input,
.simple-contact-form form input:focus {

    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;

    border-radius: 0;

    box-shadow: none;
    box-sizing: border-box;

    overflow: hidden;

    -webkit-transition-property: box-shadow,width;
    transition-property: box-shadow,width;

    background-color: var(--black);
    border: 2px solid var(--white);
    border-radius: 0rem;
    width: 100%;


    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    
    text-decoration: unset;

    color: var(--gray);
    cursor: text;

    line-height: 50px;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .simple-contact-form form input,
    .simple-contact-form form input:focus{
        font-size: 18px;
        font-style: normal;
        font-weight: normal;        
        text-decoration: unset;
    }
}



.simple-contact-form form textarea,
.simple-contact-form form textarea:focus {

    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;

    border-radius: 0;

    box-shadow: none;
    box-sizing: border-box;

    overflow: hidden;

    -webkit-transition-property: box-shadow,width;
    transition-property: box-shadow,width;

    background-color: var(--black);
    border: 2px solid var(--white);
    border-radius: 0rem;
    width: 100%;


    font-size: 15px;
    font-style: normal;
    font-weight: normal;    
    text-decoration: unset;

    color: var(--gray);
    cursor: text;

    line-height: 50px;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .simple-contact-form form textarea,
    .simple-contact-form form textarea:focus{
        font-size: 18px;
        font-style: normal;
        font-weight: normal;        
        text-decoration: unset;
    }
}

.simple-contact-form form button {

}


::placeholder {
    color: var(--gray);
}






/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *//* Footer */


footer {
    width: 100%;
    padding: 0;
    margin: 0;
}

.copyright {
    font-size: 75%;
}









