@-moz-keyframes show-section {
    0% {
        opacity:0;
    }
    50% {
        opacity:0.5;
    }
    100% {
        opacity:1;
    }
}
@-o-keyframes show-section {
    0% {
        opacity:0;
    }
    50% {
        opacity:0.5;
    }
    100% {
        opacity:1;
    }
}
@-webkit-keyframes show-section {
    0% {
        opacity:0;
    }
    50% {
        opacity:0.5;
    }
    100% {
        opacity:1;
    }
}
@keyframes show-section {
    0% {
        opacity:0;
    }
    50% {
        opacity:0.5;
    }
    100% {
        opacity:1;
    }
}

.sectionProducts {
    display: inline-block;
    height: auto;
    padding: 60px;
    position: relative;
    vertical-align: top;
    width: -moz-calc(60% - 32px);
    width: -o-calc(60% - 32px);
    width: -webkit-calc(60% - 32px);
    width: calc(60% - 32px);
}

.sectionImg {
    width: -moz-calc(40% - 32px);
    width: -o-calc(40% - 32px);
    width: -webkit-calc(40% - 32px);
    width: calc(40% - 32px);
    padding: 100px 0;
}

.sectionImg img{
    width:100%;
}

.page--products .item__menu {
    display: inline-block;
    margin-left: 15px;
    cursor: pointer;
    position:relative;
}

.item__menu:first-child {
    margin-left: 0;
}
.item__menu.active::before {
    content: "";
    position: absolute;
    bottom: -6px;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #d6394c;
}
.page--products .header__title {
    margin-bottom: 0;
}
.title_section  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.title_section .section__title{
    margin-bottom: 0px;
}

.title_section img{
    max-width:20%;
}
.page--products .list__item {
    position: relative;
    padding-left: 18px;
}
.article__ul {
    margin-bottom: 30px;
}
.section-products__row {
    display: -webkit-flex;
    -webkit-flex-direction: row;
    display: flex;
    flex-direction: row;
}
.section-products__col-6:first-child {
    padding-right: 15px;
    border-right: 1px solid #e5e5e5;
}
.section-products__col-6:last-child {
    padding-left: 15px;
}
.no-padding {
    padding:0px;
}
.hideSection{
    display:none;
}

.showSection {
    display:block;
    -webkit-animation: show-section 1s ease-in;
    -moz-animation: show-section 1s ease-in;
    -ms-animation: show-section 1s ease-in ;
    animation: show-section 1s ease-in;
}


.items_menu {
    display: inline-block;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 6px;
}
.p-relative{
    position:relative;
}



/* PRODUCT PAGES */
.page--products {
    min-height: -moz-calc(100vh - 126px);
    min-height: -o-calc(100vh - 126px);
    min-height: -webkit-calc(100vh - 126px);
    min-height: calc(100vh - 126px);
    display: inline-block;
    width: 100%;
}

.page--products .section {
    max-width: 1100px;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .page--products {
        padding: 20px;
    }
    
    .title_section {
        padding: 40px 0;
    }
    .home__section .section__title, .social-footer__title, .header__title {
        width: 100%;
    }
    .sectionProducts{
        width: 100%;
        padding: 0 0 20px 0;
    }
    .section__title {
        display: none;
    }
    .sectionImg{
        display:none;
    }

    .showSection {
        display:block;
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation:none;
        animation: none;
    }
    .title_section img {
        display: none;
    }
    .btnMenuProducts {
        width: 100%;
        margin-left: 0;
    }
    .section-products__row {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .section-products__col-6:first-child {
        padding-right: 0;
        border-right: none;
    }
    .section-products__col-6:last-child {
        padding-left: 0;
    }
}