/*
	Theme Name: Julia Garrido
	Theme URI: http://tiendaonline.com
	Description:  WordPress Theme
	Version: 1.4.3
	Author: Julia Garrido
	Author URI: http://juliagarrido.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/
html {
  scroll-behavior: smooth;
}
/* global box-sizing */

*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


@font-face {
    font-family: 'Yantramanav';
    src: url('fonts/Yantramanav-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Yantramanav';
    src: url('fonts/Yantramanav-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Yantramanav';
    src: url('fonts/Yantramanav-Bold.ttf') format('woff2');
    font-weight: 600;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'LaLuxesSerif';
    src: url('fonts/LaLuxesSerif-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}

/* -- GENERALES -- */

:root {
    --cta-color: #B9D1C0;
    --cta-color-hover: #9fbba7;

    --grey-color: #e0e0e0;
    --grey-color-dark: #b1b1b1;

    --back-beige: #f2f2f2;
    --content-beige: #B2A7A1;

    --color-text: #193239;
}

* {
    font-family: 'Yantramanav', sans-serif;
}


.text-center {
    text-align: center;
}

/* clear */

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: #444;
    text-decoration: none;
}

a:hover {
    color: #444;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    outline: 0;
    border: 1px solid #04A4CC;
}

.block-scroll {
    overflow: hidden;
}

.centrar-flex{
	    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}


.cta,
input[type="submit"] {
    padding: 12px 30px;
    line-height: 16px;
    vertical-align: middle;
    background-color: var(--cta-color);
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #fff;
    border: none;
    -webkit-box-shadow: 10px 10px 19px -12px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 10px 10px 19px -12px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 19px -12px rgba(0, 0, 0, 0.5);
}

.cta:hover,
input[type="submit"]:hover {
    background-color: var(--cta-color-hover);
    display: inline-block;
    color: #fff;
    text-decoration: none;
}



input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
.woocommerce form .form-row .input-text, 
.woocommerce form .form-row select,
textarea,
select {
    color: #707070;
    border: 1px solid #e4e4e4!important;;
    border-radius: 0!important;;
    padding: 8px !important;
    font-size: 14px!important;
    outline: none;
	line-height: initial;
	width: 100%;
}

button,
input {
    line-height: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: var(--cta-color-hover);
    border: 1px solid var(--cta-color-hover) !important;
}

input::placeholder,
texarea::placelholder{
    font-size: 14px!important;
    font-weight: normal;
    line-height: 1.71;
    color: #707070;
}


input[type=file] {
  max-width: 100%;
  color: #444;
  padding: 0px;
  background: #fff;
  border: 1px solid #555;
}

input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background-color: #2b2b2b;
  padding: 5px 21px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background: #0d45a5;
}




p,li {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 1em;
    color: var(--color-text);
}

h1,
.h1 {
    font-size: 56px;
    line-height: 59px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-family: 'LaLuxesSerif', sans-serif;
    margin-top: 0px;
}

h2,
.h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 40px;
    color: var(--color-text);
}

h3,
.h3 {
    font-size: 28px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

h4,
.h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

h5,
.h5 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.site {
    min-height: 100vh !important;
}

#popout::-webkit-scrollbar,
.dragscroll::-webkit-scrollbar {
    width: 0px;
}

#popout #logo-mv a img {
    width: 50px;
}

#header {
    position: relative;
    transition: top 0.2s ease-in-out;
    z-index: 9999;
    padding: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

#hero .fixed-header .logo img{
	    width: 80%;
}

.main-navigation ul ul {
    background-color: rgba(252, 252, 252, 0.8);
    min-width: 220px;
    margin-top: 3px;
    z-index: 999;
}

.sub-menu li:hover {
    background-color: #fff;
}

.deco {
    position: absolute;
    z-index: 998;
    width: 154px;
    top: 81px;
}

.deco.rotate {
    position: absolute;
    z-index: 9998;
    width: 174px;
    right: 0px;
    top: 119px;
    transform: rotateY(180deg);
}

#header.fixed-header {
    background: #fff;
    position: fixed;
    top: -500px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

#header.in-view {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    top: 0px;
    left: 0px;
}

.navbar.nav-down {
    background: rgba(13, 13, 13, 0.8);
}

#hero .h1 {
    font-size: 50px;
}

#hero {
    z-index: 999;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    /*    width: 100%;*/
    /*    height: 100%;*/
    position: relative;
}

#hero .content-hero {
    min-height: 45vh;
    padding-bottom: 0rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(238, 239, 240, 1) 20%, rgba(238, 239, 240, 1) 100%);
}

#hero .content-hero span {
    display: block;
}

#hero .content-hero .cta {
    width: fit-content;
}

#hero .content-hero .h1,
#hero .content-hero span,
#hero .content-hero p {
    color: #193239;
}

#hero .content-hero .pretitulo,
.pretitulo,
.pretitulo a,.pretitulo {
    color: var(--cta-color);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 25px;
    font-weight: 300;
    margin-bottom: 1rem;
    display: inline-block;
}


.content-hero .col-content-hero,
.content-hero .col-img-destc {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.content-hero .col-img-destc img {
    mix-blend-mode: multiply;
    /* position: absolute; */
    margin-bottom: -9rem;
    margin-top: -3rem;
}

.box-video-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.box-video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .overlay-home {
    opacity: 0.76;
    background: linear-gradient(125deg, #171717d4 2%, rgba(128, 128, 128, 0.32) 30%, rgba(80, 80, 80, 0.18) 60%, #0e0b0694 80%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
}


#hero-home #masthead.fixed-header.sticky-topbar {
    background: linear-gradient(45deg, rgb(33, 85, 124) 0%, rgb(68, 167, 242) 51%, rgb(13, 136, 230) 100%) !important;
}

.sticky-topbar.sticky-on-return.animate {
    transition: transform ease 0.2s;
}

/* --- WHATSAPP ---*/

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    z-index: 99999;
    background: #1abc9c;
    /* flexbox centraliza o icone */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    transition: .2s;
    box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.16);
}

.floating-button svg {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 10;
    fill: #fff;
}

.floating-button:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.floating-button .text-send {
    height: 30px;
    width: 10px;
    /* esconde texto */
    visibility: hidden;
    opacity: 0;
    /* position */
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    font-size: 13px;
    padding-left: 15px;
    border-radius: 15px;
    background: #1abc9c;
    color: #fff;
    transition: .2s;
    overflow: hidden;
    white-space: nowrap;
}

.floating-button:hover .text-send {
    visibility: visible;
    opacity: 1;
    width: 150px;
}


/* --- MENÚ ---*/

#site-navigation {
    padding-top: 1rem;
}

.main-navigation .sub-menu li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.backBtn,
#toggle {
    display: block;
}


#popout li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    line-height: 20px;
    padding: 0rem 0rem 0rem 1rem;
}

#popout li ul {
    display: none;
    position: absolute;
    min-width: 200px;
    max-width: 300px;
    padding: 0;
    margin: 0;
}

#popout li ul li {
    float: none;
    display: block;
    margin: 0;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

#popout li ul li a {
    width: 100%;
    display: block;
}

#logo-mv,
.info-mv {
    display: none;
}

#hero .logo img {
    width: 100%;
}

#toggle span {
    text-transform: uppercase;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    padding-left: 10px;
}


#popout {
    position: fixed;
    width: 85%;
    height: 100%;
    max-width: 340px;
    background: #ffffff;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.650s ease;
    text-align: left;
    left: 0px;
    z-index: 99999999;
}

.backBtn,
#toggle {
    display: block;
}

#popout.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

#popout ul {
    padding-left: 0px;
}

#popout ul li.menu-item a {
    font-weight: normal;
    line-height: 20px;
    vertical-align: middle;
    width: 100%;
    display: inline-block;
    padding: 0.7rem 0;
}

#popout li.menu-item {
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 1.5rem;
    height: auto;
    min-height: 20px;
    list-style: none;
    transition: 0.3s ease;
}

#popout .menu-item-has-children > a:after {
    width: 17px;
    height: 17px;
    display: block;
    float: right;
    margin-right: 0;
    content: url(img/plus.svg);
    margin-top: 1px;

}

#popout .menu-item-has-children.expanded > a:after {
    width: 17px;
    height: 17px;
    display: block;
    float: right;
    margin-right: 0;
    content: url(img/minus.svg);
    margin-top: 1px;
}

#popout li.menu-item .sub-menu {
    transition: max-height 0.650s ease-out;
    overflow: hidden;
    position: static;
}

#popout li.menu-item .sub-menu li {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    padding-left: 20px;
}

#popout li.menu-item .sub-menu li a {
    padding: 0 0 5px 0;
    font-size: 14px;
    text-transform: initial;
}

#popout ul .menu-item-has-children.expanded .sub-menu {
    float: none;
    display: block;
}

#toggle,
.backBtn {
    font-size: 13px;
    position: inherit;
    right: 0;
    max-width: 45px;
    display: inline-block;
    cursor: pointer;
    display: flex;
}

.menu-burguer {
    display: flex;
    align-items: center;
}

.nav-menu li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    width: 100%;
}

.nav-menu li:hover {
    background: #CCC;
}

.nav-menu li a {
    color: #FFF;
    text-decoration: none;
    width: 100%;
}

.overlay-menu {
    position: fixed;
    background: #000 none repeat scroll 0% 0%;
    opacity: 0.4;
    display: none;
    top: 0;
    z-index: 1499;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    transition: opacity 150ms ease;
}

.overlay-menu.open {
    display: block;
}

.closing-overlay {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vh;
}

#logo-mv {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.3rem;
    padding-top: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.info-mv {
    display: block;
}

.mobile .contact-block {
    border-top: 1px solid #d4d4d4;
    background-color: #fff;
    padding: 1.5rem;
}

#menu-extra {
    margin-bottom: 0rem;
}

#menu-extra li.menu-item {
    background-color: #f2f2f2;
    border-top: 1px solid #ffffff;
}

#menu-extra li.menu-item {
    text-transform: initial;
}

.contact-block #box-social {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


/* -- SOCIAL BOX --*/

#box-social a {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0px;
}

#box-social a i {
    padding: 0 0;
    margin: 0 0;
    display: block;
    top: 0px;
    padding-right: 0px;
    left: 0px;
    font-size: 14px;
    color: #fff;
}

#box-social a:hover i {
    color: var(--cta-color);
}


/* -- BUSCADOR ---*/

.openBtn {
    cursor: pointer;
}


.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid #e9e9e9;
}

.overlay-content {
    position: relative;
    width: 100%;
}

.overlay-content span.spanbuscador,
.masvendido span.spanbuscador {
    font-size: 27px;
    margin-bottom: 0.5rem;
    display: block;
}

#myOverlay {
    overflow-y: scroll;
}

#myOverlay::-webkit-scrollbar {
    display: none;
}

.overlay .closebtn {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999999999;
}

.overlay .closebtn:hover {
    color: #ccc;
}

.overlay input[type=text]:hover {
    background: #f1f1f1;
}

.overlay button {
    display: none;
}

.content-overlay-search input[type="search"] {
    border: 0px;
    border-bottom: 1px solid #efeaea;
    font-size: 27px;
    margin-bottom: 20px;
    color: var(--cta-color);
}

.content-overlay-search .horizontal.dragscroll {
    flex-wrap: wrap;
}

.content-overlay-search-div{
	width:21%;
}

.content-overlay-search input[type="search"]:focus {
    border: none !important;
    border-bottom: 2px solid var(--cta-color) !important;
}

.content-overlay-search {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    padding: 100px 0px 16px 0px;
    width: 100%;
}

.overlay form.search img {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
}

.overlay form.search {
    position: relative;
    border: none;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
    text-align: initial;
}

.overlay input[type="search"]::placeholder {
    color: #dedede;
}

.overlay button:hover {
    background: #bbb;
}



@media screen and (max-width: 1500px) {
.content-overlay-search-div {
    width: 31%;
}
}

@media screen and (max-width: 991px) {
	.content-hero .col-img-destc img {
    margin-top: -7rem;
	}
	.content-overlay-search-div {
    width: 35%;
}
}


/* --- HOME --- */

.taxonomy-product-list {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.taxonomy-product-mv {
    display: none;
}

.promocion-row .deco {
    display: block;
    position: relative;
    top: 0px;
    left: -15px;
    width: 25%;
}

.absolute-block {
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    margin-bottom: 4rem;
}

.absolute-block .img.right {
    width: 50%;
    left: 0px;
    z-index: 1;
    bottom: 0px;
}

.absolute-block .img {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: left center;
}

.absolute-block .img.right .bg-seccion-absolute {
    background-size: cover;
    background-position: center center;
    height: 100%;
    top: 0px;
}

.objet-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}



/* --- PROMO --- */

.promocion-row {
    margin-bottom: 7rem;
}

.margin-text-promo {
    padding-left: 3rem;
    padding-top: 2rem;
}

.row-croll-promo {
    z-index: 99;
    position: relative;
}

.row-promocion-text {
    padding-bottom: 3rem;
    padding-top: 1rem;
}

.horizontal.dragscroll {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
}

.horizontal.dragscroll li.card-body-scroll {
    list-style: none;
    padding: 10px;
    height: 430px;
}

.horizontal.dragscroll .wp-post-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.card-body-scroll-box {
    overflow: hidden;
    width: 100%;
    position: relative;
    border: 0px solid #EEEEEE;
    box-shadow: 0px 0px 7px -1px rgb(0 0 0 / 28%);
    height: 100%;
    width: 300px;
    margin-bottom: 0.5rem;
}

.col-promo-product {
    max-width: 300px;
}

.instagram-feed.row {
    width: 100%;
    margin: 0 auto;
}




/* sidebar */

.sidebar {}

/* --NEWSLETTER --- */

form.search {
    border: var(--cta-color) solid 1px;
    display: inline-block;
    background-color: #fff;
    align-items: center;
}

form.search img {
    padding: 0.5rem;
}

form.search input[type="search"] {
    border: 0px;
    padding: 0.2rem;
}

form.search [type=submit] {
    background-color: var(--cta-color) !important;
    border: 0px;
    padding: 0.5rem;
    color: #fff;
}

form.search [type=submit]:hover {
    background-color: var(--cta-color-hover) !important;
}

/* --FOOTER --- */

.footer {
    padding-top: 4rem;
    border-top: 1px solid #e4e4e4;
    margin-top: 3rem;
}

.footer h5 {
    margin-bottom: 1rem;
}

.footer .contact-block span,
.footer .contact-block a {
    display: block;
    margin-bottom: 0.5rem;
    color: #8E8E8E;
    font-size: 14px;

}

.navigation-menu.footer-menu-wrapper li a,
.footer #box-social a {
    color: #8E8E8E;
    font-size: 14px;
}

.contact-block .p-icon i{
	padding-right:5px;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e4e4e4;
    margin-top: 2rem;
}

.navigation-menu.footer-menu-wrapper {
    position: relative;
}

.navigation-menu.footer-menu-wrapper ul {
    padding-left: 0px;
}

.navigation-menu.footer-menu-wrapper li {
    list-style: none;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

#box-social ul {
    padding-left: 0px;
}

#box-social li {
    list-style: none;
    display: inline-block;
    padding-right: 5px;
}

#box-social a {
    background: transparent;
}

#box-social a {
    border-radius: 100%;
    width: 2rem;
    background-color: var(--color-text);
    height: 2rem;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.3s;
    margin: 0rem 0;
}

#box-social a:hover {
    background-color: var(--cta-color);
}

#box-social a:hover i {
    color: #fff;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/


/* --ARTE EN VIVO --- */

.arteenvivo .promocion-row {
    margin-bottom: 0rem;
}

.arteenvivo .separador{
	background: url(img/liveart.jpg);
	background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.arteenvivo .box-formulario-contacto {
    margin-top: -6rem;
}

.arteenvivo .segunda-secc-sm.absolute-block {
    padding-bottom: 0rem;
}

.acf-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.acf-gallery-item {
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.acf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acf-gallery-item:hover {
  transform: scale(1.02);
}

.lb-details {
    display:none;
}

.lb-data .lb-close {
 float: left;
}
@media only screen and (max-width:768px) {
    .arteenvivo .promocion-row .img.right {
        display:flex;
        width: 100%;
        object-fit: cover;
        position: relative;
        height: 100%;
        margin-bottom: 16px;
    }
    .arteenvivo .absolute-block .img.right.left {
        width: 100%;
        position: relative;
        margin-top: 16px;
    }
    .arteenvivo .box-formulario-contacto {
        margin-top: 0rem;
    }
    .arteenvivo .separador {
        display:none;
    }
    .arteenvivo .segunda-secc-sm.absolute-block {
        padding-top: 1rem!important;
    }
}


/* --SOBRE MÍ --- */
.sobremi{
	padding-top: 4rem;
	padding-bottom:4rem;
}

.pretitulo-verde{
	color: var(--cta-color);
	text-transform:uppercase;
	display: inline-block;
}

.sobremi h1{
	margin-left: -5rem;
}

.sobremi .foto-principal {
    max-width: 380px;
    object-fit:cover;
}

.desk-img{
	position: absolute;
    top: 21rem;
    right: 7rem;
    box-shadow: 0px 0px 7px -1px rgb(0 0 0 / 28%);
    max-width: 150px;
}

.separador{
	background: url(img/mockup-retrato-in.jpg);
	height:300px;
	background-size: cover;
    background-position: center;
	background-attachment: fixed;
}

.absolute-block .img.right.left {
    right: 0px;
	left: auto;
	width: 45%;
}

.segunda-secc-sm.absolute-block{
	 padding-top: 4rem;
	padding-bottom: 6rem;
}

.segunda-secc-sm.absolute-block .objet-img{
	    margin-top: -3rem;
}

.segunda-secc-sm.absolute-block.front-page .objet-img{
	    margin-top: 0rem!important;
}

@media only screen and (max-width:1199px) {
	.desk-img {
    left: 15rem;
	}
}

@media only screen and (max-width:991px) {
	.desk-img {
        left: 0rem;
		bottom: -1rem;
	}
	.sobremi .foto-principal {
        max-width: 306px;
        object-fit: cover;
    }
	.sobremi h1 {
        margin-left: -1rem;
    }
}

@media only screen and (max-width:768px) {
	.sobremi h1 {
    margin-left: 0rem;
	}
	.sobremi img{
		max-height: 300px;
	margin-bottom: 4rem;
	}
	.sobremi .desk-img {
        left: 10rem;
            top: 12rem;

        max-height: 150px;
	}
	.segunda-secc-sm.absolute-block .objet-img {
    display: none;
	}
	.segunda-secc-sm.absolute-block {
    padding-bottom: 0rem;
}
	input[type="search"]{
		width:93%;
	}
	.content-overlay-search-div {
    width: 100%;
}
	
}

.contacto-page.sobremi h1{
	margin-left: 0rem;
}

.box-formulario-contacto{
	box-shadow: 0px 0px 7px -1px rgb(0 0 0 / 28%);
    padding: 3rem 4rem;
    margin-bottom: -8rem;
    background-color: #fff;
}

.box-formulario-contacto label{
	width:100%;
}

.contacto-info i{
	color:var(--cta-color);
	font-size:25px;
	padding-right:20px;
	    margin-right: 20px;
	border-right:solid 2px #efefef;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {}

@media only screen and (min-width:480px) {}

@media only screen and (min-width:768px) {}

@media only screen and (min-width:1024px) {}

@media only screen and (max-width:1299px) {
    .deco {
        width: 95px;
    }

    .deco.rotate {
        width: 106px;
    }
}

@media only screen and (max-width:1199px) {
    #hero .h1 {
        font-size: 40px;
        line-height: 46px;
    }

    h1,
    .h1 {
        font-size: 40px;
        line-height: 46px;
    }

    /*
    .row-productos-destacados-espacio::-webkit-scrollbar {
  display: none;
}
*/
}

@media only screen and (max-width:991px) {
    .taxonomy-product-list {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }

    h1,
    .h1 {
        font-size: 31px;
        line-height: 38px;
    }

    #hero .h1 {
        font-size: 31px;
        line-height: 38px;
    }

    #hero .content-hero {
        min-height: 33vh;
    }

    .deco {
        width: 70px;
        top: 55px;
    }

    .deco.rotate {
        width: 80px;
        top: 119px;
    }

    .productos-destacados-home .product img {
        height: 300px;
    }

    .productos-destacados-home .row-productos-destacados-espacio {
        margin-bottom: 3rem;
    }

    .promocion-row {
        margin-bottom: 3rem;
    }

    /*
    .productos-destacados-home .row-productos-destacados-espacio{
            flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    }
*/
}


@media only screen and (max-width: 767px) {
    .promocion-row {
        margin-bottom: 1rem;
    }
		.row-contacto{
	flex-direction:column-reverse;
	}
	.box-formulario-contacto {
    padding: 2rem 2rem;
	}

    .box-titulo-destacados {
        margin-bottom: 0rem !important;
    }

    .productos-destacados-home .row-productos-destacados-espacio {
        margin-bottom: 2rem !important;
    }

    .copyright {
        margin-top: 1rem;
    }

    .row-scroll-mobile {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .container-single-product {
        display: flex;
        flex-direction: column-reverse;
    }

    #hero .content-hero .pretitulo,
    .pretitulo,
    .pretitulo a {
        font-size: 15px;
    }

    #hero .h1 {
        font-size: 31px;
        line-height: 39px;
    }

    #header {
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .margin-text-promo {
        padding-left: 0rem;
        padding-top: 2rem;
    }

    .card-body-scroll-box {
        width: 205px;
        height: 300px;
    }

    .promocion-row .img.right {
        display: none;
    }

    .taxonomy-product-list {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    #hero .content-hero {
        padding-top: 0rem;
        background: none;
    }

    .content-hero .col-img-destc img {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-bottom: 1rem;
    }

    .footer .logo-img {
        width: 59px;
        margin-bottom: 1rem;
    }

    .row-croll-promo .horizontal.dragscroll {
        padding-left: 5px;
    }

    .productos-destacados-home .col-lg-4:nth-child(odd) li {
        margin-top: 0rem;
    }

    .footer h5 {
        font-size: 16px;
    }

    .footer .menu-legal {
        margin-bottom: 1rem;
        border-top: 1px solid #e4e4e4;
        padding-top: 1rem;
    }

    .footer .row .primer-menu-legal {
        border-top: 0px solid #e4e4e4;
    }

    .footer {
        padding-top: 1rem;
    }

    .footer .menu-legal-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .taxonomy-product-mv {

        display: flex;
    }

    .home .taxonomy-product {
        display: none;
    }

    .content-overlay-search-div .taxonomy-product {
        display: block;
        margin-bottom: 2rem;
    }

    .taxonomy-product-mv .category-loop-btn {
        border: 0px solid #e3e3e3 !important;
        padding-left: 0px !important;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 14px;
        padding: 9px 15px;
        letter-spacing: 1px;
        margin-left: 0px;
		line-height: 18px;
    }

    .col-img-destc img {
        max-width: 80%;
    }

    .col-img-destc {
        align-items: center;
    }

    .deco {
        width: 61px;
        top: 92px;
    }

    #toggle {
        display: block;
    }

    #toggle span {
        font-size: 8px;
        padding-top: 6px;
        display: block;
        padding-left: 0px;
    }

    .deco.rotate {
        width: 71px;
        top: 307px;
    }

    #hero .content-hero > .row {
        flex-direction: column-reverse;
    }

    .cat-tax-mv {
        height: 200px;
        overflow: hidden;
    }

    .cat-tax-mv img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .content-overlay-search-div {
        position: inherit !important;
    }

    .content-overlay-search {
        flex-direction: column;
        padding: 63px 0px 16px 0px;
    }

    .overlay-content span.spanbuscador,
    .masvendido span.spanbuscador {
        font-size: 18px;
    }

    .content-overlay-search input[type="search"] {
        font-size: 22px;
    }

    .content-overlay-search .horizontal.dragscroll {
        flex-wrap: nowrap;
    }

    .home .taxonomy-product-mv div:nth-child(even) {
        padding-left: 5px;
    }

    .home .taxonomy-product-mv div:nth-child(odd) {
        padding-right: 5px;
    }


}



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
    background: var(--cta-color);
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--cta-color);
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: var(--cta-color);
    color: #FFF;
    text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}