/*********************  Default-CSS  *********************/
:root {
    scroll-behavior: unset;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.3;
}
a, span, a:hover, a:active, button {
    text-decoration: none;
}
a, div a:hover, div a:active, div a:focus, button {
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
p {
    margin: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
    margin: 0;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
}
.mt-6 {
    margin-top: 5em;
}
.cm-overflow, .cm-overflow body, .modal-open {
    overflow: hidden;
    touch-action: none;
}
.modal-open {
    height: 100%;
    width: 100%;
}
.row {
    margin: 0 -15px;
}
.container {
    padding: 0 15px;
}
.col, [class*=col-] {
    padding: 0 15px;
}
/*********************  Default-CSS close  *********************/

/********************  Header Css Start  *********************/
.dummy_div {
    padding-top: 120px;
}

.sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* animation: slide-down 0.6s; */
}

.sticky.fixed {
    position: fixed;
    z-index: 99;
    animation: slide-down 0.6s;
    padding: 10px 40px;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 21%);
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}
.main_wrapper {
    overflow: hidden;
}
.menu_toggle_btn {
    display: none;
}
header {
    padding: 20px 0;
    position: relative;
}
.in_header_block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.menu_block > ul {
    display: flex;
    align-items: center;
}
.menu_block > ul > li > a {
    font-size: 20px;
    color: #000;
    position: relative;
    padding: 0 5px;
    font-weight: 100;
}
/* .menu_block > ul > li:not(:last-child) {
    margin-right: 140px;
} */
.menu_block > ul > li:not(:last-child) {
    margin-right: 80px;
}
/* .logo_hold img {
    max-width: 115px;
} */
.logo_hold img {
    max-width: 80px;
}
/* .cinfa_logo img {
    max-width: 140px;
} */
.cinfa_logo img {
    max-width: 110px;
}
.menu_block > ul > li > a img {
    max-width: 20px;
}
.menu_block {
    margin-bottom: 15px;
}
.menu_block > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 5px;
    background-color: #000;
    transition: all 0.4s ease-in-out 0s;
}
 .menu_block > ul > li > a:hover::before,  .menu_block > ul > li:hover > a::before {
    width: 100%;
}
/* .menu_block > ul > li{
    margin-bottom: -60px;
    padding-bottom: 60px;
} */
.menu_block > ul > li {
    margin-bottom: -60px;
    padding-bottom: 50px;
}
.mega_menu_block{
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.mega_col_4 {
    width: 33.333%;
}
.mega_menu_wrap {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    padding: 35px 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
}
.menu_block > ul > li:hover .mega_menu_wrap {
    opacity: 1;
    visibility: visible;
}
.mega_box h3 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.mega_box h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}
.mega_box h4::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #000;
}
.mega_box p {
    font-size: 14px;
    font-weight: 400;
}
.mega_box {
    padding:0 55px;
    position: relative;
}
.mega_box_1.mega_box h4::after {
    background-color: #f18a00;
}
.mega_box_2.mega_box h4::after {
    background-color: #878787;
}
.mega_col_4:not(:last-child)  {
   border-right: 1px solid #000;
}

.inner-mega_menu_wrap{
    position: relative;
}
.inner-mega_menu_wrap:hover .innre_menu_open{
    opacity: 1;
    visibility: visible;
}
.innre_menu_open{
    background-color: rgb(255 255 255 / 100%);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 50px;
    width: 100%;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}
.innre_menu_open > ul > li + li{
    
    margin-top: 5px;
}
.innre_menu_open > ul > li > a,
.user_menu_list > ul > li > a{
    color: #000000;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
}
.innre_menu_open > ul > li > a:hover,
.user_menu_list > ul > li > a:hover{
    font-weight: 700;
}
.innre_menu_open_item {
    padding-left: 20px;
}
.innre_menu_open_item > li > a{
    color: #000000;     
}
.innre_menu_open_item > li > a:hover{
    font-weight: 700;
}
.user_menu_list{
    padding: 15px 20px;
}
.user_menu_item{
    position: relative;
}
.user_menu_list{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    z-index: 99;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
}
.user_menu_item:hover .user_menu_list{
    opacity: 1;
    visibility: visible;
}
.splide__slide img {
    width: 100% !important;
}
/********************  Mobile Menu Css Start *********************/
.menu_toggle_btn span {
    width: 100%;
    height: 2px;
    background-color: #1d1d1b;
    transition: all 0.5s ease 0s;
}
.open_menu .menu_toggle_btn span {
    background-color: #2B2A35;
}
/********************  Mobile Menu Css Close *********************/
/* ------------- Header CSS END ----------*/
.splide__arrow {
    background-color: transparent;
    width: 3.5em;
    height: 3.5em;
    opacity: 1;
}
.splide__arrow:disabled{
    opacity: 1;
}
.splide__pagination__page {
    background-color: transparent;
    border: 1px solid #000;
    width: 10px;
    height: 10px;
    margin: 1px;
}
.splide__pagination__page.is-active{
    transform: scale(1);
    background-color: #000;
    opacity: 1;
}
.splide__pagination{
    bottom: 20px;
}

footer {
    background-color: #1d1d1b;
    padding: 70px 0;
}
.footer_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_social ul{
    display: flex;
}
.footer_social ul li:not(:last-child) {
    margin-right: 25px;
}
.footer_social ul li a {
    display: inline-block;
}
/* .footer_social ul li a img {
    max-width: 55px;
} */
.footer_social ul li a img {
    max-width: 45px;
}
.footer_social ul li a:hover {
    transform: translateY(-5px);
}

.footer_menu ul{
    display: flex;
    flex-wrap: wrap;
}
.footer_menu ul li:not(:last-child) {
    position: relative;
    margin-right: 15px;
}
.footer_menu ul li:not(:last-child):after {
    content: '';
    position: absolute;
    right: -8px;
    top: 2px;
    width: 1px;
    height: 85%;
    background-color: #fff;
}
.footer_menu ul li a {
    font-size: 18px;
    color: #fff;
}
.footer_menu ul li a:hover {
    opacity: 0.7;
}
.footer_menu p,
.footer_menu p a{
    text-align: center;
    font-weight: 300;
    color: #fff;
    margin-top: 5px;
    font-size: 17px;
}
.footer_menu p a:hover{
    opacity: 0.8;
}
/* .footer_cinfa_logo img{
    max-width: 140px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
} */
.footer_cinfa_logo img {
    max-width: 120px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}



/* ----------------------- Arrugas Page Css Start -------------------- */
.arrugas_page .breadcrumbs_sec{
    padding-bottom: 117px;
}
.breadcrumbs_sec{
    padding: 30px 0 0;
}
.breadcrumbs_list{
    display: flex;
    align-items: center;
    padding-bottom: 137px;    
}
.breadcrumbs_list li span{
    padding: 0 10px;
    display: inline-block;
}
.breadcrumbs_list li p,
.breadcrumbs_list li span{
    font-size: 18px;
}
.breadcrumbs_list li:last-child p{
    font-weight: 800; 
}
.page_title_wrap{
    font-weight: 500;
    font-size: 62px;
}
body.be_energifique_page .page_title_wrap {
    font-weight: 300;
    font-size: 40px;
}
.main_title_box{
    font-size: 24px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.main_title_box span {
  background-color: #fff;
  padding-right: .5rem;
  z-index: 1;
}
.main_title_box::before{
    content: '';
    position: absolute;
    bottom: 8px;
    right: 0;
    height: 2px;
    width: 100%;
    z-index: -1;
}
.antiarrugas_text{
  color: #9bc7cf;
}
.antiarrugas_text::before{
    background-color: #9bc7cf;
    width: 76%;
}
.primeras_text{
    color: #cdb4c1;
}
.primeras_text::before{
    background-color: #cdb4c1;
    width: 39%;
}
.main_sun_title_box{
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
}
.cm_row{
    padding-top: 80px;
    /* margin: 0 -55px; */
    margin: 0 -15px;
}
.cm_col_3{
    padding: 0 30px;
    margin-bottom: 50px;
}
.cm_col_3:not(:last-child){
    border-right: 1px solid #dadada;
}
.cm_col_3:nth-child(4){
    border: 0;    
}
.product_card_img{
    padding-bottom: 30px;
    margin-bottom: 25px;
    position: relative;
}
.product_card_img > a{
    display: inline-block;
}
.product_card_img::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 5px;
    background-color: #000;
    transition: all 0.4s ease-in-out 0s;
}

.product_sec.fotoproteccion .product_card_img::before,
.combinalo_sec.fotoproteccion .product_card_img::before{
  background-color: #f18a00;
}

.product_sec.otras-problematicas .product_card_img::before,
.combinalo_sec.otras-problematicas .product_card_img::before,
.product_sec.cuidados-especificos .product_card_img::before,
.combinalo_sec.cuidados-especificos .product_card_img::before {
  background-color: #878787;
}

.cm_col_3:hover .product_card_img::before{
  width: 100%;
}
.cm_col_3.remove-hover:hover .product_card_img::before{
  width: 0;
}
.product_card_content h3{
    font-size: 19px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 5px;
}
.product_card_content h6{
    font-weight: 100;
    font-size: 16px;
    margin-bottom: 17px;
    line-height: 1.2;
}
.sun_moon_icon{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.sun_moon_icon li{
    width: 27px;
    height: 27px;
    margin-right: 2px;
}
.cn_number{
    font-size: 14px;
    color: #000000;
    font-weight: 100;
}
.product_card_padding_top{
    padding-top: 120px;
}
.product_card_padding_top02 {
    padding-top: 55px;
}
.combinalo_sec .product_card_padding_top02 {
    /* padding-top: 170px; */
    padding-top: 130px;
}
.combinalo_sec{
    margin-top: 60px;
    background-color: #f6f6f6;
    padding-top: 80px;
}
.combinalo_text_box{
    font-weight: 600;
}
/* ----------------------- Arrugas Page Css End -------------------- */

/* ----------------------- Booster Ultra Page Css Start -------------------- */
.booster_ultra_page .breadcrumbs_list {
    padding-bottom: 107px;
}
.booster_ultra_page .cm_col_3 {
    padding: 0 30px;
    /* padding: 0 45px; */
}
.booster_ultra_page .cm_row {
    margin: 0 -15px;
}
/* ----------------------- Booster Ultra Page Css End -------------------- */

/* ----------------------- Be Energifique Page Css Start -------------------- */
.be_energifique_page .breadcrumbs_list {
    padding-bottom: 55px;
}
.be-energifique-details{
    padding-top: 20px;
    border-top: 3px solid #000000;
    margin-bottom: 65px;
}
.be-energifique-details > h3{
    font-size: 19px;
    font-weight: 600;
}
.be-energifique-details > h2{
    font-weight: 100;
    font-size: 33px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.be-energifique-details > .description {
  font-size: 17px;
  font-weight: 400;
}

/* FAQ Css Start */
.accordion-container {
    position: relative;
    max-width: unset;
    height: auto;
    margin: 0;
}
.accordion-container > h2{
    text-align: center;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.set{
    position: relative;
    width: 100%;
    height: auto;
    background-color: transparent;
}
.set + .set{
    margin-top: 30px;
}
.set > a {
    display: block;
    padding: 0 0 5px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    border-bottom: 1px solid #000000;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 19px;
    text-transform: uppercase;
}
.set > a i{
    float: right;
    margin-top: 2px;
    font-size: 14px;
}
.set > a.active{
    background-color: transparent;
}
.content{
    background-color: #fff;
    display:none;
}
.faq_content_wrap{
    padding: 10px 0;
    margin: 0;
    color: #333;
}
.faq_content_wrap .cn_number {
    font-size: 17px;
    display: flex;
}
.faq_content_wrap .cn_number + .cn_number{
    margin-top: 5px;
} 
.faq_icon{
    font-size: 22px;
    color: #000000;
    font-weight: 700;
    line-height: 1; 
    margin-right: 5px;  
}
.faq_content{
    font-size: 17px;
    color: #000000;
    font-weight: 500;
}
.faq_content b{
    font-weight: 700;    
}
.sun_icon_wrap{
    margin: 60px 0 25px;
    width: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
}
.sun_icon_wrap img{
    width: 65%;
}
.cn_number_wrap > p{
    font-size: 18px;
}
.cn_number_wrap > h6{
    font-size: 18px;
    color: #000000;
    font-weight: 700; 
    margin-bottom: 3px;
}
.beEnergifique_img_wrap{
    padding-left: 50px;
}
.beEnergifique_content_wrap{
    padding-right: 50px;
}
.be_energifique_page .breadcrumbs_list li p,
.be_energifique_page .breadcrumbs_list li span,
.be_energifique_page .breadcrumbs_list li a {
  color: #000;
  font-size: 14px;
}
/* FAQ Css End */
/* ----------------------- Be Energifique Page Css End -------------------- */

/*==================== Contact Page CSS Start ===================*/
.contact_block {
    padding: 90px 0 200px;
}
.contact_banner {
    width: 100%;
    background-image: url(../images/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    background-position: right center;
}
.contact_title h1 {
    font-size: 60px;
}
.contact_wrap {
    padding-top: 90px;
}
.contact_left_content {
    max-width: 465px;
}
.contact_sub_title h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 3px solid #000;
    padding-top: 12px;
    margin-bottom: 20px;
}
.common_info_call a{
    font-size: 18px;
    color: #000;

}
.common_info_call a:hover {
    opacity: 0.7;
}
.common_info_call img {
    max-width: 20px;
    margin-right: 8px;
    vertical-align: middle;
    margin-top: -2px;
}
.ofcinas_call {
    margin-top: 50px;
}
.atenction_call p + p{
    margin-top: 10px;
}
.common_input input, .common_input textarea {
    width: 100%;
    height: 80px;
    border: 0;
    border-bottom: 1px solid #000;
    background-color: transparent;
    font-size: 18px;
    appearance: none;
    border-radius: 0;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    vertical-align: top;
    display: flex;
    align-items: flex-start;
    padding: 0px 0 30px 0;
}
.common_input input::-webkit-input-placeholder, .common_input textarea::-webkit-input-placeholder {
    color: #000;
    text-transform: uppercase;
}
input:focus, button:focus, textarea:focus {
    outline: none;
}
.common_input textarea {
    height: 220px;
    resize: none;
}
.common_input + .common_input {
    margin-top: 30px;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    color: #000;
}
[type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 100%;
    background: #fff;
}
[type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    top: 6px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.cm_checkbox label a{
    font-weight: 600;
    color: #000;
    text-decoration: underline;
}
.cm_checkbox {
    margin-top:40px;
}
.submit_btn {
    margin: 50px 0;
}
.submit_btn button{
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    padding: 11px 15px;
    text-align: center;
    border: 0;
}
.submit_btn button:hover {
    transform: translateY(-5px);
}
.submit_btn button:disabled {
  background-color: #878787;
}
.submit_btn button:disabled:hover {
  transform: none;
}


.term_codition_info p{
    font-size: 14px; 
}
.term_codition_info p a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
}
/*==================== Contact Page CSS End ===================*/


/*==================== Conoce tu piel Page CSS Start ===================*/
.know_your_hero{
    position: relative;
    height: 600px;    
    max-width: 1920px;
    background-image: url(../images/know-your-hero-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0 auto;
    align-items: center;
}
.know_your_hero_content h2,
.know_your_hero_content h1{
    font-weight: 300;
    font-size: 36px;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 33px;
}
.know_your_hero_content h2 {
    font-weight: 200;
    font-size: 42px;
}
.know_your_hero_content h2 span{
    text-transform: lowercase;    
}
.know_your_hero_content h1{
    font-weight: 800;
    margin: 0;
    max-width: 580px;
}
body.page-template-page-conoce-tu-piel .know_your_hero_content h2 {
    font-size: 36px;
}
.disfruta_de_una_sec{
    padding: 80px 0 85px;
}
.disfruta_de_una_content{
    height: 355px;
    background-image: url(../images/fondo-destacado.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.disfruta_de_una_content h2{
    font-weight: 100;
    font-size: 30px;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 25px;
}
.disfruta_de_una_content h3{
    font-weight: 100;
    font-size: 25px;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 28px; 
}
.disfruta_de_una_content h4{
    font-weight: 700;
    font-size: 25px;
    color: #000000;
    line-height: 1.2; 
}
.kone_your_sec_title{
    position: relative;
    text-align: center;
    margin-bottom: 90px;
}
.kone_your_sec_title::before{
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1d1d1b;
    z-index: 0;
}
.kone_your_sec_title h2{
    font-weight: 700;
    font-size: 25px;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2; 
    background-color: #fff;
    padding: 0 13px;
    position: relative;
    z-index: 9;
    display: inline-block;
}
.kone_your_skin_page .cm_row{
  justify-content: center;
}
.kone_your_skin_page .product_card_content h3 {
    margin-bottom: 10px;
    font-size: 15px;
}
.kone_your_skin_page .product_card_content h2{
    font-weight: 200;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}
.kone_your_skin_page .cm_col_3 {
    padding: 0 30px;
    margin-bottom: 50px;
}

.conoce-tu-piel .cm_col_3 {
    text-align: center;
}

.kone_your_skin_page .cm_row {
    padding-top: 0;
    margin: 0 -15px;
}
.kone_your_skin_page .product_card_img {
    padding-bottom: 13px;
    margin-bottom: 15px;
}
.disgnosticos_section{
    padding-bottom: 30px;    
}
/*==================== Conoce tu piel Page CSS End ===================*/


/*==================== La marca Page CSS Start ===================*/
.la_marca_page .know_your_hero{
    background-image: url(../images/la-marca-hero-bg.png);
}
h2.la_marca_sub-titel{
    font-size: 36px;
    font-weight: 200;
    margin: 33px 0 0;
}
.know_your_hero_content h1 span{
    text-transform: lowercase;
}
.innovadora_section{
    padding: 75px 0 0;
}
.innovadora_sec_title{
    margin-bottom: 85px;
}
.innovadora_sec_title h2{
    font-weight: 600;
    margin: 0;
    font-size: 40px;
}
.innovadora_sec_title h3{
    font-weight: 100;
    font-size: 40px;
    color: #000000;
    line-height: 1.2;
}
.innovadora_sec_title h4 {
    font-weight: 600;
}
body.page-template-page-conoce-tu-piel .innovadora_sec_title h2,
body.page-template-page-conoce-tu-piel .innovadora_sec_title h3 {
  font-size: 34px;
}

body.page-template-page-la-marca .innovadora_sec_title h2,
body.page-template-page-la-marca .innovadora_sec_title h3 {
    font-size: 34px;
}

.la_marca_page.kone_your_skin_page .product_card_content h3 {
    font-size: 19px;
    margin-bottom: 5px;
}
.innovadora_text{
    font-weight: 100;
    font-size: 18px;
    line-height: 1.2;
    padding: 0 0 15px;
    margin: 0 0 10px;
    position: relative;
}
.innovadora_text_before::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #000000;
}
.innovadora_text:last-child{
    padding: 0;
    margin: 0;
}
/*==================== La marca Page CSS End ===================*/

.menu_block li.active a::before{
    width: 100%;
}

.hero_product_wrap{
    position: relative;
    text-align: center;
}
.cm_con{
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    text-align: left;
}
.innre_hero_title_wrap{
    width: 250px;
}

.antiedad.innre_hero_title_wrap {
  width: 300px;
}

.cuidados-especificos.innre_hero_title_wrap {
  height: 110px;
  width: auto;
}

.cuidados-especificos.piel-danada.innre_hero_title_wrap {
  height: 75px;
}

.p1, .p2 {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.2;
  margin-top: 0.5em;
}

.content p {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.2;
  margin-top: 0.5em;
}

.content p strong,
.content p b {
  font-weight: 500;
}

.p2 {
  margin-left: 0.5em;
}

/*==================== privacy policy Page CSS Start ===================*/
.privacy_policy_wrap{
  padding: 120px 0;
}
.privacy_policy_wrap .page_title_wrap{
  font-weight: 700;
  margin-bottom: 20px;
}
.privacy_policy_wrap .page_sub_title_wrap{
  margin-top: 50px;
  font-size: 35px;
  font-weight: 600;
}
.privacy_policy_wrap .privacy_policy_content > p,
.privacy_policy_wrap .privacy_policy_content ul li,
.privacy_policy_wrap .privacy_policy_content ol li,
.listing_wrap P{
  font-size: 16px;
  font-weight: 100;
  color: #000;
  line-height: 1.5;
  margin-bottom: 15px;
}
.privacy_policy_wrap .privacy_policy_content > b{
  font-weight: 400;
}
.privacy_policy_wrap .privacy_policy_content > a,
.listing_wrap a{
  text-decoration: none;
  color: #878787;
}
.privacy_policy_wrap .privacy_policy_content > a:hover,
.listing_wrap a:hover{
  text-decoration: underline;
}
.privacy_policy_wrap .privacy_policy_content h2 {
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 8px;
}

.listing_wrap{
  padding-left: 20px;
}
.listing_wrap li{
   margin: 10px;
   list-style: circle;
}
.listing_wrap p{
  font-size: 18px;
}
/*==================== privacy policy Page CSS End ===================*/

.sun_icon_wrap.moon_flex_wrap{
  display: flex;
  align-items: center;
}
.sun_pd{
  margin-right: 5px;
}

#button {
    display: inline-block;
    background-color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    right: 20px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 1px 9px 14px -6px #838080;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.la_gama{
  margin-bottom: 50px;
}
.section_title{
  margin-bottom: 30px;
}
.la_gama .section_title h2 {
  font-size: 42px;
  font-weight: 300;
}

.la_gama_content h3{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.riesgos_block{
  justify-content: space-between;
}
.uvb_box{
  width: 595px;
}
.riesgos_content {
  width: 320px;
  padding-top: 10px;
}
.riesgos_label{
  width: 175px;
}

.riesgos_content h4{
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 3px;
}
.riesgos_content p{
  font-size: 18px;
  font-weight: 100;
}

.modal-body p {
  font-weight: 100;
}

.modal-body h4 {
  font-size: 19px;
}

img.backgrond {
    margin: 0 auto;
}

img.is-fullwidth {
  width: 100%!important;
}