/*-----------------------------------------------------------------------------------
	Bitefruits_v1
	About: A shiny new Blocs website.
	Author: Blueboystudio
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-xxl{
	padding:200px 20px;
}
.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-b-edge{
	background-position: bottom!important;
	background-repeat: no-repeat;
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
.navbar-toggle.menu-icon-thick-bars{
	margin-top:4px!important;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}

/* = Icons
-------------------------------------------------------------- */
.icon-lg{
	font-size:60px!important;
}

/*  Image Scale */
.img-fluid-up{
	min-width: 100%;
	height: auto;
}


/* = Lists
-------------------------------------------------------------- */
.list-horizontal-layout li{
	display:inline-block;
	margin:0 10px;
}
.list-sp-md li:last-child,.list-sp-lg li:last-child,.list-sp-xl li:last-child{
	padding-bottom:0;
}

.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* Hide Object */
.object-hidden{
	display:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.logo-style{
	width:150px;
	margin-top:10px;
}
.bloc-divider-t-style{
	height:60px;
	fill:#4DC1AE;
}
.menu-icon-stroke{
	stroke:#4DC1AE!important;
	fill:#4DC1AE!important;
}
.menu-style{
	font-weight:bold;
	font-size:20px;
	color:#4DC1AE!important;
}
.flex-menu{
	text-align:right;
	justify-items:end;
	color:#4DC1AE!important;
}
.form-style{
	border-color:#8A7C7C!important;
	border-style:solid;
	border-radius:30px 30px 30px 30px;
}
.btn-style{
	color:var(--swatch-var-7481)!important;
	width:150px;
}
.footer-link{
	text-decoration:none;
	color:var(--swatch-var-7481)!important;
	font-size:20px;
}
.menu-icon-bloc-0-stroke{
	stroke:var(--swatch-var-7686)!important;
	fill:var(--swatch-var-7686)!important;
}
.bloc-style{
	top:-150px;
	position:relative;
	margin-bottom:100px;
}
.footer-text{
	color:var(--swatch-var-7481)!important;
	font-size:14px;
}
.coco-pack-pos{
	position:absolute;
	left:400px;
	bottom:0px;
	width:550px;
}
.copy-coco{
	width:300px;
	position:absolute;
	right:100px;
	top:150px;
}
.p-style{
	font-size:16px;
	color:var(--swatch-var-7481)!important;
	font-weight:normal;
}
.coco-pos{
	position:absolute;
	right:280px;
	width:250px;
	top:-150px;
}
.amazon-btn{
	position:absolute;
	z-index:1;
	bottom:100px;
	right:100px;
}
.fresa-copy{
	width:250px;
	position:absolute;
	top:200px;
	justify-content:flex-end;
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	left:250px;
	text-align:right;
}
.pack-pos-fresa{
	position:absolute;
	bottom:0px;
	right:80px;
	width:550px;
}
.fresa-pos{
	position:absolute;
	top:0px;
	right:150px;
}
.pack-pos-mango{
	position:absolute;
	bottom:0px;
	left:400px;
	width:550px;
}
.copy-mango{
	width:280px;
	position:absolute;
	right:120px;
	bottom:200px;
}
.mango-pos{
	position:absolute;
	left:200px;
	top:0px;
	width:350px;
}
.chili-pos{
	position:absolute;
	right:150px;
	width:250px;
	top:-100px;
}
.amazon-btn-chili{
	position:absolute;
	z-index:1;
	left:150px;
	bottom:100px;
}
.chili-copy{
	width:300px;
	position:absolute;
	justify-content:flex-end;
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	left:200px;
	top:210px;
}
.fresa-pos-copy-1{
	position:absolute;
	top:0px;
	right:150px;
}
.pack-pos-chili{
	position:absolute;
	bottom:0px;
	right:80px;
	width:550px;
}
.pina-pack-pos{
	position:absolute;
	left:350px;
	bottom:70px;
	width:550px;
}
.copy-pina{
	width:300px;
	position:absolute;
	right:130px;
	top:300px;
}
.pina-pos{
	position:absolute;
	width:280px;
	top:0px;
	left:200px;
}
.bloc-left{
	position:relative;
	left:-200px;
}
.bloc-right{
	position:relative;
	right:-200px;
}
.negative-pos{
	position:relative;
}
.amazon-btn-fresa{
	position:absolute;
	z-index:1;
	bottom:100px;
	right:200px;
}
.slider-pos{
	margin-top:-100px;
}
.mango-about{
	position:absolute;
	right:0px;
	bottom:100px;
	width:300px;
}
.paragraph-about{
	color:var(--swatch-var-6455)!important;
	position:absolute;
	right:0px;
	width:400px;
	font-size:14px;
	top:120px;
}
.fresa-updates{
	z-index:-1;
	position:absolute;
	right:350px;
	top:100px;
}
.carousel-indicators [data-bs-target]{
	background-color:var(--swatch-var-1481);
	width:10px;
	border-radius:50% 50% 50% 50%;
	height:10px;
}
.carousel-indicators [data-bs-target].active{
	background-color:var(--swatch-var-7686);
}
.paragraph-story{
	color:var(--swatch-var-6455)!important;
	width:400px;
}
.column-flex{
	display:flex;
	flex-direction:column;
	align-items:flex-end;
}
.img-slider-hero-style{
	height:700px;
	width:558px;
}
.h3-style{
	text-align:center;
	color:var(--swatch-var-6455)!important;
}
.logo-findus{
	width:200px;
}
.sticky-nav{
	box-shadow:0.00px -0.00px 0px #000000;
	position:fixed;
	top:0px;
}
.sticky-nav-bar{
	z-index:100;
	top:-20px;
	box-shadow:0.00px -2.00px 0px #FFFFFF;
	position:fixed;
}
.form-contact{
	background-color:transparent;
	background:linear-gradient(180deg, #11473D 0%, #43998A 100%);
	border-radius:30px 30px 30px 30px;
	padding:80px 80px 80px 80px;
	align-content:space-around;
}
.pink-btn{
	background-color:var(--swatch-var-6498);
	width:200px;
}
.column-center{
	display:flex;
	flex-direction:column;
	align-items:center;
}
.contact-mango{
	position:absolute;
	top:0px;
	left:0px;
	width:300px;
}
.contact-fresa{
	position:absolute;
	top:-20px;
	right:0px;
}
.contact-coco{
	position:absolute;
	bottom:0px;
	left:0px;
	width:300px;
}
.contact-pina{
	position:absolute;
	bottom:0px;
	right:0px;
}
.form-div{
	margin-bottom:100px;
}
.btn-style:hover{
	color:var(--swatch-var-7481)!important;
}
.copy-slider{
	width:300px;
	position:absolute;
	top:150px;
	right:150px;
}
.img-pinneaple-coco-style{
	width:150px;
}
.list-text{
	color:var(--swatch-var-7481)!important;
}
.find-more{
	position:absolute;
	z-index:1;
	bottom:100px;
	right:150px;
}
.fruit-slider-pos{
	position:absolute;
	width:250px;
	top:-100px;
	right:400px;
}
.carousel-btn{
	background-image:url("img/bite_pagina_home%20Mango%202.png");
	background-image: -webkit-image-set(url("img/bite_pagina_home%20Mango%202.webp") 1x,
url("img/bite_pagina_home%20Mango%202.webp") 2x);background-image: image-set(url("img/bite_pagina_home%20Mango%202.png") 1x,
url("img/bite_pagina_home%20Mango%202.png") 2x,url("img/bite_pagina_home%20Mango%202.webp") 1x,
url("img/bite_pagina_home%20Mango%202.webp") 2x);
	width:100%;
	height:100%;
	background-color:var(--swatch-var-1481);
}
.carousel-nav-icon{
	stroke:var(--swatch-var-7686);
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-7481);
	height:30px;
}
.fresa-bloc{
	position:relative;
	top:-100px;
}
.mango-bloc{
	position:relative;
	top:-100px;
}
.chili-bloc{
	top:-200px;
	position:relative;
}
.pineapple-bloc{
	position:relative;
	top:-250px;
}
.bloc-divider-b-style{
	height:10px;
}
.p-10-style{
	width:100%;
}
.h1-style{
	font-family:"Open Sans";
	font-weight:800;
	color:var(--swatch-var-6455)!important;
	text-align:center;
}
.img-dry-style{
	width:400px;
}
.img-process-style{
	width:400px;
}
.paragraph-footnote{
	font-size:14px;
}
.p-bloc-31-style{
	width:66.31%;
}
.p-bloc-33-style{
	width:67.74%;
}
.pineapple-dry-style{
	position:absolute;
	right:100px;
	top:0px;
}
.strawberry-dry-style{
	position:absolute;
	left:100px;
	top:-50px;
}
.heading-mission{
	font-family:"Open Sans";
	font-weight:800;
	color:var(--swatch-var-7686)!important;
	font-size:40px;
}
.p-style-blk{
	color:var(--swatch-var-6455)!important;
}
.btn-style:active{
	color:var(--swatch-var-7326)!important;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-1481:rgba(77,193,174,1.00);
	
	--swatch-var-6455:rgba(0,0,0,1.00);
	
	--swatch-var-7481:rgba(255,255,255,1.00);
	
	--swatch-var-7686:rgba(18,45,82,1.00);
	
	--swatch-var-7326:rgba(255,255,255,1.00);
	
	--swatch-var-6498:#D46379;
	
	--swatch-var-2098:rgba(255,255,255,1.00);
	
	--swatch-var-4097:#787878;
	
}


/* Background colour styles */

.bgc-7481{
	background-color:var(--swatch-var-7481);
}
.bgc-6498{
	background-color:var(--swatch-var-6498);
}

/* Text colour styles */

.tc-4097{
	color:var(--swatch-var-4097)!important;
}

/* Button colour styles */

.btn-c-1481{
	background:var(--swatch-var-1481);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-1481:hover{
	background:#1A8E7B!important;
	color:rgba(0,0,0,.5)!important;
}

/* Link colour styles */

.ltc-1481{
	color:var(--swatch-var-1481)!important;
}
.ltc-1481:hover{
	color:#1A8E7B!important;
}

/* Icon colour styles */

.icon-1481{
	color:var(--swatch-var-1481)!important;
	border-color:var(--swatch-var-1481)!important;
}

/* Bloc image backgrounds */

.bg-pina-chili-bkgrnd{
	background-image:url("img/pina-chili_bkgrnd.jpg");
	background-image: -webkit-image-set(url("img/pina-chili_bkgrnd.webp") 1x,
url("img/pina-chili_bkgrnd.webp") 2x);background-image: image-set(url("img/pina-chili_bkgrnd.jpg") 1x,
url("img/pina-chili_bkgrnd.jpg") 2x,url("img/pina-chili_bkgrnd.webp") 1x,
url("img/pina-chili_bkgrnd.webp") 2x);
}
.bg-fresa-slider-bkgrnd{
	background-image:url("img/fresa_slider_bkgrnd-1.jpg");
	background-image: -webkit-image-set(url("img/fresa_slider_bkgrnd-1.webp") 1x,
url("img/fresa_slider_bkgrnd-1.webp") 2x);background-image: image-set(url("img/fresa_slider_bkgrnd-1.jpg") 1x,
url("img/fresa_slider_bkgrnd-1.jpg") 2x,url("img/fresa_slider_bkgrnd-1.webp") 1x,
url("img/fresa_slider_bkgrnd-1.webp") 2x);
}
.bg-mango-slider-bkgrnd{
	background-image:url("img/mango_slider_bkgrnd-1.jpg");
	background-image: -webkit-image-set(url("img/mango_slider_bkgrnd-1.webp") 1x,
url("img/mango_slider_bkgrnd-1.webp") 2x);background-image: image-set(url("img/mango_slider_bkgrnd-1.jpg") 1x,
url("img/mango_slider_bkgrnd-1.jpg") 2x,url("img/mango_slider_bkgrnd-1.webp") 1x,
url("img/mango_slider_bkgrnd-1.webp") 2x);
}
.bg-coco-slider-bkgnd{
	background-image:url("img/coco_slider_bkgnd.jpg");
	background-image: -webkit-image-set(url("img/coco_slider_bkgnd.webp") 1x,
url("img/coco_slider_bkgnd.webp") 2x);background-image: image-set(url("img/coco_slider_bkgnd.jpg") 1x,
url("img/coco_slider_bkgnd.jpg") 2x,url("img/coco_slider_bkgnd.webp") 1x,
url("img/coco_slider_bkgnd.webp") 2x);
}
.bg-pina-slider-bkgrnd-2{
	background-image:url("img/pina_slider_bkgrnd-2.jpg");
	background-image: -webkit-image-set(url("img/pina_slider_bkgrnd-2.webp") 1x,
url("img/pina_slider_bkgrnd-2.webp") 2x);background-image: image-set(url("img/pina_slider_bkgrnd-2.jpg") 1x,
url("img/pina_slider_bkgrnd-2.jpg") 2x,url("img/pina_slider_bkgrnd-2.webp") 1x,
url("img/pina_slider_bkgrnd-2.webp") 2x);
}
.bg-bite-video-bkgrnd{
	background-image:url("img/bite_video_bkgrnd.jpg");
	background-image: -webkit-image-set(url("img/bite_video_bkgrnd.webp") 1x,
url("img/bite_video_bkgrnd.webp") 2x);background-image: image-set(url("img/bite_video_bkgrnd.jpg") 1x,
url("img/bite_video_bkgrnd.jpg") 2x,url("img/bite_video_bkgrnd.webp") 1x,
url("img/bite_video_bkgrnd.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */

.page-scroll-progress-bar{
		top:0;
		left:0;
		right:0;
		width:0;
		position: fixed;
		z-index: 999999;
}
.page-scroll-progress-bar.bottom-edge{
	top: initial;
	bottom: 0;
}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.paragraph-about{
		position:absolute;
		top:500px;
		width:80%;
		text-align:center;
		left:10%;
	}
	.mango-about{
		width:250px;
		z-index:-1;
		bottom:120px;
	}
	.bloc-divider-t-fill{
		fill:var(--swatch-var-7481);
		width:100%;
		height:20px;
	}
	.fresa-updates{
		right:200px;
	}
	.contact-mango{
		width:200px;
	}
	.contact-fresa{
		width:200px;
	}
	.contact-coco{
		width:200px;
		bottom:100px;
	}
	.contact-pina{
		bottom:100px;
		width:200px;
	}
	.paragraph-story{
		width:100%;
	}
	.logo-style{
		margin-top:30px;
	}
	.sticky-nav-bar{
	}
	.paragraph-footnote{
		position:absolute;
		top:450px;
		width:80%;
		text-align:center;
		left:10%;
	}
	.pineapple-dry-style{
		right:0px;
	}
	.strawberry-dry-style{
		left:0px;
		top:-100px;
	}
	.bloc-left{
		left:-0px;
	}
	.coco-pack-pos{
		position:absolute;
		bottom:0px;
		width:450px;
		left:180px;
	}
	.amazon-btn{
		right:0px;
		bottom:50px;
	}
	.copy-coco{
		position:absolute;
		top:100px;
		right:60px;
		width:200px;
	}
	.img-copy-coco{
		width:150px;
	}
	.p-style{
		font-size:14px;
	}
	.coco-pos{
		width:200px;
		right:200px;
	}
	.bloc-right{
		right:0px;
	}
	.pack-pos-fresa{
		position:absolute;
		bottom:0px;
		width:450px;
		right:0px;
	}
	.amazon-btn-fresa{
		right:0px;
	}
	.fresa-copy{
		position:absolute;
		left:20px;
	}
	.fresa-bloc{
		top:0px;
	}
	.fresa-pos{
		right:0px;
		width:250px;
	}
	.mango-bloc{
		top:0px;
	}
	.pack-pos-mango{
		width:450px;
		left:200px;
	}
	.mango-pos{
		left:0px;
		width:250px;
	}
	.copy-mango{
		right:10px;
		width:250px;
		bottom:150px;
	}
	.chili-bloc{
		top:0px;
	}
	.pack-pos-chili{
		width:450px;
		right:-50px;
	}
	.chili-pos{
		top:0px;
		width:150px;
		right:100px;
	}
	.chili-copy{
		width:250px;
		left:50px;
	}
	.amazon-btn-chili{
		bottom:50px;
		left:0px;
	}
	.pineapple-bloc{
		top:0px;
	}
	.pina-pack-pos{
		width:450px;
		left:200px;
	}
	.pina-pos{
		width:200px;
		left:100px;
	}
	.copy-pina{
		right:0px;
		width:250px;
		top:250px;
	}
	.heading-mission{
		font-family:"Open Sans";
		font-weight:800;
		color:var(--swatch-var-7686)!important;
	}
	.column-flex{
		align-items:flex-start;
	}
	
}

@media (max-width: 767px){
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.logo-style{
		width:150px;
	}
	.paragraph-about{
		top:450px;
	}
	.fresa-updates{
		right:100px;
		top:70px;
	}
	.mango-about{
		bottom:200px;
	}
	.form-div{
	}
	.contact-mango{
		width:200px;
	}
	.contact-fresa{
		width:200px;
	}
	.contact-coco{
		width:200px;
		bottom:50px;
	}
	.contact-pina{
		width:200px;
		bottom:50px;
	}
	.paragraph-story{
		width:100%;
	}
	.bloc-left{
		left:0px;
	}
	.coco-pack-pos{
		left:150px;
		bottom:0px;
	}
	.copy-coco{
		width:200px;
		top:50px;
		right:10px;
	}
	.p-style{
		font-size:12px;
	}
	.amazon-btn{
		width:150px;
		right:50px;
		bottom:0px;
	}
	.coco-pos{
		width:150px;
		right:250px;
		top:-100px;
	}
	.bloc-right{
		right:0px;
	}
	.pack-pos-fresa{
		bottom:150px;
		left:250px;
	}
	.fresa-pos{
		right:0px;
		width:200px;
		top:100px;
	}
	.fresa-copy{
		width:220px;
		left:10px;
	}
	.img-copy-coco{
		width:150px;
	}
	.amazon-btn-fresa{
		right:0px;
		width:150px;
		bottom:200px;
	}
	.fresa-bloc{
	}
	.paragraph-footnote{
		top:500px;
	}
	.pineapple-dry-style{
		right:0px;
		width:250px;
	}
	.strawberry-dry-style{
		width:250px;
		left:-80px;
		top:-100px;
	}
	.div-coco-mvl{
		background-color:#469B8D;
		border-radius:300px 300px 300px 300px;
		padding:50px 50px 50px 50px;
		display:flex;
		align-items:center;
		justify-content:center;
		flex-direction:column;
		height:500px;
		width:500px;
	}
	.amazon-btn-mvl{
		position:absolute;
		right:0px;
		bottom:0px;
	}
	.p-movil{
		font-size:20px;
	}
	.img-pack-mvl{
		z-index:2;
		position:relative;
		width:70%;
		top:0px;
	}
	.div-fresa-mvl{
		top:0px;
		position:relative;
		border-radius:300px 300px 300px 300px;
		background-color:#BB3E60;
		height:500px;
		display:flex;
		flex-direction:column;
		align-items:center;
		justify-content:center;
		padding:50px 50px 50px 50px;
		width:500px;
	}
	.div-mango-mvl{
		position:relative;
		top:0px;
		display:flex;
		flex-direction:column;
		align-items:center;
		justify-content:center;
		background-color:#C45F15;
		height:500px;
		padding:50px 50px 50px 50px;
		border-radius:300px 300px 300px 300px;
		width:500px;
	}
	.div-chili-mvl{
		height:500px;
		padding:50px 50px 50px 50px;
		border-radius:300px 300px 300px 300px;
		background-color:#FDCC01;
		flex-direction:column;
		align-items:center;
		justify-content:center;
		position:relative;
		top:0px;
		display:flex;
		width:500px;
	}
	.copy-mvl{
		margin-bottom:20px;
	}
	.column-center{
	}
	.heading-mission{
		font-family:"Open Sans";
		font-weight:800;
		color:var(--swatch-var-7686)!important;
	}
	.column-flex{
		align-items:flex-start;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.sticky-nav-bar{
		top:0px;
		z-index:200;
	}
	.bloc-divider-t-style{
		height:20px;
	}
	.mango-about{
		width:100px;
		bottom:150px;
	}
	.paragraph-about{
		top:250px;
	}
	.fresa-updates{
		right:0px;
		width:200px;
		top:50px;
	}
	.bloc-divider-t-fill{
		height:20px;
	}
	.paragraph-story{
		width:100%;
	}
	.contact-mango{
		width:200px;
		left:-50px;
	}
	.form-contact{
		padding:20px 20px 20px 20px;
	}
	.contact-fresa{
		top:0px;
		right:-50px;
		width:200px;
	}
	.contact-coco{
		width:200px;
		left:-50px;
		bottom:100px;
	}
	.contact-pina{
		right:-50px;
		bottom:100px;
		width:200px;
	}
	.form-style{
		border-radius:15px 15px 15px 15px;
	}
	.form-div{
		z-index:1;
	}
	.bloc-left{
		position:relative;
		left:0px;
	}
	.amazon-btn{
		width:100px;
	}
	.logo-style{
		width:100px;
		margin-top:10px;
	}
	.paragraph-footnote{
		bottom:0px;
	}
	.pineapple-dry-style{
		width:150px;
		right:0px;
	}
	.strawberry-dry-style{
		top:-100px;
		width:200px;
		left:0px;
	}
	.div-coco-mvl{
		background-size:cover;
		background-position:center center;
		background-color:#469B8D;
		border-radius:500px 500px 500px 500px;
		position:relative;
		padding-left:30px;
		padding-top:30px;
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		padding-right:30px;
		width:300px;
		height:300px;
		top:0px;
	}
	.div-bkgrnd-mvl{
		background-color:#469B8D;
	}
	.img-pack-mvl{
		position:absolute;
		z-index:1;
		width:350px;
		top:-50px;
	}
	.copy-mvl{
		width:150px;
		margin-top:20px;
	}
	.amazon-btn-mvl{
		position:absolute;
		width:150px;
		bottom:-40px;
		right:0px;
	}
	.div-fresa-mvl{
		background-size:cover;
		background-position:center center;
		background-color:#BB3E60;
		border-radius:500px 500px 500px 500px;
		position:relative;
		top:0px;
		padding-left:30px;
		padding-top:30px;
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		padding-right:30px;
		width:300px;
		height:300px;
	}
	.img-fresa-co-style{
		width:120px;
	}
	.div-mango-mvl{
		background-size:cover;
		background-position:center center;
		background-color:#C45F15;
		border-radius:500px 500px 500px 500px;
		position:relative;
		top:0px;
		padding-left:30px;
		padding-top:30px;
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		padding-right:30px;
		width:300px;
		height:300px;
	}
	.p-movil{
		font-size:14px;
	}
	.div-chili-mvl{
		background-size:cover;
		background-position:center center;
		background-color:#FDCC01;
		border-radius:500px 500px 500px 500px;
		position:relative;
		top:0px;
		padding-left:30px;
		padding-top:30px;
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		padding-right:30px;
		width:300px;
		height:300px;
	}
	.bloc-purpose{
		margin-top:200px;
	}
	.h3-style{
	}
	.heading-mission{
		font-family:"Open Sans";
		font-weight:800;
		color:var(--swatch-var-7686)!important;
	}
	.column-flex{
		align-items:flex-start;
	}
	.video-bloc{
		margin-top:200px;
	}
	
}

