@font-face {
	font-family: 'AlwaysAGoodTime';
	src: url('../fonts/KGAlwaysAGoodTime.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: inherit;
	margin: 0;
}

:root {
	--blue: #004c99;
	--red: #e3393d;
}

body {
	background: #FFF;
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: inherit;
}

p {
	margin: 0;
}

.btn {
	border: none;
	background: transparent;
	font-weight: 600;
	border-radius: 100px;
	padding: 10px 20px;
	text-transform: uppercase;
}

.btn.btn-red {
	background: var(--red);
	color: #FFF;
}

header {
	height: 120px;
	width: 100%;
	background: #FFF;
}

section {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.header-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 120px;
}

.site-logo {
	margin-top: 60px;
	z-index: 9999;
}

.site-logo img {
	width: 300px;
}

.site-nav nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
}

.site-nav nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	column-gap: 50px;
}

.site-nav nav a {
	text-decoration: none;
	color: var(--blue);
	font-weight: 700;
	font-size: 1.125rem;
}

.social_icons img {
	height: 30px;
}

.mobile-nav-trigger {
	display: none;
	width: 35px;
	margin-top: 20px;
	margin-right: 20px;
	cursor: pointer;
}

.mobile-nav-trigger svg {
	fill: var(--blue);
}

.site-mobile-nav {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #fff;
	top: 120px;
	left: 0;
	z-index: 999;
	justify-content: center;
	align-items: flex-start;
	padding: 100px 0;
}

.site-mobile-nav.show {
	display: flex;
}

.site-mobile-nav nav ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	row-gap: 20px;
	padding: 0;
	text-align: center;
}

.site-mobile-nav nav ul li a {
	text-decoration: none;
	color: var(--blue);
	font-weight: 700;
	font-size: 1.5rem;
}

.site-mobile-nav .social_icons {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

header.fixed {
	position: fixed;
	z-index: 999999999;
}

section.hero {
	height: 600px;
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}

section.hero.hero-home {
	overflow: hidden;
}

section.hero.hero-contacto {
	background-color: #ebebeb;
	height: 600px;
}

section.hero.hero-product {
	background-color: #ebebeb;
	height: 650px;
}

section.hero.hero-product:after {
	z-index: 1;
	content: '';
	width: 100%;
	height: 450px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #fb0202;
	-webkit-mask-image: url(../img/products_lines_2.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: right bottom;
	mask-image: url(../img/products_lines_2.svg);
	mask-repeat: no-repeat;
	mask-position: right bottom;
}

section.hero.hero-overlay:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgb(0 0 0 / 40%);
    z-index: 1;
}

section.hero>* {
	position: relative;
	z-index: 2;
}

video.hero_video {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 0;
    object-fit: cover;
}

section.faq {
	text-align: center;
	background-image: url(../img/faq-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

section.faq .section-titles {
	padding: 80px 0;
}

.hero-content h1 {
	color: #FFF;
	font-family: 'Abril Fatface', sans-serif;
	font-size: 3.125rem;
	margin-bottom: 12px;
}

section.products {
	text-align: center;
	padding: 40px 0;
}

.section-titles {
	margin-bottom: 40px;
}

.section-titles h2 {
	color: var(--blue);
	font-family: 'Abril Fatface';
	font-size: 3.125rem;
	margin-bottom: -14px;
}

.section-titles span {
	color: var(--red);
	font-size: 2rem;
	font-family: 'AlwaysAGoodTime';
}

.section-titles p {
	color: var(--blue);
	font-weight: 800;
	text-transform: uppercase;
}

.with-title-arrow {
	position: relative;
}

.with-title-arrow:after {
	background-image: url(/assets/img/arrow.svg);
	width: 95px;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 65px;
	position: absolute;
	right: -103px;
	content: '';
	top: 0;
}

span.title-arrow img {
	width: 95px;
	height: 65px;
}

i.arrow {
	background-image: url(../img/arrow.svg);
}

i.arrow.red {
	fill: var(--red)
}

i.arrow.blue {
	fill: var(--blue)
}

i.arrow.white {
	fill: #fff
}

.products-list {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 20px;
}

.products-list-mobile {
	display: none;
}

.product {
	grid-column: span 3 / span 3;
	position: relative;
	cursor: pointer;
}

.product.product-wide {
	grid-column: span 4 / span 4;
}

.products-list .product:hover .product-name {
	visibility: visible;
}

.product img {
	width: 100%;
}

.products-list .product img.hover {
	display: none;
}

.products-list .product:hover img:not(.hover) {
	display: none;
}

.products-list .product:hover img.hover {
	display: block;
}

.product a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.product-name {
	font-family: 'Montserrat', sans-serif;
	color: var(--red);
}

.products-list .product-name {
	visibility: hidden;
}


.product-name h4 {
	font-weight: 700;
}

.product-name span {
	font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--red) !important;
}

.product-slider-group {
    margin-bottom: 80px;
}

.products-list-mobile .product {
	padding: 0 30px;
}

.products-list-mobile .product .product-name span {
    font-size: 1.4rem;
}

.product-slider-group h4 {
	color: var(--blue);
	font-weight: 600;
	font-size: 1.5rem;
}

.hero-contacto-info h1 {
	color: var(--blue);
	font-family: 'Abril Fatface';
	font-size: 2.4rem;
	margin-bottom: -14px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	row-gap: 20px;
}

.contact-item {
	color: var(--blue);
}

.contact-item img {
	width: 35px;
	margin-bottom: 10px;
}

.contact-item p {
	font-weight: 700;
	font-size: 1.2rem;
}

.contact-item span {
	font-weight: 500;
}

.contact_block_media video {
	width: 100%;
}

.faq-block {
	display: flex;
	row-gap: 30px;
	flex-direction: column;
}

.faq-item {
	background-color: #FFF;
	box-shadow: 7px 6px 10px 0px rgba(0, 0, 0, 0.7);
	-webkit-box-shadow: 7px 6px 10px 0px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 7px 6px 10px 0px rgba(0, 0, 0, 0.7);
	border-radius: 30px;
	padding: 35px 50px;
	text-align: left;
	cursor: pointer;
}

.faq-item .faq-question {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--blue);
	font-size: 1.2rem;
	user-select: none;
}

.faq-item .faq-answer {
	display: none;
	font-weight: 500;
	color: #000;
	font-size: 1.1rem;
	padding-top: 20px;
}

.faq-item.open .faq-question {
	color: var(--red);
}

.faq-item.open .faq-answer {
	display: block;
}

.hero-product-image img {
	width: 100%;
}

.hero-product-info {
	text-align: left;
	color: #393939;
}

.hero-product-info h1 {
	font-family: 'Abril Fatface';
	font-size: 3.125rem;
	margin-bottom: 15px;
}

.hero-product-info h2 {
	font-family: 'AlwaysAGoodTime';
	color: var(--red);
	font-size: 2.125rem;
	margin-top: -30px;
	margin-bottom: 20px;
}

.hero-product-info p {
	font-weight: 500;
	font-size: 1.1rem;
}

.product-tabs {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 100px 10px;
	column-gap: 50px;
}

button.button-tab {
	border: none;
	background: var(--blue);
	color: #FFF;
	font-weight: 600;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 1.2rem;
}

button.button-tab.active,
button.button-tab:hover {
	background: var(--red);
}

.product-tab-content {
	display: none;
}

.product-tab-content.active {
	display: block;
}

.product-details-block {
	display: flex;
	align-items: flex-start;
	column-gap: 50px;
}

.product-details-box {
	position: relative;
	background: #f9f9f9;
	padding: 20px 0 40px;
	border-radius: 60px;
	min-height: 400px;
	width: 100%;
	text-align: center;
}

.product-details-box:before {
	content: '';
	width: calc(100% + 14px);
	height: calc(100% + 14px);
	position: absolute;
	top: -5px;
	left: -7px;
	border-radius: 60px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='60' ry='60' stroke='%23004C99FF' stroke-width='4' stroke-dasharray='14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
	z-index: -1;
}

.product-details-box h2 {
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 10px;
}

.product-details-box>span {
	padding-bottom: 12px;
	display: block;
	font-weight: 500;
}

.product-details-box p {
	font-size: .9rem;
	font-weight: 500;
	padding: 8px 0;
}

.product-details-box .product-ingredients {
	padding: 12px 20px;
}

.product-details-table {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.product-table-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	border-bottom: 1px solid #000;
}

.product-table-row:last-child {
	border-bottom: none;
}

.product-table-column {
	border-right: 1px solid #000;
	padding: 5px 10px;
	font-size: .9rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-table-column span {
	text-transform: uppercase;
	font-weight: 700;
}

.product-table-column:first-child {
	font-weight: 700;
	text-transform: uppercase;
}

.product-table-column:last-child {
	border-right: none;
}

.product-table-column.column-5 {
	grid-column: span 5 / span 5;
}

.product-table-column.column-4 {
	grid-column: span 4 / span 4;
}

.product-table-column.column-2 {
	grid-column: span 3 / span 3;
}

.product-showcase-container {
	display: flex;
	justify-content: center;
}

.product-showcase {
	display: flex;
	flex-direction: column;
	flex: 1 1 0px;
}

.product-showcase-image picture {
	height: 200px;
	display: block;
}

.product-showcase-image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.product-showcase-details {
	display: flex;
	flex-direction: column;
	margin-top: 40px;
}

.product-showcase-variables {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.product-showcase-variables span,
.product-showcase-details span {
	text-transform: uppercase;
	font-weight: 500;
}

.product-showcase-variables p,
.product-showcase-details p {
	font-weight: 700;
}

.product-showcase-variables ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	padding: 0;
}

.product-showcase-variables ul li {
	list-style: none;
	width: 200px;
	padding: 0 25px;
	border-left: 1px solid #000000;
}

.product-showcase-variables ul li:first-child {
	border: none;
}

section.recipes {
	padding: 30px 50px;
	margin-top: 50px;
}

.recipe-block {
	position: relative;
	background: #f9f9f9;
	padding: 70px;
	border-radius: 60px;
	min-height: 400px;
	width: 100%;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 50px;
	grid-row-gap: 0px;
}

.recipe-block:before {
	content: '';
	width: calc(100% + 14px);
	height: calc(100% + 14px);
	position: absolute;
	top: -5px;
	left: -7px;
	border-radius: 60px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='60' ry='60' stroke='%23004C99FF' stroke-width='4' stroke-dasharray='14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
	z-index: -1;
}

.recipe-image {
	border-radius: 60px;
	overflow: hidden;
	max-height: 800px;
	display: flex;
	align-items: center;
	width: 100%;
}

.recipe-image picture,
.recipe-image img {
	width: 100%;
}

.recipe-content {
	text-align: left;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--blue);
	line-height: 2.4rem;
}

span.recipe-end {
	color: var(--red);
	font-size: 2rem;
	font-family: 'AlwaysAGoodTime';
	padding: 40px 0;
	display: block;
}

.more-products {
	margin-top: 50px;
}

.more-products-slider {
	margin-top: 80px;
}

.more-products-slider .swiper-wrapper {
	padding: 25px;
}

.more-product-slide {
	background: #f9f9f9;
	border-radius: 80px;
	box-shadow: 7px 6px 10px 0px rgb(195 195 195 / 30%);
	-webkit-box-shadow: 7px 6px 10px 0px rgb(195 195 195 / 30%);
	-moz-box-shadow: 7px 6px 10px 0px rgb(195 195 195 / 30%);
	height: 550px;
	display: flex;
	flex-direction: column;
	padding: 20px;
	position: relative;
	margin-bottom: 20px;
}

.more-product-image {
	height: 100%;
	display: flex;
}

.more-product-image picture {
	display: flex;
	align-items: center;
}

.more-product-image img {
	width: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.more-product-image img.hover {
	display: none;
}

.more-product-slide:hover img:not(.hover) {
	display: none;
}

.more-product-slide:hover img.hover {
	display: block;
}

.more-product-name {
	padding-bottom: 30px;
}

.more-product-name h4 {
	color: var(--blue);
	font-family: 'Abril Fatface';
	font-size: 1.7rem;
}

.more-product-name span {
	color: var(--red);
	font-size: 1.3rem;
	font-family: 'AlwaysAGoodTime';
}

.more-product-slide a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


.tooltip {
    
    border-radius: 9px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    display: block;
   	left: 60%;
    padding: 3px 14px;
    position: absolute;
    top: -28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.tooltip:before {
    border-left: 13px solid transparent;
    border-right: 5px solid transparent;
    border-top: 20px solid;
    bottom: -13px;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -30px;
    position: absolute;
    transform: skew(-45deg);
    width: 0;
}

.tooltip.new {
	background-color: var(--red);
}

.tooltip.new:before{
	border-top-color: var(--red);
}

.tooltip.soon {
	background-color: var(--blue);
}

.tooltip.soon:before{
	border-top-color: var(--blue);
	left: 28%;
}

.tooltip.new.mobile {
	left: 70%;
	top: 0;
}

.tooltip.soon.mobile {
	left: 55%;
	top: 0;
}

.tooltip.new.wide {
    top: 15px;
}


footer {
	background: #393939;
	margin-top: 100px;
	padding: 50px 20px;
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-block {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #FFF;
}

.footer-block h3 {
	font-family: 'Abril Fatface';
	padding-bottom: 10px;
	font-size: 1.4rem;
	line-height: 1.4rem;
}

.footer-block .social_icons {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
}

@media (max-width: 992px) {

	header,
	.header-wrapper {
		height: 120px;
	}

	.site-logo img {
		width: 280px;
	}

	.site-nav {
		display: none;
	}

	.mobile-nav-trigger {
		display: block;
	}

	.section-titles h2 {
		font-size: 2.4rem;
	}

	.section-titles span {
		font-size: 1.8rem;
	}

	button.button-tab {
		font-size: 1rem;
	}

}

@media (max-width: 768px) {

	.products-list {
		display: none;
	}

	.products-list-mobile {
		display: block;
	}

	.product-details-block {
		row-gap: 50px;
		flex-direction: column;
	}

	.product-tabs {
		flex-direction: column;
		row-gap: 20px;
	}

	section.recipes {
		padding: 30px 20px;
	}

	.recipe-block {
		grid-template-columns: repeat(1, 1fr);
	}

	.recipe-image {
		max-height: 400px;
	}

	.recipe-content {
		text-align: center;
		font-size: 1.1rem;
		padding-top: 40px;
	}

	section.hero.hero-product {
		height: 90vh;
	}

	.hero-product-image img {
		width: 80%;
	}

	.hero-product-info {
		padding: 0 40px;
	}

	.hero-product-info h1 {
		font-size: 2.5rem;
	}

	.hero-product-info p {
		font-size: 1rem;
	}

	.product-tab-content {
		padding: 0 20px;
	}

	.product-showcase-container {
		flex-direction: column;
		row-gap: 40px;
	}

	.more-products-slider .swiper-wrapper {
		padding: 0;
	}

	.footer-content {
		display: flex;
		flex-direction: column;
		row-gap: 40px;
	}
}

@media (max-width: 576px) {

	.site-logo img {
        width: 225px;
    }

	.hero-product-info {
		padding: 0 20px;
	}

	.hero-product-info h1, .section-titles h2 {
        font-size: 2.1rem;
    }

	.hero-product-info h2 {
		font-size: 1.7rem;
		margin-top: -25px;
	}

	.hero-product-info p {
        font-size: .9rem;
    }

	.product-tab-content {
        padding: 0;
    }

	.product-showcase-variables p, .product-showcase-details p {
		font-size: .8rem;
	}

	.product-showcase-variables ul {
		flex-direction: column;
	}

	.product-showcase-variables ul li {
		border-left: none;
		border-top: 1px solid #000000;
    	padding: 14px 0;
	}

	section.hero.hero-product {
		padding-top: 75px;
		height: 100%;
	}

	section.recipes {
        padding: 30px 12px;
    }

	.recipe-block {
        padding: 15px 10px;
    }

	.recipe-image {
		max-height: 200px;
	}

	.recipe-content {
		font-size: .8rem;
		line-height: 1.4rem;
	}

	span.recipe-end {
		font-size: 1.5rem;
	}

	.section-titles {
		margin-bottom: 25px;
	}

	.section-titles span {
		font-size: 1.6rem;
		margin-top: 20px;
        display: block;
	}

	.section-titles h2{
		font-size: 2rem;
		line-height: 2.3rem;
	}


}