/*HOMEPAGE HERO*/
.mad-hero {
    display: flex;
    gap: 50px;
    align-items: center;
}
.mad-hero-text {
    margin-bottom: 50px;
}
.mad-hero-text h2,
.mad-hero-cta h2 {
    font-size: 36px;
    font-family: 'atrament';
}
.mad-hero-text h1 {
    font-size: 96px;
    font-family: 'atramentbold';
    text-transform: uppercase;
    line-height: 1;
    color: #9cc384;
}
.mad-hero-text h4 {
    font-size: 24px;
    font-family: 'atrament';
}
.green {
    color: #9cc384;
}
.uppercase {
    text-transform: uppercase;
}
.mad-hero-button {
    display: flex;
    gap: 20px;
    text-align: center;
}
a.mad-button {
    text-transform: uppercase;
    font-family: 'atramentbold';
    width: 100%;
    padding: 10px 35px;
    margin-top: 35px;
    border-radius: 200px;
    transition: all 0.3s ease-in-out;
}
a.mad-button-1 {
    color: #000000;
    background-color: #9cc384;
}
a.mad-button-2 {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #9cc384;
}
a.mad-button-1:hover {
    color: #ffffff !important;
    background-color: black;
}
a.mad-button-2:hover {
    border-color: transparent;
    background-color: #9cc384;
}