.white-btn {
    background-color: white;
    color: var(--theme-dark-green);
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border: 1px solid var(--color-secondary-green);
}

    .white-btn:hover {
        background-color: var(--color-secondary-green);
        color: white;
        border: 1px solid white;
    }

.btn-outline-blue {
    border: 1px solid var(--theme-dark-blue);
    background-color: transparent;
    color: var(--color-primary-blue);
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

    .btn-outline-blue:hover {
        border: 1px solid var(--theme-dark-blue);
        background-color: var(--theme-dark-blue);
        color: white;
        font-weight: bold;
        padding: 10px 25px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
    }

.btn-purple {
    background-color: var(--dark-purple);
    color: white;
    font-weight: 500;
    border: 1px solid var(--dark-purple);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    padding: 10px 15px;
    margin-top: 14px;
}

    .btn-purple:hover {
        background-color: white;
        color: var(--dark-purple);
        font-weight: 500;
        border: 1px solid var(--dark-purple);
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        padding: 10px 15px;
        margin-top: 14px;
    }

.card-packagebtn {
    background-color: var(--theme-dark-green);
    color: white;
    border-radius: 0 0 0px 8px;
    -webkit-border-radius: 0 0 0px 8px;
    -moz-border-radius: 0 0 0px 8px;
    -ms-border-radius: 0 0 0px 8px;
    -o-border-radius: 0 0 0px 8px;
    padding: 5px;
    border: 0;
    text-decoration: none;
    text-align: center;
}

    .card-packagebtn:hover {
        background-color: white;
        color: var(--theme-dark-green);
    }

.buy-packagebtn {
    background-color: white;
    color: var(--theme-dark-green);
    border-radius: 0 0 8px 0px;
    -webkit-border-radius: 0 0 8px 0px;
    -moz-border-radius: 0 0 8px 0px;
    -ms-border-radius: 0 0 8px 0px;
    -o-border-radius: 0 0 8px 0px;
    padding: 5px;
    border: 0;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--theme-dark-green);
}

    .buy-packagebtn:hover {
        background-color: var(--theme-dark-green);
        color: white;
        border: 1px solid var(--theme-dark-green);
    }

@media (max-width: 768px) {
    .card-packagebtn {
        border-radius: 8px 8px 0 0;
        -webkit-border-radius: 8px 8px 0 0;
        -moz-border-radius: 8px 8px 0 0;
        -ms-border-radius: 8px 8px 0 0;
        -o-border-radius: 8px 8px 0 0;
    }

    .buy-packagebtn {
        border-radius: 0 0 8px 8px;
        -webkit-border-radius: 0 0 8px 8px;
        -moz-border-radius: 0 0 8px 8px;
        -ms-border-radius: 0 0 8px 8px;
        -o-border-radius: 0 0 8px 8px;
    }
}

.btn-darkblue {
    background-color: var(--theme-dark-blue);
    color: white;
    border: 1px solid var(--theme-dark-blue);
    border-radius: 25px;
    padding: 10px 15px;
}

    .btn-darkblue:hover {
        background-color: white;
        border: 1px solid white;
        color: var(--theme-dark-blue);
    }

.half-btn {
    color: white;
    border-radius: 0 0 0px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 0px 8px;
    -ms-border-radius: 0 0 0px 8px;
    -o-border-radius: 0 0 0px 8px;
    padding: 5px;
    border: 0;
    text-decoration: none;
    text-align: center;
}

.btn-turqoise {
    background-color: var(--theme-turqoise);
    color: white;
    border: 1px solid var(--theme-turqoise);
    border-radius: 25px;
    padding: 10px 15px;
}

    .btn-turqoise:hover {
        background-color: white;
        border: 1px solid white;
        color: var(--theme-turqoise);
    }
