body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #3B3B3B;
    
}


header {
    display: flex;
    justify-content: space-between;
    background-color: #B3CACF;
    padding: 0 10%;
    color: white;
    font-size: 24px;
}

ul {
    padding: 0;
}

ul a {
    color: white;
}

ul a:hover {
    color: #FEC0C1;
}

li {
    display: inline-block;
    padding: 15px;
}

.title {
    padding: 10px;
}

.logo {
    width: 60px;
    display: inline-block;
}

.group-logo {
    display: flex;
}

.hero {
    background-color: #B3CACF;
    padding: 0 10%;
    padding-bottom: 250px;
    position: relative;
}

h1 {
    padding: 30px 0px;
    margin: 0;
    font-size: 36px;
}

.white {
    color: white;
}

.hero_box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 40px;
}

.button {
    background-color: #FEC0C1;
    border-radius: 25px;
    padding: 20px 40px;
    border: none;
    font-size: 16px;
}

.button a {
    text-decoration: none;
    color: white;
}

.button:hover {
    background-color: #b56d6ddc;
}

.description {
    line-height: 24px;
    font-size: 16px;
}

.about {
    background-color: #FFFAFA;
    padding: 0 10%;
    padding-top: 250px;
}

.about_section {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    column-gap: 40px;
}

.about img {
    max-width: 80%;
    border-radius: 10%;
}

.about p {
    text-align: justify;
}

h2 {
    margin: 0;
    padding: 30px 0;
}


.boxy {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}


.box {
    width: 250px;
    height: 380px;
    position: relative;
    display: flex;
    justify-content: center;
}

.box img {
    width: 100%;
    height: 100%;
    border-radius: 10%;
}

.box_text {
    position: absolute;
    /* bottom: 50%;
    right: 25%; */
    opacity: 0;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 10px;

}

.box:hover .box_img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.box:hover .box_text {
    opacity: 1;
    color: #FEC0C1;
}

.services {
    background-color: #FFFAFA;
    padding: 60px 10%;
}

.services_section {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    column-gap: 40px;
}

.services img {
    max-width: 80%;
    border-radius: 10%;
}

.tasting {
    background-color: #B3CACF;
    padding: 60px 10%;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    column-gap: 40px;

}

.tasting img {
    width: 200px;
    border-radius: 10%;
}


.contact {
    background-color: #FFFAFA;
    padding: 60px 10%;

}

.contact_section {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    column-gap: 40px;
}

.contact_section p {
    line-height: 2;
}

.contact img {
    max-width: 100%;
    border-radius: 10%;
}

.subscribe {
    background-color: #B3CACF;
    padding: 60px 10%;
    text-align: center;
}

.mail {
    background-color: #ebc1c1b7;
    border-radius: 25px;
    padding: 20px 40px;
    border: none;
    font-size: 16px;
    text-align: center;
    margin-right: 10px;
}

footer {
    padding: 10px 10%;

}

footer a {
    text-decoration: none;
    color: #3B3B3B;
}

.contact_section a{
    text-decoration: none;
    color: #3B3B3B;
}

@media screen and (max-width: 860px) {
    header {
        flex-direction: column;
    }

    ul {
        font-size: 18px;
    }

    h1 {
        font-size: 26px;
    }

    .hero_box {
        grid-template-columns: 1fr;
    }

    .button_box {
        justify-self: center;
    }


    .box {
        width: 120px;
        height: auto;
    }

    .box_text{
        display: none;
    }

    .hero {
        padding-bottom: 130px;

    }

    .about {
        padding-top: 90px;
    }

    .about_section {
        grid-template-columns: 1fr;
    }

    .about img {
        display: none;
    }

    .services_section {
        grid-template-columns: 1fr;
    }
    .services img{
        display: none;
    }

    .tasting{
        grid-template-columns: 1fr;

    }

    .contact_section{
        align-items: center;
    }

    .mail{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 460px) {
    .box {
        width: 90px;
        height: auto;
    }

    .box_text{
        display: none;
    }
    }