html {
    box-sizing: border-box;
    margin: 0;
    height: 100%;
}

body {
    text-align: center;
    font-family: sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #015e32;
    height: 100%;
}

h4.section-title { 
    color: #015e32;
    margin-block-start: 0px;
    margin-block-end: 5px;
}

header {
    position: fixed;
    box-sizing: border-box;
    text-align: left;
    display: fixed;
    height: 150px;
    width: 100%;
    padding: 10px;
    font-size: 20px;
    color: black;
    background-color: white;
    border-bottom: 2px solid #015e32;
    z-index: 10000;
}

.content-container {
    margin-top: 160px;
    margin-bottom: 50px;
    padding: 25px;
    text-align: left;
    background-color: whitesmoke;
    display: inline-block;
    width: 85%;
    min-height: 80%;
}

/* .content-section-container {
    width: 970px;
    height: 570px;
    background-image: url(dog-and-cat.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
} */

.content-section {
    margin: 10px;
    padding: 20px;
    background-color: rgb(1, 94, 50, 10%);
    border-radius: 10px;
}

.content-section-blocks {
    display: inline-block;
    width: 29%;
    min-height: 225px;
    text-align: left;
    vertical-align: top;
    margin: 10px;
    padding: 20px;
    background-color: rgb(1, 94, 50, 10%);
    border-radius: 10px;
}

.separator-image {
    display: inline-block;
    vertical-align: top;
    width: 29%;
    text-align: center;
    margin: 10px;
    /* padding: 20px; */
}

.dog-cat-image {
    width: 100%;
    height: auto;
}

.headlink {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.header-logo {
    width: auto;
    height: 100px;
    vertical-align: top;
}

.headlink:visited {
    color: black;
    text-decoration: none;
}

.headnav {
    display: inline-block;
    margin-left: 10px;
    color: black;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 5px solid transparent;
}

.headnav:hover {
    border-bottom: 5px solid #015e32;
    color: #015e32;
    cursor: pointer;
}

.headnav:visited {
    color: black;
    text-decoration: none;
}

.app-store, .app-store:visited { color: #015e32; text-decoration: none;}
.app-store:hover { color: rgba(1, 94, 51, 0.644); text-decoration: none;}

.phone {
    color: #015e32;
}

.phone:hover {
    border-bottom: unset;
}

.table {
    display: table;
    width: 100%;
}

.trow {
    display: table-row;
}

.cell-l {
    display: table-cell;
    padding: 5px;
    text-align: left;
    vertical-align: Top;
    font-size: 16px;
    width: auto;
}

.cell-r {
    display: table-cell;
    padding: 5px;
    text-align: right;
    vertical-align: top;
    font-size: 16px;
}

.table-pricing {
    width: 60%;
}

.cell-pricing {
    display: table-cell;
    padding: 5px;
    text-align: left;
    vertical-align: center;
    font-size: 16px;
}

.cell-checklist { background-color: whitesmoke; border: 1px solid rgb(1, 94, 50); }

.trow-pricing:nth-child(even) { background-color: rgb(1, 94, 50, 10%); }

.cell-left { width: 60%; }
.cell-right { width: 20%; }

.cell-phead {
    font-weight: bold;
    color: white;
    background-color: #015e32
}


.li-color { color: #015e32; }
.li-red { color: rgb(129, 4, 29); }

.reservation-button {
    font-family: inherit;
    font-size: 15px;
    color: #FFFFFF;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    background: #015e32;
    border: 2px solid #015e32;
    padding: 5px 10px;
}

.reservation-button:hover {
    border: 2px solid #002212;
}