body{
    background:#eee;
}

.card{
    border:none;

    position:relative;
    overflow:hidden;
    border-radius:8px;
    cursor:pointer;
}

.card:before{
    
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background-color:#bee7d3;
    transform:scaleY(1);
    transition:all 0.5s;
    transform-origin: bottom
}

.card:after{
    
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background-color:#098e47;
    transform:scaleY(0);
    transition:all 0.5s;
    transform-origin: bottom
}

.card:hover::after{
    transform:scaleY(1);
}


.fonts{
    font-size:15px;
}

.social-list{
    display:flex;
    list-style:none;
    justify-content:center;
    padding:0;
}

.social-list li{
    padding:10px;
    color:#098e47;
    font-size:19px;
}


.buttons button:nth-child(1){
       border:1px solid #098e47 !important;
       color:#098e47;
       height:40px;
}

.buttons button:nth-child(1):hover{
       border:1px solid #098e47 !important;
       color:#fff;
       height:40px;
       background-color:#098e47;
}

.buttons button:nth-child(2){
       border:1px solid #098e47 !important;
       background-color:#098e47;
       color:#fff;
        height:40px;
}