.bs-button-1 {
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 50px;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    height: 58px;
    min-width: 227px;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    &::after {
        content: '';
        position: absolute;
        background-image: url('./../../../img/arrow-up-white.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 16px;
        height: 16px;
        display: inline-block;
        right: 20px;
        top: 47%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    &:hover {
        background-color: var(--highlight-blue);
        &::after {
            top: 40%;
            transform: rotate(45deg);
        }   
    }
}
.bs-button-2 {
    background-color: var(--white);
    color: var(--black);
    border-radius: 50px;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: relative;
    max-height: 58px;
    min-width: 227px;
    display: inline-block;
    white-space: nowrap;
    &::after {
        content: '';
        position: absolute;
        background-image: url('./../../../img/arrow-up.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 16px;
        height: 16px;
        display: inline-block;
        right: 20px;
        top: 47%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    &:hover {
        background-color: var(--highlight-blue);
        &::after {
            top: 40%;
            transform: rotate(45deg);
        }   
    }
}
.bs-button-3 {
    background-color: var(--light-grey);
    color: var(--black);
    border-radius: 50px;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 58px;
    min-width: 227px;
    display: block;
    position: relative;
    text-align: center;
    white-space: nowrap;
    &:hover {
        background-color: var(--dark-blue);
        color: var(--white);
    }
}