/* HEADER CATEGORIAS */
.categorias-header h3{
    padding-bottom: 28px;
    color: #272727;
}

.categorias-header .titulo-lista{
    border-bottom: 1px solid var(--color-primary);
    width: 100%;
}

.categorias-header .titulo-lista .titulo{
    width: fit-content;
    background: var(--color-primary);
    padding: 0 10px;
    color: white;
}

/* CATEGORY TITLES LIST */

.category-titles-list{
    padding-bottom: 8px;
    cursor: pointer;
}

.category-titles-list li{
    
}

.category-titles-list.parent ul{
    height:auto;
}

.category-titles-list .category-name{
    line-height: 20px;
}

.category-titles-list.opened .category-name{
    text-decoration: underline;
}
.category-titles-list ul{
    height:0;
    overflow:hidden;
    transition: height 0.3s ease-in-out 0s;
    line-height: 20px;
}

.category-titles-list.opened ul{
    height: auto;
}

.category-titles-list ul li a{
    line-height: 1.7em;
    color: #272727;
    padding-left:15px;
}

.category-titles-list ul li:hover a{
    color: var(--color-primary);
}

.category-titles-list:last-of-type{
    display:none;
}

/* CATEGORY LIST */

.category-list .category-item{
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
    overflow: hidden;
}
.category-list .category-item .overlay{
    position: absolute;
    top: 90px;
    left: 0;
    width: 90%;
    height: 240px;
    background: #012218d4;
}

@media (max-width: 991.98px) { 
    .category-list .category-item .overlay{
    height: 260px;
}
 }

.category-list .category-item .content{
    position: absolute;
    top: 110px;
    left: 0;
    width: 90%;
    padding-left: 14px;
    height: 220px;
}

.category-list .category-item .content .title{
    font-size: 1.5rem;
    text-align: left;
    color: white;
    line-height: 1.7rem;
    height: 82px;
    display: flex;
    align-items: end;
}

.category-list .category-item .content .text{
    font-size: 13px;
    line-height: 14px;
    color: white;
    margin-top: 12px;
    width: 75%;
}

.category-list .category-item img{
    transition: ease-in-out 1s;
}

.category-list .category-item:hover img{
    scale: 1.1;
}

.category-list .category-item .icon{
    position: absolute;
    right: 12px;
    height: 70px;
    bottom: 10px;
}

.category-list .category-item .info{
    margin-top: 12px;
    font-size: 12px;
    color: white;
    border-bottom: 2px white solid;
    width: fit-content;
    margin-right: 17px;
    width: auto;
    max-width: 0%;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 1s linear;
}

.category-list .category-item:hover .info{
    max-width: 50%;
}

.category-list .category:last-of-type{
    display: none;
}

/* HOME CATEGORIES */

.categories-home .category-item{
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
    overflow: hidden;
}
.categories-home .category-item .overlay{
    position: absolute;
    top: 90px;
    left: 0;
    width: 90%;
    height: 240px;
    background: #012218d4;
}

@media (max-width: 991.98px) { 
    .categories-home .category-item .overlay{
    height: 260px;
}
 }

.categories-home .category-item .content{
    position: absolute;
    top: 110px;
    left: 0;
    width: 90%;
    padding-left: 14px;
    height: 220px;
}

.categories-home .category-item .content .title{
    font-size: 1.5rem;
    text-align: left;
    color: white;
    line-height: 1.7rem;
    height: 82px;
    display: flex;
    align-items: end;
}

.categories-home .category-item .content .text{
    font-size: 13px;
    line-height: 14px;
    color: white;
    margin-top: 12px;
    width: 75%;
}

.categories-home .category-item img{
    transition: ease-in-out 1s;
}

.categories-home .category-item:hover img{
    scale: 1.1;
}


.categories-home .category-item .icon{
    position: absolute;
    right: 12px;
    height: 70px;
    bottom: 10px;
}

.categories-home .category-item .info{
    margin-top: 12px;
    font-size: 12px;
    color: white;
    border-bottom: 2px white solid;
    width: fit-content;
    margin-right: 17px;
    width: auto;
    max-width: 0%;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 1s linear;
}

.categories-home .category-item:hover .info{
    max-width: 50%;
}

/* PRODUCT LIST */

.products-list{

}

.products-list .product{
     margin-bottom: 16px;
    overflow: hidden;
    position: relative;
}


.products-list .product{
    
}
/* Product List flip card */

.flip-card {
    background-color: transparent;
    height: 200px;
    perspective: 1000px;
    margin: 20px auto;
    display: block
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform .8s;
    transform-style: preserve-3d;
    display: block
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg)
}

.flip-card-front,.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    overflow: hidden
}

.flip-card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.flip-card-front .image-container {
    width: 100%;
    height: 80%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.flip-card-front .card-title {
    padding: 15px;
    font-size: 1.2rem;
    color: #337ab7;
    font-weight: bold
}

.flip-card-back {
    background: black;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1rem;
    text-align: center;
}

.card{

}

.card-inner{

}

.card-front{

}
.card-back{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out 0s;
    font-size: 0.9em;
    line-height: 1.6em;
}


.card-inner:hover .card-back{
    opacity:1;
}


.products-list .product .text{
    position: absolute;
    bottom:0;
    left:0;
    background: rgba(1, 34, 24, 0.7);
    width:100%;
    padding: 10px 10px;
}

.products-list .product .text .valla{
    font-size: 1.2rem;
    color: white;
    line-height: normal;
    display: flex;
    align-items: end;
    text-transform: uppercase;
}

.products-list .product .text .nombre{
    color: white;
    text-transform: uppercase;
    line-height: 18px;
    padding-bottom: 8px;
    font-size: 0.8em;
}

.products-list .product .text .destacar{
    font-size: 13px;
    line-height: 14px;
    color: white;
    width: 85%;
}



/* PAGINA DE DETALLE */
.product-title{
        background: var(--color-grey);
}

.product-title .title{
    font-size: 26px;
    color: var(--color-gray);
    text-transform: capitalize;
}

.product-title .title:hover{
    font-size: 26px;
    color: var(--color-primary);
}
.product-detail{

}

.product-detail .title.h1{
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 36px;
}

.product-detail .left{
    padding-right: 100px;
}
@media (max-width: 991.98px) { 
    .product-detail .left{
        padding-right: 0px;
        margin-bottom: 60px;
    }
}

.product-detail .left .section{
    margin-bottom: 26px;
}

.product-detail .left .section .section-title{
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #08664e;
    font-family: 'Open-Sans', sans-serif;
}

.product-detail .left .section .section-content{

}

.product-detail .left .section.a-destacar .section-content ul{
    list-style: none;
    padding: 0;
}
  
.product-detail .left .section.a-destacar .section-content ul li {
    padding-left: 1.3em;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: start;
    padding-bottom: 8px;
  }
  
  .product-detail .left .section.a-destacar .section-content ul li:before {
    content: "\21";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    margin-left: calc( 1.3em * -1 );
    width: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    transform: rotate(12deg);
    font-size: 22px;
    line-height: 22px;
  }
  .product-detail .left .section.caracteristicas .section-content .section-text{
    margin-bottom: 32px;
  }

  .product-detail .left .section.caracteristicas .section-content .section-text p{
    margin-bottom: 10px;
    line-height: 19px;
  }

  .product-detail .left .section.caracteristicas .section-video iframe{
    width: 100%;
    min-height: 428px;
  }

.product-detail .right .section.image{
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-primary);
}

.product-detail .right .section.informacion{
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-primary);
}

.product-detail .right .section.informacion .section-title{
    margin-bottom: 14px;
    color: #08664e;
    font-family: 'Open-Sans', sans-serif;
}

.product-detail .right .section.informacion .section-content{
    display: flex;
    margin-top: 24px;
}

.product-detail .right .section.informacion .section-content .document{
    width: 25%;
    padding-right: 12px;
}

.product-detail .right .section.informacion .section-content .document .doc-item{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.product-detail .right .section.informacion .section-content .document .doc-item img{
    height: auto;
    max-height: 60px;
}

.product-detail .right .section.informacion .section-content .document .doc-item .doc-name{
    font-size: 14px;
    margin-top: 8px;
    line-height: 16px;
    color: var(--color-text);
    max-width: 90px;
}

.product-detail .right .section.informacion .section-content .document .doc-item:hover .doc-name{
    color: var(--color-primary);
}

.product-detail .right .section.colores{
    padding-bottom: 32px;
    padding-top: 32px;
    border-bottom: 1px solid var(--color-primary);
}

.product-detail .right .section.colores .color-title h6{
    color: var(--color-primary);
    text-align: left;
    margin: 0 auto;
    margin-top: 0px;
    width: 100%;
    font-family: 'Open-Sans', sans-serif;
}

.product-detail .right .section.colores .section-content .colors-content{
    display: none;
}

.product-detail .right .section.colores .section-content .colors{
    display: flex;
    justify-content: left;
    border: 0;
    margin-top: 40px;
}

.product-detail .right .section.colores .section-content .colors .color{
    border: 0;
    color: #a8a8a8;
    padding-bottom: 4px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    position: relative;
    width: 20%;
}

.product-detail .right .section.colores .colors .color img{
    height: 200px;
    width: 100%;
    padding: 2px;
}

.product-detail .right .section.colores .colors .color span{
    position: absolute;
    bottom: 4px;
    right: 2px;
    color: white;
    text-shadow: 0px 0px 6px black;
    font-size: 10px;
}
.product-detail .right .section.colores .colors .color span.dark-text{
    color: var(--color-text);
    text-shadow: none;
}




.product-detail .right .section.contact{
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
    padding-top: 32px;
}

.product-detail .center{

}

.product-detail .center .section{
    padding-bottom: 28px;
}



.product-detail .center .section.proyectos .section-title{
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin-top: 22px;
    margin-bottom: 32px;
    text-transform: uppercase;
    font-family: 'Open-Sans', sans-serif;
}

.product-detail .center .section.proyectos .section-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.product-detail .center .section.proyectos .section-list li{
    width: 33.3333%;
    height: 340px;
    padding: 2px;
}
.product-detail .center .section.proyectos .section-list li:last-of-type{
    width: 66.6666%;
}

.product-detail .center .section.proyectos .section-list li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.company{
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
}



.company .title{
    margin: 0 auto;
    margin-bottom: 26px;
    display: block;
    color: var(--color-primary);
}

@media (max-width: 767.98px) {
    .company .title{
       text-align: center;
    }
 }

.company .image-container{
    position: relative;
    margin: 0;
    padding: 0;
}

.company .content{
    margin: 0 auto;
}

.company .content .image{
    position: absolute;
    width: 50%;
    left: 0;
    margin: 0;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    
}
@media (max-width: 767.98px) {
    .company .content .image{
        position: relative;
        width: 100%;
        left: unset;
        margin: 0;
        padding: 0;
        top: unset;
        transform: unset;
        height: auto;
        margin-left: -1.5rem;
        margin-bottom: 22px;
    }
 }
.company .content .image img{
    border-radius: 0px 30px 30px 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.company .content .text-content{
    padding: 0px 0px 0px 24px;
}

.company .content .text-content .first-text{
    
}
.company .content .text-content .company-categories{
    
}

.company .content .text-content .company-categories ul{
    
}

.company .content .text-content .company-categories li{
    border-left: 7px solid;
    margin: 12px 0;
    border-bottom: 2px solid;
    padding-left: 6px;
    font-weight: bold;
    transition: ease-in-out .5s;
}
.company .content .text-content .company-categories li:hover{
    scale: 1.02;
}

.company .content .text-content .company-categories li a{
    color: var(--color-text);
}
.company .content .text-content .company-categories li.none{
    display: none;
    
}
.company .content .text-content .company-categories li.green{
    border-color: #95b43e;
}
.company .content .text-content .company-categories li.orange{
    border-color: #ff8a29;
}
.company .content .text-content .company-categories li.magenta{
    border-color: #6e1533;
}
.company .content .text-content .company-categories li.blue{
    border-color: #4cc0eb;
}
.company .content .text-content .company-categories li.purple{
    border-color: #443769;
}
.company .content .text-content .company-categories li.gray{
    border-color: #78a7b8;
}
.company .content .text-content .last-text{
    
}


@media (max-width: 991.98px) { }