/* button green */
.button {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: transparent;
    border-color: #008740;
    color: white;
    position: relative;
    width: 150px;
    height: 55px;
    transition: background-color 0.2s ease-in, all 0.15s ease-in;
    font-family: 'Poppins', sans-serif;
}

.button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "READ MORE ➔";
    width: 150px;
    height: 55px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(5px, 5px);
    background-color: #008740;
    transition: all 0.15s ease-in;
}

.button:hover::after {
    transform: translate(-7px, -7px);
}

.button:hover {
    transform: translate(5px, 5px);
}

.button:active::after {
    background-color: #ee2831;
}

/* button contact us */
.button-contact {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: transparent;
    border-color: #008740;
    color: white;
    position: relative;
    width: 130px;
    height: 55px;
    transition: background-color 0.2s ease-in, all 0.15s ease-in;
    font-family: 'Poppins', sans-serif;
}

.button-contact::after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "SUBMIT";
    width: 130px;
    height: 55px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(5px, 5px);
    background-color: #008740;
    transition: all 0.15s ease-in;
}

.button-contact:hover::after {
    transform: translate(-7px, -7px);
}

.button-contact:hover {
    transform: translate(5px, 5px);
}

.button-contact:active::after {
    background-color: #ee2831;
}