.primary-button button {
    /* margin-left: 0.5rem; */
    padding: 0.5rem 1rem;
    background-color: #FF0000;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: 0px;
    margin: 0px;
    color: white;
}

.primary-button-expanded button {
    /* margin-left: 0.5rem; */
    width: 100%;
    padding: 1rem 1rem;
    background-color: #FF0000;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    margin: 0px;
    color: white;
    flex: 1;
}

.secondary-button {
    /* width: 95%; */
    display: flex;
    border: 1px solid #FF0000;
    background-color: transparent;
    padding: 0.5rem 0.5rem;
    justify-content: center;
}

.secondary-button button {
    border: none;
    background-color: transparent;
    color: #FF0000;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
}




.primary-button img {
    margin-left: 10px;
}

.hero-primary-button button {
    margin: 0;
    display: flex;
    border-radius: 50px;
    padding: 15px 24px;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid white;
    background-color: white;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.hero-primary-button img {
    display: none;
}

.hero-primary-button button:hover {
    background-color: #eee;
}

.hero-secondary-button button {
    margin: 0;
    display: flex;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid white;
    background-color: transparent;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.hero-secondary-button img {
    display: none;
}

.hero-secondary-button button:hover {
    background-color: #222;

}

.text-button button {
    display: flex;
    align-items: center;
    color: red;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    background-color: transparent;
    border: 0px;
    gap: 0.2rem;
}

.text-button:hover {
    text-decoration: underline;
    text-decoration-color: red;
}



.icon-button {
    background-color: transparent;
    cursor: pointer;
    border: none;
    width: min-content;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-button img {
    height: 20px;
    width: 20px;
    text-align: center;
}

.icon-button:hover {
    background-color: #eee;
    border-radius: 5px;
}