@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


#banner{
    background: url(/images/BodegaLarroc.webp);
    background-size: cover;
    position: center;
    height: 50vh;
    padding-top: -3%;
}
.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 13%;

}
.banner-text h1{
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 3px 6px rgb(0,0,0,0.4);
}


.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 43vh;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
}
.container .card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    height: 300px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
    transition: 0.5s;
}
.container .card:hover{
    height: 250px;
}
.container .card .imgBx{
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    background: #1b202e;;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}
.container .card:hover .imgBx{
    top: -60px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
.container .card .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container .card .content{
    position: absolute;
    top: 252px;
    width: 100%;
    padding: 0 30px;
    height: 35px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
}
.container .card:hover .content{
    top: 140px;
    height: 250px;
}
.container .card .content h2{
    font-size: 1.5em;
    font-weight: 700;
    color: var(--clr);
}
.container .card .content p{
    color: #333;
}
.container .card .content a{
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    background: var(--clr);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
}


@media screen and (max-width:600px){
    .banner-text h1{
        font-size: 50px;
    }
    .banner-text{
        padding-top: 30%;
    }
    #banner{
        height: 30vh;
    }
}