:root {
    --green: #032521;
    --green-two: #033f03;
    --brown: #af8554;
    --font-garamond: 'Cormorant Garamond',serif;
    --font-raleway: 'Raleway',sans-serif
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-raleway);
    background-color: #fff;
}

.body--modal--open {
    overflow: hidden
}

.wrapper {
    display: flex;
    min-height: 100vh;
}

.home .wrapper,
.page-id-37 .wrapper,
.single-product .wrapper {
    height: 100vh;
}

@media screen and (max-width: 768px) {
.home .wrapper,
.page-id-37 .wrapper,
.single-product .wrapper {
    height: auto;
}
}

.sidebar {
    width: 120px;
    background-color: #032521;
    padding: 45px 0;
    display: flex;
    flex-flow: column;
    position: fixed;
    height: 100vh;
    box-sizing: border-box;
}

.sidebar__logo {
    text-align: center
}

.sidebar__logo img {
    width: 70px
}

.sidebar__social {
    flex: auto;
    justify-content: center;
    align-items: center;
    display: flex
}

.sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebar__social ul li {
    margin-bottom: 16px
}

.sidebar__social ul li:last-child {
    margin-bottom: 0
}

.sidebar__lang ul {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center
}

.sidebar__lang ul li>a {
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-garamond);
    font-style: italic
}

.content {
    width: 100%;
    height: 100%;
    padding-left: 120px
}

.home:not(body) {
    display: flex;
    height: 100%;
}

.home__text {
    width: 50%;
	display: flex;
	align-items: center;
}

.home__image {
    width: 50%;
    display: flex;
}

.home__image {
    border-left: 1px solid var(--brown);
    padding-left: 12px
}

.home__image figure {
	display: flex;
	height: 100%;
    width: 100%;
}

.home__image img {
    width: 100%;
    height: auto;
	object-fit: cover;
	object-position: bottom right;
}

.home__image--bottle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.home__image--bottle img {
    width: 540px;
    margin: 0 auto
}

.home__image--instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-flow: column
}

.home__image--logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.home__image--logo img {
    width: 300px;
    transform: translateX(40px);
}

.home__image-title {
    font-size: 30px;
    font-family: var(--font-garamond);
    color: var(--brown);
    text-transform: uppercase
}

.home__image--instagram img {
    width: 640px;
    margin: 0 auto
}

.text {
    width: 70%;
    margin: 0 auto
}

.text__subtitle,.text__title {
    font-family: var(--font-garamond);
    color: var(--green-two)
}

.text__subtitle {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 26px;
    color: var(--brown);
    font-style: italic
}

.text__title {
    text-transform: uppercase;
    font-size: 50px;
    margin: 0;
    margin-bottom: 24px
}

.text__paragraph {
    font-size: 18px;
    font-family: var(--font-raleway);
    text-align: justify;
    line-height: 1.5em;
}

.modal {
    position: fixed;
    width: calc(100% - 120px);
    height: 100%;
    top: 0;
    right: 0;
    display: none;
    left: inherit !important
}

.modal--open {
    display: block;
    opacity: 1;
    z-index: 100
}

.modal__content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99;
    animation: fadeIn .8s ease-in-out;
    box-sizing: border-box;
    left: inherit !important;
	transition: opacity 0.8s ease-in-out;
}

.modal--closing .modal__content,
.modal--closing .content-modal__close {
	opacity: 0;
}

.content-modal__close {
    position: absolute;
    top: 70px;
    left: 124px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    z-index: 100;
    width: 80px;
	transition: opacity 0.8s ease-in-out;
}


.modal--menu .modal__content {
    position: relative;
}
.modal--menu {
	z-index: 99999;	
}

.modal--menu .home__image {
    border: 0 !important;
}

.modal--menu .modal__content:after {
    width: 50vw;
    aspect-ratio: 1/1;
    content: "";
    display: block;
    background-image: url('./../img/pajaro-verde.png');
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.modal--menu .content-modal__close {
    top: 60px;
    right: 60px;
    left: inherit
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0
}

.menu li {
    margin-bottom: 40px;
    transition: all .5s ease-in-out;
    padding: 0 40px 0 0;
    overflow: hidden;
    position: relative
}

.menu li a {
    display: inline-block
}

.menu li a:after {
    width: 80px;
    position: absolute;
    content: "";
    height: 1px;
    background-color: var(--brown);
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-80px);
    z-index: 1;
    transition: transform .8s ease-in-out,-webkit-transform .8s ease-in-out,-moz-transform .8s ease-in-out
}

.menu li:hover {
    padding: 0 0 0 40px
}

.menu li:hover a:after {
    transform: translateY(-50%) translateX(0)
}

.menu li:last-child {
    margin-bottom: 0
}

.menu li a {
    font-size: 40px;
    font-family: var(--font-garamond);
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--green-two);
    text-decoration: none;
}

.btn-menu {
    position: fixed;
    top: 60px;
    right: 60px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
	z-index: 99998;
}

.animate__delay-300 {
    --animate-delay: .3s
}

.animate__delay-600 {
    --animate-delay: .6s
}

.animate__delay-900 {
    --animate-delay: .9s
}

.animate__delay-1200 {
    --animate-delay: 1.2s
}

.btn {
    font-size: 14px;
    font-family: var(--font-raleway);
    font-weight: 300;
    padding: 20px 40px;
    min-width: 180px;
    text-transform: uppercase;
    border: 1px solid var(--brown);
    text-decoration: none;
    color: #000;
    display: inline-block;
    box-sizing: border-box;
    text-align: center
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}



.home-form input:not([type=submit]),.home-form textarea {
    width: 100%;
    outline: none;
    border: 0;
    border-bottom: 1px solid var(--brown);
    padding: 12px 0 !important;
    font-size: 13px;
    font-family: var(--font-raleway);
    resize: none
}

.home-form textarea {
    max-height: 120px;
}

.home-form p {
    margin-bottom: 12px;
}

.home-form p br {
    display: none;
}

.home-form input[type=submit] {
    font-size: 14px !important;
    font-family: var(--font-raleway) !important;
    font-weight: 300 !important;
    padding: 20px 40px !important;
    min-width: 180px;
    text-transform: uppercase;
    border: 1px solid var(--brown) !important;
    text-decoration: none;
    color: #000;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    background-color: transparent
}

.wpcf7-not-valid-tip {
    font-size: 12px !important;
    font-family: var(--font-raleway)
}

.wpcf7-response-output {
    font-size: 12px;
    font-family: var(--font-raleway);
    border: 0 !important;
    padding: 0 !important
}

.home-form .mailpoet_validate_success {
    color: var(--green) !important;
    width: 100%;
    top: 0 !important;
    margin-top: 24px;
    text-align: left !important;
    font-family: var(--font-raleway)
}

.item-active {
    border-bottom: 1px solid var(--brown)
}

.home-form label {
    display: block;
    width: 100%
}

@media screen and (max-width: 1400px) and (min-width:992px) {
    .text__title {
        font-size:40px
    }

    .text__paragraph {
        font-size: 16px
    }
}

.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.55);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 999
}

.cart-modal--open {
    display: flex
}

.cart-modal img {
    max-width: 100%
}

.cart-modal__content {
    background-color: #fff;
    padding: 24px;
    width: 40%;
    animation: fadeIn .8s ease-in-out;
    position: relative;
}

.cart-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    background-color: #fff;
    border: 0;
    cursor: pointer;
    transform: translate(50%, -50%);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    
}

.cart-modal__close img {
    width: 16px;
}



.card-modal__text-subtitle {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--brown);
    font-style: italic;
    font-family: var(--font-garamond)
}

.card-modal__text-title {
    font-family: var(--font-garamond);
    text-transform: uppercase;
    font-size: 36px;
    color: var(--green);
    margin: 0;
    margin-bottom: 16px
}

.cart-modal__title {
    font-family: var(--font-garamond);
    text-transform: uppercase;
    font-size: 28px;
    color: var(--green);
    margin: 0;
    margin-bottom: 16px;
    margin-top: 16px;
}

.cart-modal .woocommerce-Price-amount.amount {
    font-size: 20px;
}

.card-modal__text-paragraph {
    font-size: 16px;
    font-family: var(--font-raleway);
    font-weight: 300
}

.card-modal__pricing del,
.product__pricing del,
.card-modal__pricing ins,
.product__pricing ins,
.woocommerce-Price-amount.amount {
    display: block;
    font-family: var(--font-raleway)
}
.modal .add_to_cart_inline,
.cart-modal .add_to_cart_inline,
.product__pricing .add_to_cart_inline {
    border: 0 !important;
    padding: 0 !important
}

.card-modal__pricing del,
.product__pricing del {
    font-size: 14px
}

.card-modal__pricing ins,
.woocommerce-Price-amount.amount,
.product__pricing ins {
    font-size: 32px;
    text-decoration: none;
    margin-bottom: 16px
}

.cart-modal .add_to_cart_inline a.button,
.product__pricing .add_to_cart_inline a.button,
.modal__content .add_to_cart_inline a.button {
    font-size: 14px;
    font-family: var(--font-raleway);
    font-weight: 300;
    padding: 20px 40px;
    min-width: 180px;
    text-transform: uppercase;
    border: 1px solid var(--brown);
    text-decoration: none;
    color: #000;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    background: 0 0
}

.cart-modal .flexslider {
    margin-bottom: 0
}

.card-modal__pricing .add_to_cart_inline .added_to_cart {
    margin-left: 16px
}

@media screen and (max-width: 768px) {
	.cart-modal {
		z-index: 999999;
	}
	
	.cart-modal__content {
		width: 90%;
	}
	.card-modal__text-title {
		font-size: 28px;
	}
	
	.card-modal__text {
		margin-top: 24px;
	}
}

.store__header {
    padding: 16px 0;
    background-color: var(--green)
}

.store__header a {
    color: #fff
}

.store .components-button {
    font-size: 14px;
    font-family: var(--font-raleway);
    font-weight: 500;
    padding: 20px 40px;
    min-width: 180px;
    text-transform: uppercase;
    border: 1px solid var(--brown);
    background-color: var(--brown) !important;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    background-color: transparent
}

.store .components-button:disabled {
	opacity: 0.35;
}

.store__footer {
    padding: 40px 0;
    background: var(--green)
}

.footer-menu h2,.store__footer p,.footer-menu ul>li {
    color: #fff
}

.footer-menu h2 {
    font-size: 24px;
    font-family: var(--font-garamond);
    margin-bottom: 16px
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-menu ul li {
    margin-bottom: 8px
}

.copyright {
    font-size: 14px
}

.store__breadcrumb ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex
}

.store__content {
    min-height: calc(100vh - 350px)
}

@media screen and (max-width: 1500px) and (min-width:1024px) {
    .sidebar {
        width:80px
    }

    .sidebar__logo img {
        width: 50px
    }


    .text {
        width: 80%
    }
	
	.content {
		padding-left: 80px;
	}
	
	.modal {
		width: calc(100% - 80px);
	}
}

.content-page {
    margin-top: 80px;
    padding-bottom: 80px
}

.content-page h1 {
    font-size: 30px;
    font-family: var(--font-garamond);
    color: var(--brown);
    text-transform: uppercase
}

.content-page article {
    font-family: var(--font-raleway)
}




.footer {
	background-color: var(--green);
	display: none;
}

.footer__social {
	padding: 32px 0; 
}

.footer__social ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items:center;
	justify-content: center;
	gap: 24px;
    list-style: none;
}

.footer__social img {
	width: 24px;
}



figure {
	margin: 0 !important;
}


.home--instagram {
	width: 65%;
}



/* 1400px */
@media screen and (max-width: 1400px){
    .content-modal__close {
        top: 50px;
        left: 5px;
    }
}

/* 768px */
@media screen and (max-width: 768px) {
	.content-page {
		margin-top: 120px;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.home--instagram {
		width: 100%;
	}
}

@media screen and (max-width: 992px) {
	.sidebar {
		width: 60px;
	}
	.sidebar__logo img {
		width: 40px;
	}
	
	.content {
		padding-left: 60px;
	}
	
	.sidebar__lang ul li a {
		font-size: 14px;
	}
	
	.text__paragraph {
		font-size: 14px;	
	}
	
	.modal {
		width: calc(100% - 60px);
	}
	
	.btn-menu {
		top: 40px;
		right: 40px;
	}
	
	.text {
		width: 90%;
	}
	.menu li {
		padding: 0;
	}
	.menu li a {
		font-size: 28px;
	}
	.home__image--logo img {
		width: 200px;
	}
	
	.modal--menu .content-modal__close {
		top: 40px;
		right: 40px;
	}
	
	.modal--menu .modal__content:after {
		width: 40vw;
	}
	
	.text__title {
		font-size: 28px;
	}
	
	.text__subtitle {
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.text__paragraph--hide {
		display: none;
	}
	
	.home__image--bottle img {
		width: 250px;	
	}
}

@media screen and (max-width: 768px) {
    .wrapper {
        flex-flow:column;
		min-height: 100vh;
		height: auto;
    }

    .sidebar {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 8px 16px;
        box-sizing: border-box;
        height: auto;
		z-index: 99997;
    }

    .sidebar__logo {
        text-align: left
    }

    .sidebar__logo img {
        width: 40px
    }

    .sidebar__social,.sidebar__lang {
        display: none
    }

    .content {
        width: 100%;
        box-sizing: border-box;
        padding: 120px 16px 40px;
        height: auto
    }

    .home {
        flex-flow: column;
        gap: 24px
    }

    .home__text,.home__image {
        width: 100%
    }

    .home__image {
        padding: 0;
        border: 0
    }

    .text {
        width: 100%
    }

    .btn-menu {
        top: 25px;
        right: 16px;
    }

    .modal {
        width: 100%;
        min-height: 100vh;
        overflow-y: auto
    }

    .modal__content {
        position: relative;
        height: auto;
        min-height: 100vh
    }

    .modal--menu .home {
        justify-content: center;
        padding: 16px
    }

    .modal--menu .home__image {
        display: none
    }

    .content-modal__close {
        right: 16px !important;
        left: inherit;
        top: 40px
    }

    .modal__content {
        padding: 40px 16px;
        padding-top: 120px
    }

    .home__image img {
        width: 100% !important
    }

    .modal__content .text__title {
        font-size: 40px
    }

    .modal__content .text__paragraph {
        font-size: 16px
    }
	
	.modal--menu .modal__content:after {
		display: none;
	}
	
	body .wrapper > .home {
		margin-top: 80px;
	}
	
	.body--modal--open {
		overflow-y: auto;
	}
	
	.modal:not(.modal--menu) {
		position: relative;
	}
	
	.body--modal--open .content {
		display: none;
	}
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	.btn {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}


/* Store */
.store {
	width: 100%;
	padding-left: 120px;
}



.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received,
.woocommerce-order-details__title {
	text-transform: uppercase;
    font-size: 36px;
    margin: 0;
    margin-bottom: 24px;
	color: var(--green);
	font-family: var(--font-garamond);
	text-align: center;
}

.woocommerce-order-details__title {
	text-align: left;
	font-size: 28px;
}

.woocommerce ul.order_details {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.order_details:before,
.woocommerce ul.order_details:after {
	display: none !important;
}

.woocommerce-order-overview__email.email {
    display: none;
}

.woocommerce ul.order_details li {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	font-family: var(--font-garamond);
}

.woocommerce ul.order_details li:before {
	display: none;
}
.woocommerce-order-overview__total.total {
	text-align: right;
}

.woocommerce-table tr td:last-child,
.woocommerce-table tr th:last-child{
	text-align: right;
}

.woocommerce-table tbody tr td:first-child,
.woocommerce-table thead tr td:first-child,
.woocommerce-table tfoot tr th:first-child {
    font-weight: 400 !important;
}

.woocommerce .woocommerce-customer-details address {
    box-sizing: border-box;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    font-weight: 500;
}

a {
	color: var(--brown);
}

a:hover {
	color: var(--brown);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h4, h4 {
    font-size: 1.5rem;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}


.alert-heading {
    color: inherit;
}

.alert-success {
    color: #032521;
    background-color: #ffffff;
    border-color: #032521;
}

@media screen and (max-width: 768px) {
	.store {
		margin-top: 60px;
		width: 100;
		padding: 0;
	}
	
	.woocommerce ul.order_details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received, 
	.woocommerce-order-details__title {
		font-size: 24px;
	}
	
	.woocommerce-order-overview__total.total {
		text-align: right;
	}
}

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

.container {
    box-sizing: border-box;
    padding-left: 80px;
}

strong {
    font-weight: 700;
}

sup {
    font-size: 0.6em;
    font-weight: 400;
}

body.woocommerce-shop .container {
    padding: 0 16px;
}

body.woocommerce-shop .content-page {
    margin-top: 80px;
}