.btn41-43 {
padding: 10px 25px;
font-family: "Roboto", sans-serif;
font-weight: 500;
background: transparent;
outline: none !important;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
}
.btn-43 {
border: 2px solid rgb(255, 255, 255);
z-index: 1;
color: white;
}
.btn-43:after {
position: absolute;
content: "";
width: 100%;
height: 0;
top: 0;
left: 0;
z-index: -1;
background: rgb(255, 255, 255);
transition: all 0.3s ease;
}
.btn-43:hover {
color: rgb(0, 0, 0);
}
.btn-43:hover:after {
top: auto;
bottom: 0;
height: 100%;
}