.single-page-cta-btn-area {
    display: flex;
}
.btn-contactus {
    background-color: #C80123;
    border: 1px solid #C80123;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: fit-content;
    padding: 1rem 4rem;
}
.btn-contactus > p {
    margin: 1rem 0 0 0;
}
.btn-contactus:hover {
    background-color: white;
    text-decoration: none;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-contactus:hover > svg > path {
    fill: #C80123;
}
.btn-quick {
    background-color: white;
    border: 1px solid #F15920;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F15920;
    width: fit-content;
    padding: 1rem 2rem;
}
.btn-quick > p {
    margin: 1rem 0 0 0;
}
.btn-quick:hover {
    background-color: #F15920;
    text-decoration: none;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.btn-quick:hover > p {
    color: white;
}
.btn-quick:hover > svg > path {
    fill: white;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.modal-close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
}
.modal-close:hover {
    cursor: pointer;
}