.calculate-a{
    background-color: #590af2;
    width: 98%;
    height: 55px;
    border: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-a{
    color: black;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 20px);
}
.text-a-hover{
    color:#590af2;
}

.text-a-underline-black{
    color:black;
    text-decoration: underline;
    text-decoration-color:black;
}
.text-a-underline-purple{
    color:#590af2;
    text-decoration: underline;
    text-decoration-color:#590af2;
}
.text-a-underline-white{
    color: white;
    text-decoration: underline;
    text-decoration-color: white;
}
/* Mobile vertical */
@media only screen and (max-width: 999px) and (max-height: 799px) and (min-resolution: 190dpi) {
.text-a{
    font-size: clamp(22px, 2vw, 25px);
}
}
/* Mobile vertical */
@media only screen and (max-width: 1100px) and (min-width: 800px) and (min-height: 800px) and (min-resolution: 190dpi) {
    .calculate-a{
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
        height: 120px;
    }
    .text-a{
        font-size: clamp(45px, 5vw, 48px);
    }
}