
body, * {
  box-sizing: border-box;
  background-color: #f5f5f5;
  font-family: 'Roboto', sans-serif;
}

h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: #a72328;
    text-decoration: underline;
    text-decoration-color: #e3e3e3;
    font-size: 2.5rem;
}

h2 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #a72328;
    font-size: 1.5rem;
    padding: 0 1rem;
}

p {
    font-family: 'Roboto', sans-serif;
    text-align: left;
    color: #000000;
    line-height: 1.3;
    padding: 1rem;
}

main {
    width: 100%;
    margin-top: 95px;
}

.container {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 600px;
}
.container-table {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 1000px;
}

img {
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    display: block;
}

.tag-line {
    margin: 0 auto;
    text-align: center;
    color: #000;
    text-decoration-color: #e3e3e3;
    width: 100%;
    display: block;
    padding: 0 2rem 2rem 2rem;
}

.table-wrapper {
    padding-top: 3rem;
    position: relative;
}

.services-table {
    border-collapse: collapse;
    border-spacing: 0;
    border-color: #000;
    margin: 0 auto;
    width: 100%;
}

.services-table td {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    padding: 10px 5px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: #ebebeb;
    color: #000;
    background-color: #fff;
}

.services-table th {
    font-family: "Roboto", sans-serif;
    text-decoration: underline;
    text-decoration-color: #e3e3e3;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 5px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: #ebebeb;
    color: #a72328;
    background-color: #fff;
}


table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

table th,
table td {
    padding: .625em;
    text-align: center;
}

table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

[data-label="Description"] {
    text-align: left;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    table td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
}

footer {
    min-height: 30px;
    background-color: #000;
    position: relative;
    display: block;
    width: 100%;
}

footer > p {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    text-align: left;
    padding: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    33% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

header {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: solid 1px #000;
}

.button-wrapper {
    padding: 1rem 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: center;
}

.call-now {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    color: #000;
}

.button {
    display: inline-flex;
    align-items: center;
    background: #a72328;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    height: 45px;
    padding: 0 30px;
    color: #fff;
    font-family: Lato, Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, transform .3s, box-shadow .3s;
    will-change: transform;
}
.button:hover {
    background: #a72328;
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -2px, 0);
}
.button:active {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    transform: translate3d(0, 1px, 0);
}

.pulse {
    position: relative;
}
.pulse:before, .pulse:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    opacity: 0;
    margin: auto;
}
.pulse:before {
    animation: pulse 1.5s infinite linear;
}
.pulse:after {
    animation: pulse 2s .4s infinite linear;
}
.pulse:hover:before, .pulse:hover:after {
    display: none;
}
