
.button__classic,.button__hollow {
    color: white;
    font-family: 'Quicksand', sans-serif; 
    display: flex;
    background-color: var(--main-color);
    min-width: 10rem;
    max-width: fit-content;
    height: auto;
    padding: 1rem;
    font-weight: bold;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    border-radius: .3rem;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2);
    transition: color .5s ease, background-color .5s ease;
    border: none;
}
.button__classic:hover,.button__hollow:hover {
background-color: #fff;
transition: color .5s ease, background-color .5s ease;
color: #000 !important;
}

.button__classic:visited{
    color: white;
}
.button__hollow{
    background: white;
    border: .1rem solid black;
    color: black;
}
.button__blue{
    background-color: var(--altblue-color);
}

.button__base{
    width: 10rem;
    height: 3rem;
}

.button__holder{
    display: flex;
    justify-content: center;
}
.button__holder .button{
    margin: 0 1rem;
}
.navigation__segment.client__segment .button__classic{
    width: 10rem;
    max-width: inherit;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.button__bordered {
    color: var(--main-color);
    font-family: 'Quicksand', sans-serif; 
    display: flex;
    background-color: white !important;
    min-width: 10rem;
    max-width: fit-content;
    height: auto;
    padding: 0.8333125rem;
    font-weight: bold;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    border-radius: .3rem;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2);
    transition: color .5s ease, background-color .5s ease;
    border: 3px solid var(--main-color);
    box-sizing: border-box;
}

.button__bordered:hover {
    background-color: var(--main-color) !important;
    transition: color .5s ease, background-color .5s ease;
    color: white !important;
}

.button__bordered:visited {
    color: var(--main-color);
}

.button__purple-bg {
    background-color: #513F74;
}

.button__purple-bg:hover {
    background-color: #fff;
}