.primary-button a,
.primary-button button {
    display: block;
    padding: 16px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    min-width: 210px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-family: "Spectral", serif;
    background-color: var(--RoyalPurple--color);
}

.primary-button a:hover,
.primary-button button:hover {
    background-color: var(--DeepOrange--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

.primary-reverse a,
.primary-reverse button {
    display: block;
    padding: 14px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    min-width: 210px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--RoyalPurple--color);
    color: var(--RoyalPurple--color);
    cursor: pointer;
    border-radius: 15px;
    font-family: "Spectral", serif;
    background-color: var(--White--color);
}

.primary-reverse a:hover,
.primary-reverse button:hover {
    background-color: var(--RoyalPurple--color);
    color: var(--White--color);
    transition: ease-in-out 0.6s;
}

.elementary-button a,
.elementary-button button {
    display: block;
    padding: 16px 25px;
    min-width: 260px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: var(--secondary--color);
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-family: "Spectral", serif;
    background-color: var(--White--color);
}

.elementary-button a:hover,
.elementary-button button:hover {
    background-color: var(--secondary--color);
    color: var(--White--color);
    transition: ease-in-out 0.6s;
}

.reverse-button a,
.reverse-button button {
    display: block;
    padding: 14px 25px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    min-width: 260px;
    font-weight: 600;
    color: var(--White--color);
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-family: "Spectral", serif;
    background-color: transparent;
    border: 2px solid var(--White--color);
}

.reverse-button a:hover,
.reverse-button button:hover {
    background-color: var(--White--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

.view-btn {
    display: inline-block;
    margin-top: 80px;
    padding: 16px 34px;
    min-width: 300px;
    background: var(--TealBlue--color);
    color: var(--White--color);
    border-radius: 15px;
    font-size: 16px;
    font-family: "Spectral", serif;
    transition: ease-in-out 0.6s;
}

.view-btn:hover {
    background: var(--RoyalPurple--color);
    color: var(--White--color);
    text-decoration: none;
}

.ordinary-button a,
.ordinary-button button {
    display: inline-block;
    padding: 21px 15px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    min-width: 250px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-family: "Spectral", serif;
    color: var(--White--color);
    background-color: var(--DeepOrange--color);
}

.ordinary-button a:hover,
.ordinary-button button:hover {
    background-color: var(--RoyalPurple--color);
    color: var(--White--color);
    transition: ease-in-out 0.6s;
}

.pink-button a,
.pink-button button {
    display: block;
    padding: 21px 16px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    min-width: 200px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    color: var(--White--color);
    font-family: "Spectral", serif;
    background-color: var(--HotPink--color);
}

.pink-button a:hover,
.pink-button button:hover {
    background-color: var(--DeepOrange--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

.teal-button a,
.teal-button button {
    display: block;
    padding: 21px 16px;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    min-width: 240px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    color: var(--White--color);
    font-family: "Spectral", serif;
    background-color: var(--TealBlue--color);
}

.teal-button a:hover,
.teal-button button:hover {
    background-color: var(--RoyalPurple--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

@media screen and (max-width: 1199px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {
    .view-btn{
    margin-top: 20px;
}
}

@media screen and (max-width: 575px) {

    .primary-button a,
    .primary-button button,
    .primary-reverse a,
    .primary-reverse button,
    .elementary-button a,
    .elementary-button button,
    .reverse-button a,
    .reverse-button button,
    .ordinary-button a,
    .ordinary-button button,
    .pink-button a,
    .pink-button button,
    .teal-button a,
    .teal-button button {
        font-size: 17px;
        line-height: 17px;
    }

    .primary-button a,
    .primary-button button,
    .primary-reverse a,
    .primary-reverse button {
        min-width: 200px;

    }
}