/* animations */
#parent {
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    overflow-x: hidden;
    scrollbar-color: #aaa;
    scrollbar-width: thin;
    z-index: 990000;
    scroll-behavior: smooth;
}

.hidden{
    display: none;
}

#loader{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 1;
    transition: top 3s, opacity 0.3s;
    z-index: 99999999;
    background: linear-gradient(90deg, #333, #00000000);
}

#loader.done{
    top: -150%;
    opacity: 0;
    background: linear-gradient(90deg, #333, #00000000 100%);
}




/*landing pagger */
.pagger-container{
    width: 100%;
    height: 100vh;
    min-height: 400px;
    position: relative;
}

.hero{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    text-shadow: 0px 0px 10px #000000;
    font-weight: bold;
    justify-content: flex-end;
    background: linear-gradient(120deg, #000000aa 20%, #ffffff1a 80%);
}

.pagger.row .hero{
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.hero .name{
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.hero .description{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero h1 {
    font-size: 50px;
    color: var(--clr);
}
.hero h3 {
    font-size: 20px;
    color: #fff;
}
.hero p {
    font-size: 16px;
    padding-top: 20px;
    color: #bbb;
}

a.button {
    position: relative;
    cursor: pointer;
    width: fit-content;
    border-radius: 9px;
    text-decoration: none;
    text-shadow: none;
    background-color: #fff;
    color: #fff;
    letter-spacing: .05em;
    text-transform: uppercase;
    overflow: hidden;
    min-height: 40px;
    display: flex;
    padding: 10px 25px 10px 15px;
    justify-content: center;
    align-content: center;
    transition: all 1s;
}

a.button:hover {
    transition: 0.5s;
    letter-spacing: 0.15em;
    background-color: var(--clr);
    box-shadow: 0 0 15px var(--clr);
}

a.button:after {
    position: relative;
    right: 0px;
    content: ' >';
    font-weight: bold;
    color: #fff;
    animation-name: point;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

a.button:before {
    content: "";
    position: absolute;
    border-radius: 8px;
    inset: 2px;
    background-color: #27282c;
    animation-name: rotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

a.button:hover::after {
    transition: 0.5s;
    position: relative;
    letter-spacing: 0.15em;
    color: var(--clr);
}

a.button b::before {
    content: '';
    position: absolute;
    width: 240%;
    height: 10px;
    left: -70%;
    transform: rotate(150deg);
    background-color: #27282c;
    transition: 1s;
}

a.button:hover b::before {
    transform: rotate(210deg);
}

a.button span {
    position: relative;
}

a.button span::before {
    position: relative;
}

a.button:hover span {
    color: var(--clr);
}

@keyframes point {
    from {right: -5px;}
    to {right: -15px;}
}











.products{
    position: relative;
    left: 0;
    width: 100%;
    padding:0;
    margin: 0;
}

.products__wrapper{
    position: relative;
    padding: 10px;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
}

.products__wrapper .lists{
    display: flex;
    height: fit-content;
}

.section{
    position: relative;
    transition: 1s;
    transition-delay: 0.2s;
    opacity: 0;
    width: 100%;
    top: -60px;
    height: fit-content;
    min-height: fit-content;
    transform: rotate(-2deg) ;
    overflow: hidden;
}


.section::before{
    position: absolute;
    content: '';
    width: 500px;
    height: 500px;
    background: linear-gradient(yellow, #00000000);
    opacity: 0.1;
    transform: translate(-50%, -50%);
    box-shadow: 50px 10px 30px #000;
    left: 70%;
    border-radius: 50%;
}



.section.inside{
    opacity: 1;
    top: 0;
    transform: rotate(0);
}




.pop{
    transition: .5s;
    transition-delay: .4s;
    opacity: 0.1;
    transform: scale(.8);
    transform: translate(2px, 13px);
    transform:rotate(1deg);
}
.pop.inView{
    opacity: 1;
    transform: scale(1);
    transform: translate(0,0);
    transform:rotate(0deg);
}

.delay1{
    transition: .3s;
}
.delay2{
    transition: .5s;
}
.delay3{
    transition: .8s;
}
.delay4{
    transition: 1s;
}


.fromLeft{
    left: -100%;
 }
 
 .fromLeft.inView{
     left: 0;
 }

.fromRight{
   left: 100%;
}

.fromRight.inView{
    left: 0;
}





/*values*/
.values-container{
    width: 80%;
    margin: 0px auto;
    padding-top: 50px;
}

.values-container h1{
    color: #fff;
}

.values-container .values-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    grid-auto-rows: minmax(100px, auto);
}

.values-container .value{
    margin-top: 25px;
}

.values-container .value .col.icon{
    flex: 0;
    padding: 5px;
}
.values-container .value .col.icon svg{
    width: 50px;
    height: 50px;
    fill: #fff;
    padding: 5px;
}


.values-container .value .title{
    padding: 10px 0px;
    flex: 1;
    color: #fff;
    position: relative;
}

.values-container .value b{
    color: #ffffffdd;
}

.values-container .value .title::after{
    content: "";
    width: 50%;
    height: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border: 2px solid #00aa00aa;
}

.values-container .value p{
    padding: 15px 0px 5px 0px;
}






/* testimonials */
.section.testimonials{
    display: flex;
    background-color: #335;
    justify-content: center;
}

.testimonials-container{
    padding: 80px 30px 10px 30px;
    width: 95%;
    max-width: 800px;
    margin: 5px auto;
}

.testimonial{
    position: relative;
    display: flex;
    width: 100%;
    margin: 10px;
    gap: 15px;
    justify-content: flex-start;
}

.testimonial.fromRight{
    justify-content: flex-end;
}

.testimonial:nth-child(even){
    align-self: flex-end;
}

.testimonial .avatar{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #aaa;
    border-radius: 50%;
}

.testimonial .testimony{
    position: relative;
    background-color: rgb(229, 229, 229);
    border: 1px solid rgb(50, 49, 49);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    color: #333;
    width: 70%;
}

.testimonial .testimony::before{
    position: absolute;
    content: '';
    width: 12px;
    height: 15px;
    background-color:  rgb(229, 229, 229);
    left:-10px;
    top: 15px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%, 100% 0)
}

.testimonial .testimony .testimony__title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #44a;
    padding-bottom: 5px;
}

.testimonial .testimony .testimony__title span{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.testimonial .desc{
    align-self: flex-end;
    font-size: 13px;
    color: #44a;
}






/* contact */
.contact-container{
    padding: 80px 30px 10px 30px;
    width: 95%;
    max-width: 800px;
    margin: 5px auto;
}

.contact-container .contact > .row{
    gap: 30px;
    padding-top: 20px;
}




/*hero */
.section.hero{
    height: 100vh;
}






/*team */
.section{
    min-height: 100vh;
    width: 100%;
}

.section.team{
    width: 100%;
    padding: 0px;
    min-height: 100vh;
    padding: 10px;
    background: linear-gradient(#ffaa0012, #00000000);
}

.team-container{
    padding: 80px 30px 10px 30px;
    width: 95%;
    max-width: 800px;
    margin: 5px auto;
}
.team-container #slides{
    flex: 1.5;
    color: #fff;
    height: 100vh;
    height: 600px;
    width: 100%;
}

.team-container .fade-slideshow{
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 80px);
    padding: 0px;
    margin: 0px;
}
.team-container .fade-slideshow .details{
    background: linear-gradient(0deg, #0000003a 50%, #00000000 80%);
    color: #00ffff;
}
.team-container .fade-slideshow .details h3{
    color: #ffd900;
}

.management-tree{
    width: 100%;
    font-size: 13px;
}

.management-tree .col{
    margin: 0px 0px;
    width: 100%;
    gap: 0px;
}

.management-tree .col.branch{
    margin: 15px 0px;
    padding: 5px;
    border: 1px solid #ffffff6f;
    background-color: #aaccaa55;
    border-radius: 7px;
}

.management-tree .row{
    width: 100%;
    gap: 7px;
}

.management-tree a{
    color: #fff;
    text-align: center;
    width:100%;
    height: fit-content;
    padding: 5px;
    text-decoration: none;
}

.management-tree .branch{
    position: relative;
    margin-top: 25px;
    position: relative;
    border-radius: 7px;
    border: 1px solid #ffffff11;
    background-color: #aaaaaa55;
    box-shadow: 0px 0px 14px #0000003a;
    overflow: visible;
    gap: 0px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}
.management-tree .branch.root{
    margin-top: 0px;
}
.management-tree .branch a{
    position: relative;
    margin: 0px;
    border-bottom: 1px solid #ffffff4f;
    width: 100%;
}
.management-tree .branch a:last-child{
    border: 0px;
}

.management-tree .branch a:hover{
    background: radial-gradient(#ffffff99, #aaaaaa55);
    text-shadow: 0px 0px 3px #000000;
    color: white;
}
.management-tree .branch a:active{
    background: radial-gradient(#ffffff99, #cccccc55);
    text-shadow: 0px 0px 3px #aaaaaa55;
    color: #333;
}
.management-tree a.branch:hover{
    background: radial-gradient(#ffffff66, #aaaaaa55);
    text-shadow: 0px 0px 3px #000000;
    color: white;
}
.management-tree a.branch:active{
    background: radial-gradient(#ffffff99, #cccccc55);
    text-shadow: 0px 0px 3px #aaaaaa55;
    color: #333;
}



.management-tree .branch:not(.root)::after{
    --t: 45%; /* control the tail part */
    --h: 40%; /* control the head part */
    position: absolute;
    left: calc(50% - 8px);
    top: -26px;
    content: "";
    aspect-ratio: 2/3;
    width: 15px;
    height: 25px;
    background: linear-gradient(0deg, #ffffffaa 30%, #88888866 80%);
    clip-path: polygon(calc(50% - var(--t)/2) 0,calc(50% - var(--t)/2) calc(100% - var(--h)),0 calc(100% - var(--h)),50% 100%,100% calc(100% - var(--h)),calc(50% + var(--t)/2) calc(100% - var(--h)),calc(50% + var(--t)/2) 0);
}


.tiles .row.vert-col{
    gap: 20px;
}




.col.spaced-list {
    padding: 10px;
    flex: 1.7;
    width: 80%;
    height: fit-content
}

.spaced-list .item{
    margin-bottom: 15px;
    color: #ffffffaa;
}
.spaced-list .item b{
    line-height: 200%;
    color: #ffffffff;
}

.item.title{
    width: 100%;
    display: flex;
    line-height: 200%;
    justify-content: center;
    align-items: center;
}


.pagger.coffee-variety{
    width: 100%;
    height: 380px;
    margin: 10px 0px;
    background: linear-gradient(100deg, #33000022 50%, #000000aa);
}

.pagger.coffee-variety .page{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;   
    padding: 30px 15px;
    background: linear-gradient(290deg, #00660011 20%, #00000000 70%);
}
.pagger.coffee-variety .tiles{
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.desc-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10%;
}

.desc-section *{
    width: 100%;
}

.desc-section p{
    text-align: center;
}





/* about */
.about{
    position: relative;
    width: 100%;
    padding:0;
    margin: 0;
    background: linear-gradient(#649f9959, #ffffff30);
}

.about__wrapper{
    position: relative;
    padding: 80px 30px 10px 30px;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
}

.about .title{
    font-weight: bold;
    padding: 15px 0 5px 0;
    font-weight: bold;
}

.about .cards{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.about__card{
    position: relative;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}


.about__card .imgs__wrapper{
    z-index: 99;
    position: relative;
    flex: 3;
    box-shadow: 0px 0px 15px #000000aa;
}

.about__card .imgs__wrapper .imgs{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    border: 2px solid #eee;
}

.about__card .imgs .bigs{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: 6;
    height: 100%;
}

.about__card .imgs .smalls{
    display: flex;
    flex-direction: rows;
}

.about__card .imgs .bigs img{
    padding: 0px;
    height: 200vh;
    width: 100%;
    min-height: 100%;
    flex: 5;
    object-fit: cover;
}

.about__card .imgs .smalls img{
    padding: 5px;
    width: 33.3%;
    height: 120px;
    object-fit: contain;
    background-color: white;
}

.about__card .desc__wrapper{
    display: flex;
    justify-content: space-between;
    flex: 3;
    background-color: transparent;
    color: white;
    flex-direction: column;
}

.about__card .desc__wrapper .desc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.about__card .desc__wrapper .desc p{
    padding: 15px;
}

.about__card .desc__wrapper .infos{
    z-index: 55;
    display: flex;
    align-self: flex-end;
    width: 100%;
    background-color: #bed0c1;
    color: #33a;
    font-weight: bold;
    text-transform: uppercase;
    align-items: center;
    align-self: center;
    justify-content: space-between;
    box-shadow: 0px 0px 5px #000000aa;
}

.about__card .desc__wrapper .infos .info{
    display: flex;
    flex: 2;
    padding: 5px 20px 5px 20px;
    gap: 10px;
    align-items: center;
    align-self: center;
    justify-content: flex-start;
}

.about__card .desc__wrapper .infos .info:nth-child(1){
    flex: 5;
}

.about__card .desc__wrapper .infos img{
    height: 25px;
}

.about .artifacts{
    z-index: 9000;
    position: absolute;
    width: 140px;
    max-width: 30%;
    height: auto;
    right: 10px;
    top: 40px;
    display: hidden;
}
.about .artifacts.big{
    z-index: -5;
    left: 0;
    top: -30px;
    bottom: 0;
}











.section.footer{
    width: 100%;
    height: fit-content;
    min-height: fit-content;
    background-color: #bed0c1;
    background: linear-gradient(0deg,#403e27 15%, #131a1a 100%);
    border-top: 1px solid rgb(62, 62, 62);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.638);
    display: flex;
    align-items: flex-start;
    color: #aaa;
    flex-direction: column;
    padding-bottom: 0px;
}

.footer__wrapper{
    flex: 6;
    display: flex;
    width: 80%;
    flex-direction: row;
    align-items: center;
    align-self: center;
    justify-content: space-between;
    margin-top: 20px;
}

.footer__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    padding: 20px;
    width: 50%;
}

.footer__content img{
    height: 80px;
}

.footer__content *{
    padding-bottom: 5px;
}

.footer__content .contact{
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.footer .subscribe{
    background: rgb(179, 6, 6);
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    font-size: 13px;
    padding: 0px;
    margin: 15px 0 10px 0;
    box-shadow: 0 0 15px #000000aa;
}

.footer .subscribe span{
    margin: 10px;
    margin-bottom: 0;
}


.footer .subscribe .form{
    margin: 5px;
    background: white;
    display: flex;
    flex-direction: row;
    padding: 0px;
    border-radius: 7px;
    box-shadow: 0 0 5px #4d4949aa;
    border: 1px solid #000000aa;
}

.footer .subscribe .form #sub_email{
    outline: none;
    border: 0px;
    display: flex;
    align-items: center;
    margin: 2px;
    flex: 3px;
    padding: 7px;
    flex: 4;
}

.footer .subscribe .form .button{
    outline: none;
    border: 0px;
    display: flex;
    align-items: center;
    margin: 0px;
}

.footer .contact .desc{
    margin-top: 15px;
}



.footer__content .desc{
    font-size: 14px;
    color:rgb(116, 116, 116)
}

.footer__content .social{
    margin-top: 10px;
    width:100%;
    display: flex;
    justify-content: space-evenly;
}

.footer__content .social img{
    width: 50px;
    height: 50px;
    padding: 7px;
}



.footer__content .address{
    display: flex;
    flex-direction: column;
}

.footer__content .address .title{
    font-size: 20px;
    color: rgb(1, 164, 1);
    font-weight: bold;
}

.footer__content .info{
    font-size: 14px;
    display: flex;
    padding: 0px;
}

.footer__content .infos{
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.footer__content svg{
    min-width: 45px;
    min-height: 45px;
}


.footer__content .address svg{
    min-width: 25px;
    min-height: 25px;
}

.footer__content .address .subtitle{
    font-size: 16px;
    color: rgb(0, 128, 0);
    padding-bottom: 4px;
    font-weight: bold;
}

.footer__content .address .description{
    font-size: 14px;
    padding-bottom: 4px;
}

.footer__content .address .info{
    display: flex;
    flex-direction: row;
}

.footer__content .address .info svg{
    display: flex;
    flex-direction: column;
    flex: 0;
    margin-right: 10px;
}

.footer__content .address .info .infos{
    display: flex;
    flex-direction: column;
    flex: 1;
}



.copy__right{
    width: 100%;
    padding: 8px;
    background-color: #000;
    border-top:1px solid rgb(37, 29, 29);
    box-shadow: 1px -3px 13px rgb(0, 0, 0);
    color: #eee;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.copy__right span{
    flex: 7;
    color:rgb(89, 89, 89);
    text-align: center;
}

.copy__right a{
    flex: 2;
    font-size: 12px;
    color:rgb(132, 132, 132)
}

.footer svg{
    transition: 0.5s;
    fill:rgb(132, 132, 132);
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
}

.footer svg:hover{
    fill: white;
}



.commitment .row:nth-child(even){
    flex-direction: row-reverse;
}

.commitment .col{
    gap: 25px;
}
.commitment .row{
    gap: 25px;
}
.commitment .row img{
    max-height: 300px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}


.about{
    background-color: #00ffff11;
}

.about .title{
    color: #fff;
    padding-bottom: 10px;
}
.commitment .title::after{
    content: "";
    width: 50%;
    height: 0px;
    position: absolute;
    bottom: 5px;
    left: 0px;
    border: 2px solid #aa8b00aa;
}










#products{
    background-color: #000fff22;
    padding: 80px 20px 20px 20px;
}

#products .title{
    color: #fff;
}

.products-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    grid-auto-rows: minmax(100px, auto);
    margin-bottom: 10px;
}


.product-item {
    border: 1px solid #ffffff55;
    background: linear-gradient(120deg, #ffffff55 20%, #00000022);
    border-radius: 5px;
    color: #fff;
    box-shadow: 0px 0px 15px #000;
    text-shadow: 2px 2px 5px #00000055;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

#products .product-item .title{
    color: #fa0;
    font-size: 18px;
}

.product-item .icon {
    height: 100%;
    width: 30%;
    margin: 0px;
    left: 0px;
    top: 0px;
    position: relative;
}

.product-item a.button{
    background-color: #ffffff12
}


.product-item img {
    height: 100%;
    width: 100%;
    margin: 0px;
    object-fit: cover;
    position: absolute;
}
.product-item .desc{
   display: flex;
   flex-direction: column;
   gap: 7px;
   padding: 10px 10px;
   font-size: 14px;
   flex: 1.5;
   padding: 5px;
}

.product-item .title{
    padding: 0px;
    font-size: 17px;
}



.quick-links{
    z-index: 888;
    border: 1p solid red;
    align-self: flex-start;
}

.quick-links a{
    text-decoration: none;
    color: #ffffffaa;
    padding: 3px;
    display: block;
}
.quick-links a:hover{
    color: #fff;
    border-bottom: #fff;
    text-decoration: underline;
}










@media (max-width: 650px) {
    .footer__wrapper {
        margin: 5px;
        flex-direction: column;
        width: 100%;
    }

    .about__wrapper {
        width: 100%;
    }

    .values-container {
        width: 100%;
        padding: 20px;
    }

    .products__wrapper{
        width: 100%;
    }

    .row.product-item{
        flex-direction: column;
    }
    .row.product-item .icon{
        width: 100%;
        height: fit-content;
        min-height: 150px;
    }
    .row.product-item .desc{
        width: 100%;
        height: fit-content;
        padding: 10px;
    }

    .footer__wrapper .footer__content {
        width: 100%;
    }

    .values-container .values-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        grid-auto-rows: minmax(100px, auto);
    }

    .toCol{
        flex-direction: column !important;
    }
}

@media (max-width: 950px){
    .header{
    overflow: visible;
}

.header .nav__list{
    transition: 1s;
    position: absolute;
    display: flex;
    flex-direction: column;
    height: fit-content;
    bottom: 80px;
    left: 0px;
    width: 100%;
    background-color: #248b2b;
    background: linear-gradient(#248b2b 60%, #0c7817 100%);
}

.header .nav__list.active{
    /* top: 0px; */
    transition: 1s;
    bottom: auto;
    left: 0px;
    top: 60px;
}


.header svg{
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
}

.header .nav__list a{
    text-align: center;
    width: 100%;
    padding: 5px 15px 5px 15px;
}

.header .nav__list a span{
    text-align: center;
    width: 100%;
}

.nav .toggles {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    display: flex;
}

    .products-list{
        grid-template-columns: repeat(1, 1fr);
    }
}


.coffee-card{
    border: 1px solid #ffffffaa;
    box-shadow: 0px 0px 10px #00000077;
    border-radius: 7px;
    background: #000a00; 
    position:relative; 
    min-height: 500px;
    flex: 1;
    color: #fff !important;
    transition: all .3s;
    overflow: hidden;
}

.coffee-card .bg{
    opacity: 1;
    width: 100%;
    width: 100%;
    position: relative; 
    overflow: hidden; 
    transition: all 0.3s;
}

.coffee-card .bg img{
    object-fit: cover;
}

.coffee-card .bg::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,#000000bb 50%, #00000000 80%);
}

.coffee-card .desc{
    position: relative;
    opacity: 1;
    transition: all 0.3s;
}
.coffee-card .details{
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
}
.coffee-card:hover .desc{
    position: absolute;
    opacity: 0;
}
.coffee-card:hover .details{
    position: relative;
    opacity: 1;
}
.coffee-card .button{
    position: relative;
    opacity: 1;
    bottom: 0px;
}

.coffee-card:hover .bg{
    opacity: 0.04;
}
