* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    font-size: 1rem;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    font-family: 'Alegreya', serif;
    background: #FFF;
    color: #111;
}

h1, h2, h3 {
    font-family: 'Alegreya SC', serif;
    font-weight: 500;
}

a, a:visited {
    color: inherit;
    text-decoration: underline inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all .2s;
}

a:hover, a:focus, a:active {
    text-decoration-thickness: 6px;
    text-decoration: underline rgb(237, 32, 36);
}

header {
    background: #111;
    font-family: 'Alegreya SC', serif;
    font-weight: 500;
    color: white;
}

.site-branding, main {
    max-width: 52rem;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    flex-direction: column;
    padding: .5rem 1rem;
    align-items: center;
}

.site-title h1 {
    margin: 0;
    padding: 0;
}

.site-title svg {
    height: 60px;
    width: auto;
}

.main-menu {

}

.main-menu a {
    display: block;
    margin-left: 1.2em;
    color: inherit;
    text-align: center;
    text-decoration: none;
    transition: all .2s;
}

.main-menu a:hover {
    text-decoration: underline rgb(237, 32, 36);
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

main {
    width: 100%;
    padding: 0 1.5rem;
}

article {
    scroll-padding: 1rem 0 0 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid lightgray;
}


article > h2 {
    display: inline-block;
    margin-top: 1.25em;
    margin-bottom: .5em;
    border-bottom: 2px solid transparent;
    transition: all .3s;
}

article:target > h2 {
    border-bottom: 2px solid rgb(237, 32, 36);
}

.sunnie-profile {
    display: flex;
    padding-top: 1.5rem;
    align-items: center;
}

.sunnie-profile img {
    max-width: 150px;
    height: auto;
    flex: 0 1 40%;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.sunnie-bio {
    flex: 1 0 50%;
}

.rates-tables table {
    width: 100%;
    margin-bottom: .5em;
}

.rates-tables th {
    font-family: 'Alegreya SC', serif;
    font-weight: 500;
    margin-bottom: .25em;
    text-align: left;
}

.rates-tables tr {
    display: flex;
}

.rates-tables td:nth-child(2) {
    margin-left: auto;
    text-align: right;
}

article > p {
    margin: .5em 0;
}

form {
    display: flex;
    flex-direction: column;
}

.service-area {
    margin: 1.5rem 0;
}

.service-area iframe {
    width: 100%;
    height: 20rem;
}

.distance-check-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.distance-check-form-wrapper h3 {
    text-align: center;
    grid-column: span 2;
}

.distance-check-form input {
    width: 120px;
    margin-bottom: -1.5em;
}

.distance-results {
    margin: 1rem 0;
    text-align: left;
}

label {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    font-family: 'Alegreya SC', serif;
    font-weight: 500;
}

input, textarea {
    margin-top: .5em;
    padding: .625em;
    border: 1px solid gray;
    font-size: 1em;
    border-radius: 2px;
}

input:focus {
    border: 1px solid red;
}

input:focus:valid {
    border: 1px solid seagreen;
}

.hp {display: none;}

form > button {
    font-size: 1em;
    font-family: 'Alegreya SC', serif;
    margin-top: 1.25em;
    padding: .625em;
    background: black;
    color: white;
    border: 2px solid black;
    border-radius: 2px;
    max-width: 120px;
    height: 3.25rem;
}

form > button:hover {
    background: white;
    color: black;
}

footer {
    text-align: center;
    padding: 1.5rem;
}

@media screen and (min-width: 23em) {
    .main-menu > a {
        display: inline;
    }
}

@media screen and (min-width: 36em) {
    .site-branding {
        flex-direction: row;
    }
    .site-title svg {
        margin-bottom: -12px;
    }
    .main-menu {
        margin-left: auto;
    }
    .rates-tables {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 2rem;
        line-height: 1.4;
    }

    .services-lists ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        grid-column-gap: 2rem;
        line-height: 1.4;
    }
}

@media screen and (min-width: 40em) {
    .schedule-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 1em;
    }

    label.full-width {
        grid-column: span 2;
    }

    .distance-check-form-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .distance-check-form-wrapper h3 {
        margin-top: 0;
    }
}

@media screen and (min-height: 40em) {
    header {
        position: sticky;
        top: 0;
    }
}

@media screen and (prefers-color-scheme: dark) {
    body {
        background: #232323;
        color: #EFEFEF;
    }
    input, textarea {
        background: #313131;
        color: white;
    }
    form > button {
        background: #313131;
        border-color: gray;
        color: #efefef;
    }
    form > button:hover {
        background: gray;
    }
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

/***************************************************
 * Generated by SVG Artista on 1/8/2020, 11:06:28 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(237, 32, 36);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(237, 32, 36);
    }
}

.svg-elem-1 {
    -webkit-animation: animate-svg-fill-1 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
    animation: animate-svg-fill-1 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-2 {
    -webkit-animation: animate-svg-fill-2 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
    animation: animate-svg-fill-2 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-3 {
    -webkit-animation: animate-svg-fill-3 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
    animation: animate-svg-fill-3 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-4 {
    -webkit-animation: animate-svg-fill-4 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both;
    animation: animate-svg-fill-4 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-5 {
    -webkit-animation: animate-svg-fill-5 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s both;
    animation: animate-svg-fill-5 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s both;
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-6 {
    -webkit-animation: animate-svg-fill-6 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
    animation: animate-svg-fill-6 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-7 {
    -webkit-animation: animate-svg-fill-7 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9000000000000001s both;
    animation: animate-svg-fill-7 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-8 {
    -webkit-animation: animate-svg-fill-8 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
    animation: animate-svg-fill-8 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-9 {
    -webkit-animation: animate-svg-fill-9 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
    animation: animate-svg-fill-9 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-10 {
    -webkit-animation: animate-svg-fill-10 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
    animation: animate-svg-fill-10 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@-webkit-keyframes animate-svg-fill-11 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-11 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-11 {
    -webkit-animation: animate-svg-fill-11 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
    animation: animate-svg-fill-11 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-12 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-12 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-12 {
    -webkit-animation: animate-svg-fill-12 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
    animation: animate-svg-fill-12 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-13 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-13 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-13 {
    -webkit-animation: animate-svg-fill-13 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s both;
    animation: animate-svg-fill-13 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-14 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-14 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-14 {
    -webkit-animation: animate-svg-fill-14 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
    animation: animate-svg-fill-14 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-fill-15 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-15 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-15 {
    -webkit-animation: animate-svg-fill-15 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
    animation: animate-svg-fill-15 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-16 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-16 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-16 {
    -webkit-animation: animate-svg-fill-16 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
    animation: animate-svg-fill-16 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes animate-svg-fill-17 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-17 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-17 {
    -webkit-animation: animate-svg-fill-17 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
    animation: animate-svg-fill-17 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
}

