:root {
    --roboto: 'Roboto', sans-serif;
    --lato: 'Lato', sans-serif;
    --primario: #E69A03;
    --prim-hover: #a36f00;
    --gris: #404040;
    --gris-secundario: #f6f6f6;
    --wrong: #f23400;
    --verde: #067703;
    --sombra: 5px 5px 6px 1px rgba(0,0,0,0.3);
}
html {
    box-sizing: border-box;
    font-size: 62.5%
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    margin: 0;
    padding: 0;
    line-height: 2;
    font-size: 2rem;
}
header {
    background-image: url(../images/inicio-21.jpg);
    background-position: center center;
    background-size: cover;
    height: 100vh;
    min-height: 60rem;
}
.header-contenedor {
    display: flex;
    flex-direction: column;
}
.slogan {
    font-family: var(--lato);
    color: #fff;
    font-size: 4rem;
    width: 48%;
    height: 100vh;
    margin-left: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .slogan {
        font-size: 2rem;
        width: 90%;
        margin-left: 2rem;
        text-align: center;
    }
}
.slogan .slogan-texto {
    flex: 0 0 50%;
}
.slogan p {
    line-height: 5rem;
}

/** ===================== BARRA DE NAVEGACION ======================= **/
.nav-bars, .menu-nav-movil {
    display: none;
}
nav {
    padding: 2rem 2rem 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid var(--primario);
}
@media (max-width:768px) {
    .nav-bars{
        display: flex;
        align-items: center;
    }
    .nav-bars svg {
        color: #fff;
        height: 100%;
    }
    .menu-nav{
        display: none;
    }
    nav {
        padding: 2rem;
    }
}
nav .logo {
    height: 5.8rem;
}
.logo a img {
    height: 100%;
}
nav .menu-nav {
    flex: 0 0 70rem;
}
@media (max-width:768px) {
    nav .menu-nav {
        flex: 0 0 0;
    }
}
nav .menu-nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
}
@media (max-width:768px) {
    nav .menu-nav ul{
        flex-direction: column;
        padding: 0;
    }
}
.menu-nav ul li {
    position: relative;
    display: flex;
    flex: 1 1 100%;
}
.menu-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0%;
    background-color: var(--gris);
}
.menu-nav ul li:hover {
    background-color: var(--primario);
}
.menu-nav ul li:hover ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
}

ul li a {
    display: inline-block;
    width: 100%;
    font-family: var(--roboto);
    text-align: center;
    color: #fff;
    text-decoration: none;
}

/** ===================== NUESTROS PRODUCTOS ======================= **/

.contenedor {
    width: 95%;
    max-width: 120rem;
    min-height: 55rem;
    margin: auto;
    font-family: var(--lato);
    font-size: 1.8rem;
}
@media (max-width:768px){
    .contenedor {
        font-size: 1.5rem;
        padding: 0 2rem;
    }
}
h2 {
    text-align: center;
    font-family: var(--lato);
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--primario);
    font-weight: bold;
}
@media (max-width:768px) {
    h2{
        font-size: 2rem;
        margin-bottom: 0;
    }
    .contenedor-marcas{
        display: flex;
        flex-direction: column-reverse;
    }
}
.marcas {
    display: flex;
    justify-content: space-between;
}
@media (max-width:768px){
    .marcas{
        flex-direction: column;
    }
}
.marcas .marca {
    flex: 0 1 calc(30% - 1rem);
    text-align: center;
}
.marcas .marca p {
    font-weight: bold;
}
.marcas .marca .imagen {
    border: 1px solid var(--primario);
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
}
@media (max-width:768px){
    .marcas .marca .imagen{
        height: 18rem;
    }
}
.nuestras-marcas p {
    text-align: center;
}

/** ===================== SECCION TE AYUDAMOS ======================= **/

.seccion-cuidar {
    margin-top: 7rem;
    background-image: url(../images/cuidar-dark.jpg);
    background-position: center center;
    background-size: cover;
    min-height: 50rem;
}
@media (max-width:768px){
    .seccion-cuidar {
        min-height: 25rem;
    }
}
.cuidar {
    color: #fff;
    display: flex;
    justify-content: space-between;
    height: 50rem;
}
@media (max-width:768px){
    .cuidar {
        flex-direction: column-reverse;
        justify-content: center;
        height: auto;
    }
}
.cuidar .texto-cuidar {
    width: 30%;
    text-align: justify;
    background-color: rgba(6,119,3,0.7);
    padding: 1rem;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}
@media (max-width:768px) {
    .cuidar .texto-cuidar {
        width: 100%;
        background-color: rgba(81, 161, 78, 0);
        padding: 0;
        text-align: center;
    }
}
.cuidar .titulo-cuidar {
    font-size: 4rem;
    display: flex;
    align-items: center;
}
@media (max-width:768px){
    .cuidar .titulo-cuidar {
        font-size: 2rem;
        text-align: center;
    }
}

/** ===================== ULTIMAS NOTICIAS ======================= **/

.noticias {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
}
.noticia {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}
.noticia-impar {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
    text-align: end;
}
@media (max-width:768px){
    .noticia, .noticia-impar {
        flex-direction: column;
        text-align: start;
    }
}
.noticia h3, .noticia-impar h3 {
    color: var(--primario);
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}
@media (max-width:768px){
    .noticia h3, .noticia-impar h3 {
        font-size: 1.8rem;
    }
}
.noti {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.noticia-imagen img {
    width: 90%;
}
.noti-par {
    display: flex;
    justify-content: flex-start;
}
.noti-impar {
    display: flex;
    justify-content: flex-end;
}
@media (max-width:768px){
    .noti-impar{
        justify-content: flex-start;
    }
}
.texto-noticia .fecha {
    color: var(--verde);
}
.noticia-impar .texto-noticia .btn-impar {
    display: flex;
    flex-direction: row-reverse;
}
@media (max-width:768px){
    .noticia-impar .texto-noticia .btn-impar {
        flex-direction: row;
    }
}
.boton {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primario);
    width: 28rem;
    height: 6rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}
@media (max-width:768px){
    .ultimas-noticias .boton {
        width: 15rem;
        height: 4rem;
    }
}
.boton:hover {
    background-color: var(--prim-hover);
    cursor: pointer;
}

/** ===================== FOOTER ======================= **/

.footer-section {
    background-color: #000;
    padding: 1rem 0;
}
.footer {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.footer p {
    font-family: var(--lato);
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.little-bee a {
    color: #fff;
    text-decoration: none;
}

/** ===================== CATEGORIAS ======================= **/

.contenedor-categorias {
    padding-bottom: 10rem;
}
.contenedor-categorias .marca .marca-categoria {
    color: var(--primario);
}
.contenedor-categorias .marcas {
    flex-wrap: wrap;
}
.contenedor-categorias .marcas .marca-imagen:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px #666;
    transition: all .3s ease;
}

/** ===================== FOLLETO ======================= **/

.contenedor-folleto {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contenedor-folleto .folleto-img {
    width: 55rem;
    -webkit-box-shadow: var(--sombra);
    -moz-box-shadow: var(--sombra);
    box-shadow: var(--sombra);
}
.folleto-img {
    margin-right: 3rem;
    margin-left: 3rem;
}
.folleto-img img {
    width: 100%;
}
#arrowleft, #arrowright {
    cursor: pointer;
}
@media (max-width:768px) {
    #arrowleft .fa-3x, #arrowright .fa-3x {
        font-size: 2rem;
    }
}
#arrowleft:hover svg, #arrowright:hover svg, .regresar:hover svg {
    color: var(--prim-hover);
}
.regresar {
    margin: 4rem 0;
}
@media (max-width:768px){
    .regresar {
        margin-top: 8rem;
    }
}
.regresar a {
    text-decoration: none;
    color: #000;
}
#arrowleft svg, #arrowright svg, .regresar svg {
    color: var(--primario);
}
.arrowInactiva {
    display: none;
}

/** ===================== GALERIA-CATEGORIA ======================= **/

.contenedor-productos {
    margin-bottom: 10rem;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.contenedor-productos .producto {
    display: flex;
    width: 30%;
    margin-bottom: 3rem;
    box-shadow: var(--sombra);
}
.contenedor-productos .producto .descripcion-producto {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background-color: var(--primario);
    width: 45%;
}
.contenedor-productos .producto .fotografia-producto {
    width: 55%;
    height: 16rem;
}
.contenedor-productos .producto .fotografia-producto img {
    height: 100%;
    width: 100%;
}
.contenedor-productos .producto h4,
.contenedor-productos .producto p {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}
.contenedor-productos .producto p {
    line-height: 1.5rem;
}
.contenedor-fgaleria {
    margin-top: 10rem;
}


/** ===================== GALERIA ======================= **/

.contenedor-galeria {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
@media (max-width:768px) {
    .contenedor-galeria {
        flex-direction: column;
    }
}
.contenedor-galeria .contenedor-galeria-img {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width:768px) {
    .contenedor-galeria .contenedor-galeria-img {
        width: 100%;
    }
}
.contenedor-galeria-img .galeria-img {
    width: 100%;
    height: 18.8rem;
}
.contenedor-galeria-img .galeria-img img {
    width: 100%;
    height: 100%;
}
.contenedor-galeria-img {
    position: relative;
    margin-bottom: 10rem;
}
.contenedor-galeria-img .galeria-desc {
    border: 1px solid #000;
    background-color: #fff;
    width: 80%;
    font-family: var(--roboto);
    text-align: center;
    font-size: 1.6rem;
    position: absolute;
    top: 85%;
    -webkit-box-shadow: var(--sombra);
    -moz-box-shadow: var(--sombra);
    box-shadow: var(--sombra);
}
.galeria-desc .galeria-nombre {
    font-size: 1.6rem;
    color: var(--primario);
    font-weight: bold;
}

/** ===================== NOSOTROS ======================= **/

.contenedor-acercade {
    font-family: var(--roboto);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    font-size: 1.6rem;
}
@media (max-width:768px){
    .contenedor-acercade{
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.contenedor-acercade .contenedor-nosotros {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}
@media (max-width:768px) {
    .contenedor-acercade .contenedor-nosotros {
        flex-direction: column;
    }
    .contenedor-acercade .contenedor-nosotros .nosotros-card:nth-of-type(1){
        order: 1;
    }
    .contenedor-acercade .contenedor-nosotros .nosotros-card:nth-of-type(2){
        order: 3;
    }
    .contenedor-acercade .contenedor-nosotros .nosotros-card:nth-of-type(3){
        order: 2;
    }
}
.contenedor-nosotros .nosotros-card {
    width: 30%;
    text-align: center;
    color: #fff;
    padding: 2rem 3rem;
    border-radius: 2rem;
    box-shadow: var(--sombra);
}
@media (max-width:768px) {
    .contenedor-nosotros .nosotros-card {
        width: 120%;
        border-radius: 0;
        margin-left: -3rem;
        margin-bottom: 0;
    }
}
.nosotros-card h3 {
    font-size: 3rem;
    font-weight: bold;
}
.nosotros-card h4, .nosotros-card p {
    margin: 0;
}
.nosotros-card p {
    margin-bottom: 2rem;
}
.mision {
    background-color: #006B60;
    height: 100%;
}
.valores {
    background-color: var(--primario);
}
.vision {
    background-color: #00CB7D;
    height: 100%;
}
.nosotros-texto {
    padding-bottom: 4rem;
}

/** ===================== LOGIN ======================= **/

.contenedor-formulario {
    margin-bottom: 8rem;
    margin-top: 8rem;
}
@media (max-width:768px) {
    .contenedor-formulario {
        margin-top: 2rem;
    }
}
#formulario {
    width: 70%;
    margin: 0 auto;
    background-color: var(--gris-secundario);
    border-radius: 1rem;
    padding: 0 8rem 4rem 8rem;
    box-shadow: var(--sombra);
}
@media (max-width:768px) {
    #formulario {
        width: 100%;
        background-color: #fff;
        padding: 0;
        box-shadow: none;
    }
    #formulario h2 {
        margin-bottom: 8rem;
    }
}
#formulario form {
    display: flex;
    flex-direction: column;
}
#formulario form .form-name {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.form-name input {
    border: none;
    background-color: var(--gris-secundario);
    border-bottom: 1px solid #000;
}
@media (max-width:768px) {
    .form-name input {
        background-color: #fff;
    }
}
#formulario form .btns {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}
.btns .boton {
    width: 22rem;
}
@media (max-width:768px) {
    .btns .btn-limpiar {
        display: none;
    }
    .btns .btn-entrar {
        width: 100%;
        height: 4rem;
    }
}
#mensaje {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    background-color: var(--wrong);
    color: #fff;
}
#mensaje p {
    margin: 0;
}

/** ===================== CONTACTO ======================= **/

.contenedor-contacto {
    margin: 8rem auto;
    display: flex;
    width: 60%;
    box-shadow: var(--sombra);
    border-radius: 1rem;
}
@media (max-width:768px) {
    .contenedor-contacto{
        flex-direction: column;
        width: 110%;
        margin: 0;
        margin-left: -2rem;
        padding: 0;
        box-shadow: none;
    }
}
.info-contacto {
    width: 35%;
    background-color: var(--primario);
    font-size: 1.5rem;
    color: #fff;
    padding: 0rem 3rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    border-radius: 1rem 0 0 1rem;
}
@media (max-width:768px) {
    .info-contacto{
        padding: 3rem;
        width: 100%;
        border-radius: 0;
        text-align: center;
    }
}
.info-contacto h3 {
    font-weight: bold;
    margin: 0 0 1rem 0;
}
.info-contacto p {
    margin: 0;
}
.formulario-contacto {
    width: 75%;
    background-color: var(--gris-secundario);
    padding: 0 4rem 4rem 4rem;
    border-radius: 0 1rem 1rem 0;
}
@media (max-width:768px) {
    .formulario-contacto {
        width: 100%;
    }
    .formulario-contacto h3 {
        text-align: center;
    }
}
#contact-form {
    display: flex;
    flex-direction: column;
}
#contact-form input, #contact-form textarea {
    border: none;
    width: 100%;
    height: 3rem;
    margin-bottom: 2rem;
    font-family: var(--lato);
    padding-left: 1rem;
}
#contact-form textarea{
    height: 10rem;
    margin-bottom: 0;
}
#contact-form .btns {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}
#contact-form .btns .boton {
    width: 20rem;
    height: 5rem;
}
@media (max-width:768px) {
    #contact-form .btns .boton {
        width: 100%;
        height: 4rem;
    }
}

/** ===================== CONFIGURACION ======================= **/

.contenido-configuracion {
    display: flex;
    font-family: var(--lato);
}
@media (max-width:768px) {
    .contenido-configuracion {
        flex-direction: column;
    }
}
.contenido-configuracion .opciones {
    width: 20%;
    background-color: var(--primario);
    color: #fff;
}
@media (max-width:768px) {
    .contenido-configuracion .opciones {
        width: 100%;
        text-align: center;
    }
}
.contenido-configuracion .opciones div{
    padding: 1rem 3rem;
}
.contenido-configuracion .opciones div:hover {
    background-color: var(--prim-hover);
    cursor: pointer;
}
.contenido-configuracion .contenido-opciones {
    padding: 4rem 7rem;
    background-color: var(--gris-secundario);
    width: 80%;
    min-height: 57rem;
}
@media (max-width:768px) {
    .contenido-configuracion .contenido-opciones {
        width: 100%;
        text-align: center;
        padding: 2rem;
    }
    .contenido-configuracion .contenido-opciones h3 {
        margin: 0;
    }
}
.pass-form {
    width: 50%;
}
@media (max-width:768px) {
    .pass-form {
        width: 100%;
    }
}
.pass-form input {
    width: 50%;
    border: none;
    height: 3rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
}
@media (max-width:768px) {
    .pass-form input {
        width: 100%;
    }
}
.pass-form .boton {
    height: 4.5rem;
    width: 20rem;
    margin-top: 2rem;
}
.contenido-opciones .tabla-conf {
    border-collapse: collapse;
}
.contenido-opciones .tabla-conf td, .contenido-opciones .tabla-conf th {
    border: 1px solid #fff;
    font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
}
.contenido-opciones .tabla-conf th {
    background-color: var(--primario);
    color: #fff;
}
.contenido-opciones .tabla-conf tr:nth-child(2n+1) {
    background-color: #a1a1a1;
    color: #fff;
}
.imgtablafolletos {
    width: 2rem;
}
.folleto-inactivo {
    display: none;
}
.agregarimg {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    width: 20rem;
}
.contenedor-galeria-img .f-eliminar{
    width: 40%;
}
.btn-agregar {
    display: flex;
    justify-content: center;
}
.contenedor-file {
    display: flex;
}
.file-input input {
    width: 100%;
}
.contenedor-file .file-texto .text-size {
    font-size: 1rem;
}