body {
    background-position: bottom; 
    background-repeat: no-repeat, repeat; 
    background-size: 100% 100%;
  }

.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:#059652;
    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:#046236;
    transform:scaleY(0);
    transition:all 0.5s;
    transform-origin: bottom
}

.card:hover::after{
    transform:scaleY(1);
}


.fonts{
    font-size:14px;
}

.social-list{
    display:flex;
    list-style:none;
    justify-content:center;
    padding:0;
}

.social-list li{
    padding:10px;
    color:#04148c;
    font-size:19px;
}


.buttons button:nth-child(1){
       border:1px solid #046236 !important;
       color:#046236;
       height:40px;
}

.buttons button:nth-child(1):hover{
       border:1px solid #046236 !important;
       color:#fff;
       height:40px;
       background-color:#046236;
}

.buttons button:nth-child(2){
       border:1px solid #046236 !important;
       background-color:#046236;
       color:#fff;
        height:40px;
}