/* COMMON  */
:root{
    --color-menu:#14407F;
    --color-back-menu:#ffffff;
    --color-back-hero:#C22C42;
    --color-back-pink:#FFF0F0;
    --color-back-box:#f3f5f8;
    --color-slogan:#E96162;
    --color-back-insta:#e8ecf3;
    --color-footer:#eef1f8;
}

body{
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    margin: 0;
    line-height: 1.2em;
}
body.menu-open{
    overflow: hidden;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
h1{
    line-height: 1em;
}
h2{
    font-family: 'DM Serif Display', sans-serif;
    font-size: 2.25em;
    line-height: 1em;
    margin-bottom: 0.6em;
}
.bkg-pink {
    background-color: var(--color-back-pink);
}
.subtitle {
    color: var(--color-back-hero);
    font-weight: 700;
    font-size: 1.25em;
}
section{
    scroll-margin-top: 60px;
    @media (min-width: 992px) {
        scroll-margin-top: 80px;
    }
}

/* HEADER */
.header-sticky{
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays on top of content */
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
}
.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}
.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: 0;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}
.navbar-brand img{
    max-width: 122px;
    position: relative;
    top: 4px;
    @media (min-width: 992px) {
        max-width: 100%;
    }
}
.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    list-style: none;
    @media (min-width: 992px) {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.navbar-nav .nav-link {
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--color-menu);
    font-size: 0.9em;
    font-family: 'Inter', sans-serif;
}
/* Menu boostrap */
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    @media (min-width: 992px) {
        display: none;
    }
}
.navbar-toggler:hover {
    text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.navbar-toggler {
    color: var(--color-menu);
    border:none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(20, 64, 127, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.collapse {
    display: none;
    @media (min-width: 992px) {
        display: block !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}
.collapse.show {
    display: block;
}
/* menu mobile */
@media (max-width: 991.98px) {
    .header-sticky{
        z-index: 1100;
    }
    .navbar-brand,
    .navbar-toggler{
        position: relative;
        z-index: 1102;
    }
    .navbar-collapse{
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        flex-basis: auto;
        flex-grow: 0;
        z-index: 1101;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 0;
        overflow: hidden;
    }
    .navbar-collapse.collapse:not(.show){
        display: none !important;
    }
    .navbar-collapse.collapsing{
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 100dvh !important;
        transition: none !important;
    }
    .collapse.show.navbar-collapse{
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .navbar-nav{
        width: auto;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
    }
    .navbar-nav .nav-item{
        text-align: center;
    }
    .navbar-nav .nav-link{
        font-size: 1.5rem;
        padding: 0.25rem 1rem;
    }
}
/* Hero part */
.hero{
    background-color: var(--color-back-hero);
    padding-top: 3em;
}
.hero-title{
    font-family: 'DM Serif Display', sans-serif;
    font-size: 3.4em;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    @media (min-width: 992px) {
        font-size: 8em;
        margin-bottom: 1rem;
        line-height: 1em;
    }
}
.hero-txt{
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    z-index: 2;
    position: relative;
    line-height: 1.5em;
    @media (min-width: 992px) {
        text-align: left;
        min-height: 440px;
    }
}
.hero-txt-image{
    position: relative;
}
.img-hero-desktop {
    position: absolute;
    z-index: 1;
    right: 0;
    @media (min-width: 992px) and (max-width: 1200px) {
        right: -15px;
        max-width: 740px;
    }
}
.hero-item-icon{
    margin-bottom: 1.5em;
    color: #ffffff;
}
.hero-icon{
    width: 57px;
    height: auto;
    margin-bottom: 1em;
}


/* text-image */
.text-image{
    padding-top: 5rem;
    padding-bottom: 4rem;
    line-height: 1.4em;

}

.text-image .item-image{
    margin-bottom: 2em;
    @media (min-width: 768px) {
        margin-bottom: 0;
    }
}
.text-image .item-text{
    text-align: center;
    @media (min-width: 768px) {
        text-align: left;
    }
}
.text-image-2{
    padding-top: 0;
    @media (min-width: 768px) {
        padding-top: 5rem;
    }
}
.text-image-2 .item-image{
    @media (min-width: 768px) {
        padding-top: 3.5em;
    }
}
.item-image-bullet{
    margin-bottom: 0.5em !important;
}
.text-image-2 .item-image img{
    padding-left: 0;
    /* max-width: 380px; */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    @media (min-width: 768px) {
        padding-left: 1.5em;
    }

}
.text-image-2 .item-text{
    text-align: left;
}

.list-star{
    list-style-image: url("../media/star_small.webp");
    padding-left: 1.5em;
}
.list-star li{
    margin-bottom: 0.3em;
}


/* box */
.box-highlighted{
    padding-top: 3em;
    padding-bottom: 3em;
    @media (min-width: 768px) {
        padding-top: 5em;
        padding-bottom: 5em;
    }
}
.box-highlighted .box-item{
    background-color: var(--color-back-box);
    border-radius: 20px;
    padding: 1em 1em;
    margin-bottom: 2em;
    @media (min-width: 768px) {
        margin-bottom: 0;
    }
}
.box-highlighted .box-image {
    margin-bottom: 1.5em;
}
.box-highlighted .box-title h2{
   font-size: 1.5em;
   margin-bottom: 0.8em;
}
/* image background */

.image-background {
    background-image: url('../media/img_back_mobile.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 1.5em;
    padding-top: 14em;
    position: relative;
    aspect-ratio: 0.6;
}

@media (min-width: 450px) {
    .image-background {
        aspect-ratio: 1.1;
    }
}

@media (min-width: 768px) {
    .image-background {
        background-image: url('../media/image_back.webp');
        padding-bottom: 7em;
        padding-top: 7em;
        background-position: right center;
        aspect-ratio: 2;
    }
}
.image-background .box-image-back{
    background-color: rgba(243, 245, 248, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Safari */
    padding: 2em 1.5em;
    border-radius: 20px;
    max-width: 500px;
    right: 27px;
    width: 90%;
    bottom: 40px;
    position: absolute;
    @media (min-width: 768px) {

    }

}
.image-background .title-image-back h2{
    color: var(--color-back-hero);
    font-size: 1.6em;
    @media (min-width: 768px) {
        font-size: 2.25em;
    }

}
.image-background .subtitle{
    color: #000000;
    font-size: 1.2em;
    font-weight: 400;
    @media (min-width: 768px) {
        font-size: 1.3em;
    }
}

/* Cards */
.cards{
    padding-bottom:5em;
    padding-top: 5em;
}
.items-cards{
    margin-top: 3em;
}
@media (min-width: 768px) {
    .items-cards .row > [class*="col-"]{
        display: flex;
    }
    .items-cards .card{
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }
    .items-cards .card .card-button{
        margin-top: auto;
    }
}
.card{
    background-color: var(--color-back-pink);
    border: none;
    padding: 1.5em;
    border-radius: 10px;
    position: relative;
    margin-bottom: 4rem;
    @media (min-width: 992px) {
        margin-left: 2em;
        margin-right: 2em;
    }

}
.card .slogan{
    background-color: var(--color-slogan);
    color: #ffffff;
    padding: 0.5em 1.2em;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -25px);
    line-height: 1;
    min-width: 210px;
}
.card .card-image{
    margin-bottom: 1.5em;
}
.card .card-title h3{
    font-size: 1.3em;
}
.card .card-subtitle{
    font-size: 1.1em;
}
.card .card-text{
    color: #555555;
}
.card .card-button{
    background-color: var(--color-back-hero);
    text-align: center;
    border-radius: 5px;
    line-height: 1;
    padding: 1em;
    text-transform: uppercase;
    font-size: 0.9em;
    color: #ffffff;
    text-decoration: none;
}
.card .card-button:hover{
    background-color: var(--color-menu);
    transition: background-color 0.5s;
}
.alergenos {
    flex-wrap: wrap;
}
.item-alergeno img{
    max-width: 56px;
    margin-bottom: 1em;
}
.item-alergeno {
    flex: 1 1 0px;
    padding: 0.5em 2em !important;
    @media (min-width: 768px) {
        padding: .5em !important;
    }
}

/* stories */
.stories-insta{
    padding-top: 4.5em;
    padding-bottom: 0em;
    background-color: var(--color-back-insta);
    @media (min-width: 768px) {
        padding-top: 7em;
        padding-bottom: 3em;
    }
}
.item-storie{
    position: relative;
    margin-bottom: 3.5em;
}
.item-storie .mencion{
    background-color: #ffffff;
    color: var(--color-back-hero);
    padding: 0.5em 1.2em;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -25px);
    line-height: 1;
    min-width: 210px;
    font-weight: 400;
}

.item-storie img{
    height: 100%;
}

/* banner */
.banner img{
    width: 100%;
}

/* conditions-use */
.conditions-use{
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
.conditions-use p{
    font-size: 0.8em;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.2em;
}

/* footer */
.footer{
   
}
.footer__content{
   border-top: 1px solid #d5dfed;
   padding-top: 2.5em;
}
.footer__logo{
    margin-bottom: 3em;
}
.footer__column .footer__nav-title{
    font-weight: 700;
    font-size: 1.1em;
}
.footer__column ul{
    list-style: none;
    padding-left: 0;
    margin-top: 1.2em;
}
.footer__column ul li{
    margin-bottom: 0.8em;
}
.footer__column ul li a{
    color: #000000;
    text-decoration: none;
    font-size: 0.9em;
}
.rrss-footer{
    margin-top:2em
}
.footer__rrss{
    gap: 1em;
}
.footer__content{
    margin-bottom: 5em;
}
.footer__bottom{
    background-color: var(--color-footer);
    padding-top: 1em;
    padding-bottom: 1em;
}
.footer__text{
    text-align: center;
    margin-bottom: 1em;
    @media (min-width: 768px) {
        max-width: 700px;
        text-align: left;
        margin-bottom: 0;
    }
}
.footer__copyright{
    border-top: 1px solid #d5dfed;
    padding-top: 2em;
    margin-top: 1.5em;
}
.footer__copyright .p-small{
    font-size: 0.9em;
    color: #000000;
    text-decoration: none;
}
.p-small-copyright{
    font-size: 0.9em;
    margin-top: 0.7em;
}
.footer__bottom-logo {
    margin-left: 1em;
}
.footer__bottom-logo:not(.no-path-color) svg, .footer__bottom-logo:not(.no-path-color) svg path {
    fill: #0e1f6b;
}

.footer__bottom-logo svg, .footer__logo svg {
    width: 100px;
}

.footer__pages{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer__pages li {
    margin-top: 0.7em;
    @media (min-width: 768px) {
        margin-left: 0.7em;
        margin-top: 0em;
    }
}
.footer__pages li a{
    text-decoration: none;
    color: #000000;
    font-size: 0.8em;
}
.footer__country {
    margin-top: .7em;
    margin-bottom: 2em;
    @media (min-width: 768px) {
        margin-left: 1em;
        margin-top: 0em;
        margin-bottom: 0;
    }
}
.footer__country-flag {
    margin: 0 .38889rem 0 0;
    width: 19px;
}
.bullets{
    margin-top: 30px
}

#imonuglukan > .container{
    max-width: 1219px;
}
.desc-hero{
    margin-left: 15px;
    @media (min-width: 995px) {
        width: 30%;
    }
}
