/* fonts to work with

font-family: 'Cinzel Decorative', cursive;
font-family: 'Philosopher', sans-serif;

*/

h1, h2, h3 {
    font-family: 'Cinzel Decorative', cursive !important;
}

p, a, h4, h5, li, td, tr, th, caption, em, div {
    font-family: 'Philosopher', sans-serif !important;
}

/* a row class just in case */
.flex-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
/* column class to put within row class if needed */
.flex-column {
    display: flex;
    flex-flow: column wrap;
}
/* make loaction and hour stand out */
.wrap__contact-info--inner {
    display: flex;
    justify-content: space-between;
    padding: 33px 5%;
    text-align: center;
    background: aliceblue;
    pointer-events: all;
    max-width: 100%;
}

/* baby gallery page fix */
.gallery-item--title {
    display: block !important;
}

.wrap__contact-info {
    background-color: #ffffff00;
    position: relative;
    padding: 100px 0;
}

/* logos on the review page */
.hg-logo, .g-logo, .fb-logo {
    height: 50px;
    width:50px;
}
.page-reviews figure {
    margin: 1em 35px;
    text-align: center;
}
.page-reviews .flex-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 24px;
}

/* more spacing on the homepage between components */
.home-layout .wrap__staff {
    padding: 100px 0 100px;
}
.wrap__featuredarticles {
    margin: 53px 0 0 0;
}

/* hide the body contact us form on contact page and appt */
.page-contact-us .contact__form--inner {
    display: none;
}

.wrap__form.horizontal:before {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: -150px;
    position: absolute;
    background-color: rgb(59 11 74 / 0%);
}

/* provider page, h2 name of provider fix */
h2.provider-name {
    font-weight: 900;
    text-decoration: underline;
    color: #3b0b4a;
}

/* consistent background color on homepage fix */
.wrap__testimonials {
    position: relative;
    padding: 42px 0 20px;
    background: #572d63b8;
}

/* overlap the welcome section with the featured services section */
.home-layout .two-comps {
    background-color: #572d63b8;
    position: relative;
    color: #fff;
    pointer-events: auto;
}
.home-layout .wrap__featuredblocks {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
    pointer-events: all;
    margin-bottom: -53px;
}


/* make the background of featured services white and not trans */
.wrap__featuredblocks .featuredblocks {
    padding: 51px 15px 15px;
    background-color: transparent;
    position: relative;
    border-radius: 4px;
    margin: 0 24px;
}
/* remove dark overlay from featured blocks background */
.wrap__featuredblocks:before {
    content: '';
    left: -9999px;
    right: -9999px;
    top: 0;
    bottom: -100px;
    position: absolute;
    background: transparent;
    pointer-events: none;
}

/* for the office page table fix */
#officeHours {
    border-collapse: collapse;
    margin: 10px 0;
    table-layout: fixed;
    width: 350px;
}


/* container links within the featured services make white */
a.featuredblock__containerlink {
    background: #fff;
}
.wrap__featuredblocks .featuredblock__containerlink {
    display: block;
    width: 100%;
    padding: 20px 20px 2px;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: 4px;
}
/* hover effect is "shake" */
.wrap__featuredblocks .featuredblock__containerlink:hover {
    box-shadow: 0 0 0px 0px rgba(26, 26, 26, 0.15);
    animation: effect 0.3s;
    border: 0px solid #451853;
}
@keyframes effect {
    0% {
        transform: translateX(0px) rotate(0deg);
    }

    20% {
        transform: translateX(-4px) rotate(-4deg);
    }

    40% {
        transform: translateX(-2px) rotate(-2deg);
    }

    60% {
        transform: translateX(4px) rotate(4deg);
    }

    80% {
        transform: translateX(2px) rotate(2deg);
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

.wrap__featuredblocks .featuredblock__title {
    margin: 0 0 23px;
    font-size: 20px;
    font: 20px/1.19 "quicksand-bold", "Arial", "Helvetica", sans-serif;
    text-align: center;
    text-transform: capitalize;
}

/* remove the dark overlay on homepage sliders, fullscreen sclider */
.wrap__fullscreenBackground:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent; 
    pointer-events: none;
}


/* logo adjustments */
.logo__description {
    color: #ffffff;
    font-size: 16px;
}
.wrap__logoHeader--inner {
    max-width: 508px;
}


/* The internal pages need higher padding on the top bc the title clips the header*/
.wrap__page-contentContainer {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 228px 15px 78px;
    background: #ffffff;
}


/* make the header a darker purple */
.wrap__header-area:before {
    content: '';
    position: absolute;
    left: -999px;
    top: 0;
    bottom: 0;
    right: -999px;
    pointer-events: none;
    background: #3b0b4a;
}


/* homepage provider images, just resizing them */
.staff-member__image {
    height: 223px;
    width: 165px;
    float: left;
    margin: 5px 29px 0 0;
}

/* START OF MEDIA QUERIES */
@media(max-width: 1024px) {
    .wrap__featuredblocks .featuredblock__containerlink {
        background-color: #ffffff;
        box-shadow: 0 0 0px 0px rgba(26, 26, 26, 0.15);
        padding: 30px;
    }
    .wrap__contact-info .wrap__hours {
        width: 49%;
    }
    .wrap__contact-info .wrap__map {
        width: 49%;
    }
}
@media (max-width: 767px) {
    .wrap__locationsHeader {
        margin: 0;
        width: 200px;
        right: 24px;
        top: -194px;
    }
    .page__title, .wrap__page-content h1 {
        font-size: 26px;
        margin-top: 36px;
    }
    .wrap__contact-info--inner {
        flex-wrap: wrap;
    }
        .wrap__contact-info .wrap__hours {
        width: 100%;
    }
    .wrap__contact-info .wrap__map {
        width: 100%;
    }

    .staff-member__image {
        float: none;
        margin: 0 auto;
        height: 198px;
        width: 137px;
    }
    .home-layout .wrap__form.horizontal:before {
        background-color: transparent;
    }
}

@media(max-width: 519px) {
    .wrap__locationsHeader {
        margin: 0;
        width: 200px;
        right: 24px;
        top: -251px;
    }
    .wrap__header .logo__image {
        max-width: 100px;
    }
}
/*
     FILE ARCHIVED ON 16:21:12 Jun 29, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 08:12:43 Sep 03, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.54
  exclusion.robots: 0.102
  exclusion.robots.policy: 0.089
  esindex: 0.007
  cdx.remote: 42.875
  LoadShardBlock: 316.752 (3)
  PetaboxLoader3.datanode: 159.501 (4)
  PetaboxLoader3.resolve: 99.802 (2)
  load_resource: 122.182
*/