.csem-btn a {
padding: 10px 20px !important;
font-size: 18px !important;
font-weight: 400 !important;
letter-spacing: 1px !important;
border: solid 1px #3b3b3b !important;
border-radius: 5px !important;
}
@media only screen and (max-width: 762px) {
.csem-btn {
display: grid;
gap: 15px;
justify-items: center;
margin-bottom: 10px;
}
} .csem-btn-dark a {
background-color: #206e7a !important;
color: #ecd2b7 !important;
}
.csem-btn-dark a:hover {
background-color: #42a4b3 !important;
} .csem-btn-light a {
background-color: #ecd2b7 !important;
color: #206e7a !important;
}
.csem-btn-light a:hover {
background-color: #bba690 !important;
}
.csem-btn-grn a {
background-color: #e8f0e7 !important;
color: #3b3b3b !important;
}
.csem-btn-grn a:hover {
background-color: #cae3c7 !important;}
.csem-btn-wht a {
background-color: #ffffff !important;
color: #3b3b3b !important;
}
.csem-btn-wht a:hover {
background-color: #e0e0e0 !important;}
.csem-btn-purp a {
background-color: #eee3f0 !important;
color: #3b3b3b !important;
}
.csem-btn-purp a:hover {
background-color: #d8c0dc !important;} .ripple-button {
position: relative;
overflow: hidden;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #3498db;
border: none;
border-radius: 50px; cursor: pointer;
outline: none;
}
.ripple-button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
transform: translate(-50%, -50%);
opacity: 0;
border-radius: 50%; }
.ripple-button:hover::before {
width: 0;
height: 0;
opacity: 1;
top: 50%;
left: 50%;
}