.bg-purple{
    background: rgb(119,120,120);
    background: linear-gradient(117deg, rgba(119,120,120,1) 0%, rgba(1,1,1,1) 100%);
}
.text-white{
    color: white;
}
.sambutan{
    color: red;
}
.border-agenda{
    background-color: aliceblue;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-left: 8px solid #e5d804;
    border: 1px solid rgb(214,214,214);
}

.border-agenda:hover {
    background-color: azure;
    border-left: 8px solid purple;
}