<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}body{margin:0;padding:0}

html, body {
    scroll-behavior: smooth;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}


/* ----------HEADER---------- */
/* ----------HEADER---------- */
/* ----------HEADER---------- */

header {
    background-color: #67543d;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
    position: relative;
}

.header__container-logo {
    width: 100%;
    text-align: center;
}

.header__container-logo img {
    width: 80%;
    max-width: 700px;
    margin: auto;
}

h1 {
    display: inline-block;
    font-family: 'Montserrat',sans-serif;
    text-align: center;
    color: #FFFFFF;
    font-size: 4rem;
    margin: 0;
    padding: 20px 0;
}

.header__container-mouse {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
}

.header__container-mouse img {
    width: 30px;
    margin: auto;
}


/* ---------------MAIN--------------- */
/* ---------------MAIN--------------- */
/* ---------------MAIN--------------- */

main {
    width: 100%;
    background-color: rgba(103, 84, 61, .9);
}

.main__container-beer {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.beer__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.beer__item-img {
    width: 30%;
    padding: 0;
    margin: auto;
    margin-top: 50px;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; */
}

.beer__item-img img {
    width: 100%;
    max-width: 350px;
}

.beer__item-txt {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    padding: 30px;
}

.item-txt__marca,
.item-txt__precio {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fceeca;
}

.item-txt__marca  span {
    text-transform: none;
    font-size: 2rem;
    color: #d4b055;
    font-weight: 600;
}




/* ---------------FOOTER--------------- */
/* ---------------FOOTER--------------- */
/* ---------------FOOTER--------------- */



.custom-shape-divider-bottom-1620902257 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

footer {
    width: 100%;
    height: 200px;
    background-color: rgba(103, 84, 61, .9);
    position: relative;
}

.custom-shape-divider-bottom-1620902257 svg {
    position: relative;
    display: block;
    width: calc(284% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-1620902257 .shape-fill {
    fill: #67543d;
}


.container-footer {
    width: 100%;
    position: relative;
    height: 60px;
    background-color: transparent;
}

.fondo-logo-footer {
    width: 100%;
    background-color: #67543d;
    padding: 0;
}

.cont_logo_footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.cont_logo_footer img {
    width: 200px;
    padding: 0;
    margin: 0;
}

.copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: .9em;
    line-height: 1.5em;
    font-weight: 400;
    color: #FFFFFF; 
    text-align: left;
}









/* ----------MEDIA QUERIS---------- */
/* ----------MEDIA QUERIS---------- */
/* ----------MEDIA QUERIS---------- */

@media screen and (max-width:890px) {
    .item-txt__marca,
    .item-txt__precio {
        font-size: 2rem;
    }

    .item-txt__marca  span {
        font-size: 1.5rem;
    }
}


@media screen and (max-width:768px) {

    h1 {
        font-size: 2rem;
    }

    .beer__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .beer__item-img {
        width: 100%;
        text-align: center;
    }

    .beer__item-img img{
        text-align: center;
        margin: auto;
        width: 70%;
    }

    .beer__item-txt {
        width: 100%;
        padding: 10px 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
    }

    .item-txt__marca,
    .item-txt__precio {
        font-family: 'Montserrat', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #fceeca;
        text-align: center;
    }

    .item-txt__marca  span {
        text-transform: none;
        font-size: 1.5rem;
        text-align: center;
    }

    .beer__item {
        margin-top: 70px;
    }

    


}
</pre></body></html>