/*
Theme Name: Elevatex 2024
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/
Description: Este diseño ha sido creado por SA Publicidad de manera exclusiva para usted.
Version: 1.0
License: Privada
Tags: minimalista, responsive, modern, full width

Este tema tiene una licencia privada y el uso de esta es exclusiva de SA Publicidad.
*/

*{
    padding: 0;
    font-family: "Sarabun", sans-serif;
    margin:0;
}

:root {
    --color-principal: #33a6c4;
    --color-secundario: #347c8e;
}

.wrap{
    width: 90%;
    max-width: 1200px;
    margin:auto;
}

::selection{
    background-color: var(--color-principal);
    color: #ffffff;
}

body{
    opacity: 0;
    transition: opacity .3s ease;
    visibility: hidden;
}

/* header */
header{
    width: 100%;
    z-index: 99;
    padding: 10px 0;
    background-color: #ffffff;
    transition: all .3s ease;
}

header .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .wrap .logo{
    width: 240px;
    transition: all .3s ease;
}

@media(max-width:800px){
    header .wrap{
        justify-content: center;
    }
    header .wrap .logo{
        max-width: 60%;
    }
}

header .wrap .logo img{
    width: 100%;
    mix-blend-mode: multiply;
}


/* nav-category */
.nav-category{
    background-color: var(--color-principal);
    transition: all .3s ease;
    position: sticky;
    z-index: 999;
    padding: 10px 0;
}

#btn-nav-category{
    display: none;
}

.nav-category label{
    display: none;
}

.nav-category .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-category.stick{
    width: 100%;
    top:0;
    z-index: 9999;
}

.nav-category >  .wrap > ul{
    flex: 4;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    line-height: 50px;
}

.nav-category > .wrap  > ul  > li{
    position:relative;
    text-align: center;
}


.nav-category ul li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0 10px;
    transition: background .3s ease;
}

.nav-category ul li a i{
    font-size: 12px;
    display: inline-block;
    margin:0 0 0 10px;
}

.nav-category ul li:hover a i{
    transform: rotateX(180deg);
}

.nav-category ul li:hover a{
    text-decoration: underline;
}


.nav-category.stick.hidde{
    transform: translateY(-100%);
}


.nav-category.show{
    transform: translateY(0);
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
}

@media(max-width:800px){
    .nav-category{
        padding: 0 0 10px 0;
    }
    .nav-category .wrap{
        display: block;
        position: relative;
    }
    .nav-category label{
        display: block;
        width: 100%;
        background-color: var(--color-principal);
        color: #ffffff;
        outline: none;
        cursor: pointer;
        padding: 20px 0;
        text-align: center;
    }

    .nav-category label i{
        display: inline-block;
    }

    #btn-nav-category:checked ~  label i{
        transform: rotateX(180deg);
    }

    .nav-category > .wrap{
        max-width: 100%;
        width: 100%;
    }
    .nav-category > .wrap > ul{
        display: block;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        position: absolute;
        background-color: var(--color-principal);
        transition: all .3s ease;
    }

    #btn-nav-category:checked ~ #nav-category{
        max-height: 100vh;
    }

    .nav-category > .wrap  > ul  > li{
        display: block;
        width: 100%;
    }

    .nav-category ul li a{
        padding: 5px 20px;
    }
}



/* sub-nav */
.nav-category > .wrap > ul > li > ul{
    position: absolute;
    left: 0;
    top:100%;
    z-index: 9999;
    width: 250px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

.nav-category > .wrap > ul > li:hover > ul{
    pointer-events: all;
    max-height: 50vh;
    overflow: scroll;
    opacity: 1;
}

.nav-category > .wrap > ul > li > ul > li{
    list-style: none;
}

.nav-category > .wrap > ul > li > ul > li > a{
    background-color: var(--color-secundario);
    line-height: 20px;
    padding:14px  10px;
    font-size: 14px;
    text-align: left;
    text-transform: capitalize !important;
    text-decoration: none;
}

.nav-category > .wrap > ul > li > ul > li > a i{
    display: none;
}

@media(max-width:800px){
    .nav-category > .wrap > ul > li > ul{
        position: static;
        width: 100%;
        max-height: 0;
    }

    .nav-category > .wrap > ul > li:hover > ul{
        max-height: 50vh;
        text-align: center;
    }

    .nav-category > .wrap > ul > li > ul > li > a{
        text-align: center;
        text-transform: uppercase;
    }
}

.nav-category > .wrap > ul > li > ul > li:hover > a{
    background-color: var(--color-principal);
}

/* sub-sub-nav */
.nav-category > .wrap > ul > li > ul > li > ul{
    position: absolute;
    left: 100%;
    top:0;
    background-color: var(--color-principal);
    width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    list-style-type: none;
    z-index: 99999;
}

@media(max-width:800px){
    .nav-category > .wrap > ul > li > ul > li > ul{
        position:static;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
        left: 0;
    }

    .nav-category > .wrap > ul > li > ul > li:hover > ul{
        max-height: 70vh;
        overflow: scroll;
    }
}

.nav-category > .wrap > ul > li > ul > li:hover > ul{
    opacity: 1;
    pointer-events: all;
}

.nav-category > .wrap > ul > li > ul > li > ul > li > a{
    font-size: 14px;
    text-align: left;
}



.nav-category .search-box{
    flex: 2;
    max-width: 30%;
}

.nav-category .search-box form{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-category .search-box form input[type="search"]{
    padding: 15px 10px;
    border:none;
    border-radius: 10px 0 0 10px;
    outline: none;
    flex: 5;
}

.nav-category .search-box form button{
    border:none;
    padding: 13px 10px;
    background-color: #ffffff;
    border-radius: 0 10px 10px 0;
    flex:1;
    cursor: pointer;
}

.nav-category .search-box form button span{
    font-size: 18px;

}



@media(max-width:800px){
    .search-box{
        width: 100%;
        max-width: 90% !important;
        margin:20px auto;
    }

    .search-box form input[type="search"]{
        padding: 18px ;
        width: 70%;
    }

    .search-box form button{
        padding: 22px 16px;
        width: 30%;
    }

    .search-box form button span{
        color: #212121;
        text-align: center;
    }
}

/* slider */
.slider{
    position: relative;
}
.slider .single{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #212121;
}

.slider .single img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    opacity: .7;
}

.slider .single .single-content{
    position:relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px 0 0 0;
    box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.5);
}

.slider .single .single-content .wrap{
    max-width: 900px;
    color: #ffffff;
}

.slider .single .single-content h2{
    font-size: 5em;
    font-weight: 900;
}

.slider .single .single-content p{
    font-size: 1.4em;
    font-weight: 400;
    padding: 0 0 0 100px;
    position: relative;
}

.slider .single .single-content p:before{
    content: "";
    position: absolute;
    left: 0;
    top:50%;
    transform: translateY(-50%);
    width: 80px;
    height:2px;
    background-color: #ffffff;
}

.slider .slidesjs-previous,
.slider .slidesjs-next{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 30px;
    text-decoration: none;
    color: #ffffff;
    margin:60px 0 0 0;
    opacity: .4;
    transition: all .3s ease;
}

.slider .slidesjs-previous:hover,
.slider .slidesjs-next:hover{
    opacity: 1;
}

.slider .slidesjs-previous{
    left: 5%;
}

.slider .slidesjs-next{
    right: 5%;
}

@media(max-width:800px){
    .slider .single .single-content{
        padding: 0;
        text-align: center;
    }
    .slider .single .single-content h2{
        font-size: 50px;
    }

    .slider .single .single-content p{
        font-size: 25px;
        padding: 0 0 0 0px;
    }

    .slider .single .single-content p:before{
        display: none;
    }

    .slider .slidesjs-previous,
    .slider .slidesjs-next{
        display: none;
    }

    .slidesjs-container, 
    .slidesjs-control {
        width: 100% !important;
        height: 80vh !important;
    }
    .slidesjs-slide {
        height: 80vh !important;
    }
}

/* promociones */
.promociones{
    padding: 50px 0;
}

.promociones .wrap {
    display: flex;
    gap: 2%;
    justify-content: space-around;
}

.promociones .wrap article {
    flex: 1;
    max-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 340px;
}

.promociones .wrap article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    

/* wellcome */
.wellcome{
    padding: 80px 0;
}

.wellcome .wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:4%
}

.wellcome .wrap article{
    width: 48%;
}

.wellcome .wrap article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-height: 400px;;
}

.wellcome .wrap article h2{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-principal);
    font-weight: 600;
    position: relative;
}

.wellcome .wrap article h2:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: var(--color-principal);
    left: 0;
    bottom: -10px;
}

.wellcome .wrap article h1{
    font-size: 3em;
    line-height: 1.2;
    color: #313131;
    font-weight: 900;
    margin:20px 0;
}

.wellcome .wrap article p{
    font-size: 1.2em;
    line-height: 2;
    color: #313131;
    font-weight: 400;
    margin:20px 0;
}

.wellcome .wrap article ul{
    display: flex;
    margin:20px 0 0 0;
    flex-wrap: wrap;
    gap:2%;
}

.wellcome .wrap article ul li{
    width: 40%;
    max-width: 150px;
    text-align: center;
    list-style: none;
}

.wellcome .wrap article ul li a{
    display: block;
    line-height: 50px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: solid 3px var(--color-principal) !important;
    transition: all .3s ease;
}

.wellcome .wrap article ul li:nth-child(1) a{
    background-color: var(--color-principal);
}

.wellcome .wrap article ul li:nth-child(2) a{
    color: var(--color-principal);
    border:solid 1px var(--color-principal);
}

.wellcome .wrap article ul li a:hover{
    background-color: var(--color-principal);
    color: #ffffff;
}


@media(max-width:800px){
    .wellcome{
        padding: 40px 0;
    }

    .wellcome .wrap{
        display: block;
    }

    .wellcome .wrap article{
        width: 100%;
        margin:40px 0;
        text-align: center;
    }

    .wellcome .wrap article h1{
        font-size: 30px;
    }

    .wellcome .wrap article h2:after{
        left: 50%;
        transform: translateX(-50%);
    }

    .wellcome .wrap article ul{
        justify-content: center;
    }
}


/* valors */
.valors{
    padding: 50px 0 100px 0;
}
.valors .wrap{
    display: flex;
    justify-content: space-between;
    gap:3%;
    flex-wrap: wrap;
}

.valors .wrap article{
    width: 20%;
}

.valors .wrap article .icon span{
    color: var(--color-principal);
    font-size: 40px;
}

.valors .wrap article h2{
    font-size: 1.7em;
    font-weight: 800;
    color: #212121;
    margin:10px 0;
}

.valors .wrap article p{
    font-size: 1.1em;
    color: #414141;
    line-height: 1.6;
}


@media(max-width:800px){
    .valors{
        padding: 0px 0 50px 0;
    }

    .valors .wrap{
        display: block;
        text-align: center;
    }

    .valors .wrap article{
        width: 90%;
        margin:40px auto;
    }
}

/* banner-1 */
.banner-1{
    position: relative;
    background-color: #000000aa;
}

.banner-1 img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .4;
}

.banner-1 .wrap{
    position:relative;
    z-index: 2;
    padding: 100px 0 150px 0;
    display: flex;
    gap:5%;
    flex-wrap: wrap;
}

.banner-1 article:nth-child(1){
    width: 60%;
}

.banner-1 article h3{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-principal);
    font-weight: 600;
    position: relative;
}

.banner-1 article h3:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: var(--color-principal);
    left: 0;
    bottom: -10px;
}

.banner-1 article h2{
    font-size: 3em;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 900;
    margin:20px 0;
}

.banner-1 article p{
    font-size: 1.2em;
    line-height: 2;
    color: rgba(255,255,255,.7);
    font-weight: 400;
    margin:20px 0;
}


.banner-1 article p a{
    color: #ffffff;
    line-height: 50px;
    font-size: .9em;
    font-weight: 700;
    padding: 0 50px;
    border:solid 1px #ffffff;
    border-radius: 5px;
    display: inline-block;
    border-bottom-width: 3px;
    text-decoration: none;
    transition: all .3s ease;
}

.banner-1 article p a:hover{
    background-color: #ffffff;
    color: var(--color-principal);
}

.banner-1 article:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.banner-1 article:nth-child(2) a{
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    background-color: var(--color-principal);
    line-height: 50px;
    padding: 0 30px;
    border-radius: 5px;
    transition: all .3s ease;
    font-weight: 700;
    font-size: 1.1em;
}

.banner-1 article:nth-child(2) a:hover{
    background-color: #ffffff;
    color: var(--color-principal);
}



@media(max-width:800px){
    .banner-1 .wrap{
        padding: 40px 0 100px 0;
        text-align: center;
        display: block;
    }

    .banner-1 article:nth-child(1),
    .banner-1 article:nth-child(2){
        width: 100%;
    }

    .banner-1 article h3:after{
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-1 article h2{
        font-size: 30px;
    }
}

/* stadistycs */
.stadistycs{
    margin:-80px 0 0 0;
    position: relative;
    z-index: 3;
}
.stadistycs .wrap{
    display: flex;
    background-color: var(--color-principal);
    justify-content: space-between;
    border-radius: 10px;
    padding: 0 5%;
    max-width: 1050px;
    gap:2%;
}

.stadistycs .wrap article{
    text-align: center;
    padding: 75px 0;
}

.stadistycs .wrap article h2{
    font-size: 2.8em;
    font-weight: 800;
    color: #212121;
}

.stadistycs .wrap article p{
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2em;
}


@media(max-width:800px){
    .stadistycs .wrap{
        width: 80%;
        display: block;
    }

    .stadistycs .wrap article{
        width: 100%;
        padding: 20px 0;
    }

    .stadistycs .wrap article h2{
        font-size: 30px;
    }
}



/* showcase */
.showcase{
    padding: 100px 0 50px 0;
}

.showcase h3{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-principal);
    font-weight: 600;
    position: relative;
    text-align: center;
    margin:0 0 20px 0;
}

.showcase h3:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: var(--color-principal);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.showcase h2{
    font-size: 3em;
    line-height: 1.2;
    color: #212121;
    font-weight: 900;
    text-align: center;
    margin:0 0 100px 0;
}


.showcase .gallery{
    display: flex;
    justify-content: space-between;
    gap:2%;
    flex-wrap: wrap;
}

.showcase .gallery article{
    width: 22%;
    position: relative;
    margin:0 0 20px 0;
}

.showcase .gallery article .image{
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

.showcase .gallery article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    transition: all .5s ease;
    border-radius: 5px;
}

.showcase .gallery article:hover img{
    filter: blur(3px);
    transform:scale(1.1);
    transition-delay: .2s;
}

.showcase .gallery article h4{
    font-size: 1.5em;
    padding: 10px 10px 0 10px;
    color: #313131;
}

.showcase .gallery article .btn-more{
    margin:10px 10px 10px 10px;
    display: table;
}

.showcase .gallery article .btn-more a{
    display: block;
    text-decoration: none;
    background-color: var(--color-principal);
    color: #ffffff;
    line-height: 50px;
    padding: 0 30px;
}

.showcase .gallery article .btn-more a span{
    transform: translateY(7px);
}


@media(max-width:800px){
    .showcase .gallery article{
        width: 48%;
    }
}


/* banner-2 */
.banner-2{
    padding: 80px 0;
}

.banner-2 .wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:4%
}

.banner-2 .wrap article{
    width: 48%;
}

.banner-2 .wrap article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-height: 400px;;
}

.banner-2 .wrap article h2{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-principal);
    font-weight: 600;
    position: relative;
}

.banner-2 .wrap article h2:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: var(--color-principal);
    left: 0;
    bottom: -10px;
}

.banner-2 .wrap article h1{
    font-size: 3em;
    line-height: 1.2;
    color: #313131;
    font-weight: 900;
    margin:20px 0;
}

.banner-2 .wrap article p{
    font-size: 1.2em;
    line-height: 2;
    color: #313131;
    font-weight: 400;
    margin:20px 0;
}

.banner-2 .wrap article ul{
    display: flex;
    margin:20px 0 0 0;
    flex-wrap: wrap;
    gap:2%;
}

.banner-2 .wrap article ul li{
    width: 40%;
    max-width: 150px;
    text-align: center;
    list-style: none;
}

.banner-2 .wrap article ul li a{
    display: block;
    line-height: 50px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: solid 3px var(--color-principal) !important;
    transition: all .3s ease;
}

.banner-2 .wrap article ul li:nth-child(1) a{
    background-color: var(--color-principal);
}

.banner-2 .wrap article ul li:nth-child(2) a{
    color: var(--color-principal);
    border:solid 1px var(--color-principal);
}

.banner-2 .wrap article ul li a:hover{
    background-color: var(--color-principal);
    color: #ffffff;
}


@media(max-width:800px){
    .banner-2{
        padding: 40px 0;
    }

    .banner-2 .wrap{
        display: block;
    }

    .banner-2 .wrap article{
        width: 100%;
        margin:40px 0;
        text-align: center;
    }

    .banner-2 .wrap article h1{
        font-size: 30px;
    }

    .banner-2 .wrap article h2:after{
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-2 .wrap article ul{
        justify-content: center;
    }
}


/* banner-3 */
.banner-3{
    position: relative;
    background-color: #0e0e1d75;
}

.banner-3 .wrap{
    position: relative;
    z-index: 2;
    padding: 140px 0;
}

.banner-3 h3{
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-principal);
    text-transform: uppercase;
    text-align: center;
}

.banner-3 h2{
    font-size: 3em;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin:auto;
}


@media(max-width:800px){
    .banner-3 .wrap{
        padding: 40px 0;
    }

    .banner-3 h2{
        font-size: 30px;
    }
}

/* brands */
.brands .wrap{
    padding: 50px 0;
    display: flex;
    justify-content: space-around;
    gap:2%;
    max-width: 1900px;
    width: 95%;
    flex-wrap: wrap;
}

.brands .wrap article{
    overflow: hidden;
    width: 8%;
    min-width: 100px;
}

.brands .wrap article img{
    width: 100%;
    filter: grayscale(100%);
    opacity: .4;
    transition: all .3s ease;
}

.brands .wrap article:hover img{
    filter: grayscale(0);
    opacity: 1;
}

/* page-banner */
.page-banner{
    background-color: var(--color-principal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='974' height='811.7' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.08'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/svg%3E");    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner h1{
    margin:150px 0 80px 0;
    font-size: 30px;
    color: #ffffff;
    position: relative;
    text-align: center;
    padding: 0 50px;
}

.page-banner h1 span{
    display: block;
    font-size: 20px;
}

.page-banner .image{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
    opacity: .2;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
}

.page-banner .image img{
    top: 50%;
    height: auto;
    width: 100%;
    position: absolute;
    transform: translateY(-50%);
}

@media(max-width:800px){
        .page-banner{
            height: auto;
            padding: 100px 0 30px 0;
        }

        .page-banner h1{
            font-size: 30px;
            margin:0;
        }
        .page-banner .image img{
            width: 120%;
        }
}



/* content */
.content{
    padding: 80px 0 80px 0;
}

@media(max-width:800px){
    .content{
        padding: 40px 0;
    }
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content input[type="file"],
.content input[type="date"],
.content textarea,
.content select{
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    padding: 8px 2%;
    width: 96%;
    border:solid 1px #f0f0f0;
    border-radius: 5px;
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
}

.content select{
    color: #313131;
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: #777777 !important;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content input[type="date"]:focus,
.content textarea:focus,
.content select:focus{
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content input[type="date"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: var(--color-principal);
    color: #ffffff;
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    color: #ffffff;
    background-color: #313131;
}

.not-found{
    padding: 100px 0;
    margin:auto;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: #313131;
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: #313131;
    margin:auto;
    max-width: 500px;
    font-weight: 300;
}

@media(max-width:800px){
    .not-found{
        padding: 50px 0;
    }

    .not-found h2{
        font-size: 50px;
    }

    .not-found h3{
        font-size: 17px;
        width: 80%;
    }
}



/* category */
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    overflow: hidden;
    margin:0 0 40px 0;
}

.category .wrap article img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all .3s ease;
}

.category .wrap article:hover img{
    transform: scale(1.1);
}

.category .wrap article h2{
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    position: relative;
}

.category .wrap article h2:after
{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--color-principal);
    bottom: -1px;
    left: 10px;
}
.category .wrap article p{
    font-size: 14px;
    line-height: 25px;
    color: #777777;
    padding: 10px;
    text-align: justify;
}



@media(max-width:800px){
    .category .wrap{
        gap:4%;
    }
    .category .wrap article{
        width: 48%;
    }

    .category .wrap article p{
        text-align: left;
    }
}

.category .wrap article .btn-more{
    display: table;
    margin:10px;
}

.category .wrap article .btn-more a{
    display: block;
    text-decoration: none;
    background-color: #1b203b;
    color: #ffffff;
    line-height: 45px;
    padding: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .3s ease;
}

.category .wrap article .btn-more a:hover{
    background: var(--color-principal);
    color: #ffffff;
}


/* sub-footer */
.sub-footer{
    padding: 80px 0;
    background-color: #212121;
}

.sub-footer .wrap{
    display: flex;
    justify-content: space-between;
    gap:3%;
    flex-wrap: wrap;
}

.sub-footer .wrap article:nth-child(1){
    width: 30%;
}

.sub-footer .wrap article:nth-child(2){
    width: 11%;
}

.sub-footer .wrap article:nth-child(3){
    width: 25%;
}

.sub-footer .wrap article:nth-child(4){
    width: 25%;
}

.sub-footer .wrap article h2{
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 30px 0;
}

.sub-footer .wrap article p,
.sub-footer .wrap article a{
    color: #f9f9f9;
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    transition: color .3s ease;
}

.sub-footer .wrap article ul.menu{
    line-height: 40px;
    list-style: none;
}

.sub-footer .wrap article ul li{
    list-style: none;
}

.sub-footer .wrap article ul.menu li a i{
    color: var(--color-principal);
}

.sub-footer .wrap article ul.menu li a:hover{
    color: var(--color-principal);
}

.sub-footer .wrap article ul.social{
    display: flex;
    gap:3%;
    list-style-type: none;
    margin:20px 0 0 0;
}

@media(max-width:800px){
    .sub-footer .wrap{
        display: block;
    }

    .sub-footer .wrap article:nth-child(1),
    .sub-footer .wrap article:nth-child(2),
    .sub-footer .wrap article:nth-child(3),
    .sub-footer .wrap article:nth-child(4){
        text-align: center;
        width: 100%;
        margin:40px 0;
    }
    .sub-footer .wrap article ul.social{
        justify-content: center;
    }
}

.sub-footer .wrap article ul.social li a{
    display: block;
    line-height: 50px;
    width: 50px;
    background-color: #f9f9f9;
    color: #121212;
    text-align: center;
    font-size: 20px;
    border-radius: 50px;
    line-height: 50px;
    transition: all .3s ease;
}

.sub-footer .wrap article ul.social li a:hover{
    background-color: var(--color-principal);
    color: #ffffff;
}

.sub-footer .wrap article input[type="email"]{
    padding: 10px 2%;
    width: 96%;
    border:none;
    background-color: #ffffff;
    outline: none;
    font-size: 16px;
    border-radius: 20px;
}

.sub-footer .wrap article input[type="submit"]{
    background-color: var(--color-principal);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    border:none;
    font-size: 16px;
    cursor: pointer;
    margin:10px 0 20px 0;
    transition: all .3s ease;
}

@media(max-width:800px){
    .sub-footer .wrap article input[type="email"]{
        display: block;
        margin:auto;
        max-width:60%;
    }

    .sub-footer .wrap article input[type="submit"]{
        display: block;
        margin:20px auto 0 auto;;
    }
}


.sub-footer .wrap article input[type="submit"]:hover,
.sub-footer .wrap article input[type="submit"]:focus{
    background-color: var(--color-principal);
    color: #212121;
}


/* footer */
footer{
    background-color: #212121;
    padding: 0 0 50px 0;
    text-align: center;
    font-size: 18px;
    color: #dedede;
}

footer a{
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease;
}

@media(max-width:800px){
    footer{
        font-size: 16px;
    }
}


footer a:hover{
    color: var(--color-principal);
}

footer em{
    font-style: normal;
    display: inline;
    margin:0 10px;
}

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    z-index: 99;
    cursor: pointer;
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    opacity: 1;
}

.btn-whatsapp{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.btn-whatsapp i{
    line-height: 50px;
    width: 50px;
    background-color: #25D366;
    display: block;
    line-height: 50px;
    width: 50px;
    font-size: 22px;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    border-radius: 50px;
    transition: transform .3s ease;
}

.btn-whatsapp:hover i{
    transform: scale(1.2);
}

.btn-whatsapp .bounce{
    position: absolute;
    left: 100%;
    top:0;
    width: 180px;
    pointer-events: none;
    height: 50px;
    display: flex;
    align-items:center ;
    margin:0 0 0 20px;
    background-color:#E4E6EB;
    justify-content: center;
    color: #4C4F56;
    border-radius: 10px;
    opacity: 0;
    transition: opacity .3s ease;
}

.btn-whatsapp:hover .bounce{
    opacity: 1;
}

.btn-whatsapp .bounce::before{
    content: "";
    position: absolute;
    border-right: solid 10px #E4E6EB;
    border-top:solid 10px transparent;
    border-bottom: solid 10px transparent;
    left: -10px;
    top:50%;
    transform: translateY(-50%);
}