:root {
    --primary: #0075b8;
    --primary: #17a1ab;
    --accent: #015270;
    --primary-text:#343434;
    --tint: #f1eef9;
    --secondary: #d9a3c5;
    --accent: #422b59;
    --primary: #6d56c0;
    --tint: #f5f4f7;
    --font-size-sm: clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem);
    --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.125rem);
    --font-size-md: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
    --font-size-lg: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
    --font-size-xl: clamp(1.95rem, 1.56vw + 1.56rem, 2.81rem);
    --font-size-xxl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
    --font-size-xxxl: clamp(3.05rem, 3.54vw + 2.17rem, 5rem);
    
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: none;
}
html {
    font-size: 1em;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html, body {
    margin:0;
    padding:0;
    height:100%;
    width:100%;
    position: relative;
    overflow: hidden;
    color:var(--primary-text);
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    line-height: 1.45;
}
body {
    font-size: var(--font-size-base);
}
/* Typography */
a, 
a:visited {
    color: var(--primary);
    text-decoration: none;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
}
footer a:visited {
    color: #fff;
    text-decoration: none;
}
a:hover,
a:focus {
    color: var(--accent);
    text-decoration: underline;
}
h1 {
    font-size: var(--font-size-xl);
}
h2 {
    font-size: var(--font-size-lg);
    color: var(--accent);
}
h3 {
    font-size: var(--font-size-md);
    color: var(--accent);
}
h4 {
    font-size: var(--font-size-base);
}
p {
    font-size: var(--font-size-base);
    max-width: 55rem;
}
strong {
    font-weight: 600;
    color: var(--accent);
}
.xl-text {
    font-size: var(--font-size-xxxl);    
}
.heading {
    font-family: 'snellbold';
    font-weight:normal;
    font-style: normal;
    line-height: 1;
    margin: 0 0 2rem 0;
    padding: 0 0 0 1rem;
    letter-spacing: -0.125rem;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.125);
}
.script {
    font-family: 'snellbold';
    text-align: center;
    line-height: 1;
}
.sub-heading {
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    font-size: var(--font-size-base);
    margin: 1rem 0
}
.heading + .sub-heading {
    margin-top: -1rem;
    margin-bottom: 2rem;
}

#wrapper {
    opacity: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.ready #wrapper {
    opacity: 1;
}
.canvas {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.scrollable {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    background: #fff;
}
#masthead {
    padding: 1rem 0;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    position: -webkit-sticky;
    position: sticky;
    z-index: 999;
    -webkit-box-shadow: 0 2px 1px -1px rgba(0,0,0,0.1);
            box-shadow: 0 2px 1px -1px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary);
}
#masthead .column_group {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.logo_column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 380px;
    padding-right: 2rem;
}
#masthead .site_logo {
    width:100%;
    max-width: 400px;
}
#masthead .site_logo a {
    display: block;
    width:100%;
    height:0;
    padding-bottom: 19.6%;
    background-image:url(../assets/logo_mt_wide_purple.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.nav_column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
#site_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: var(--font-size-sm);
}
#flyin_panel #site_navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#site_navigation ul {
    margin:0 -0.75rem;
    padding:0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
#flyin_panel #site_navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
}
#site_navigation li {
    padding: 0.5rem 0.75rem;
}
#flyin_panel #site_navigation li {
    padding: 1rem;
}
#site_navigation a {
    text-decoration: none;
    color: var(--accent);
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem;
    display: block;
    line-height: 1;
    position: relative;
    font-weight: 600;
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
}
#site_navigation a:hover,
#site_navigation a:focus,
#site_navigation a:active,
#site_navigation a.active {
    color: var(--primary);
}
#site_navigation a:after {
    content: '';
    position: absolute;
    width:0%;
    height:2px;
    bottom: 0;
    left: 50%;
    display: block;
    background-color: var(--primary);
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
}
#site_navigation a.button:after {
    display: none;
}
#site_navigation a:hover:after,
#site_navigation a:focus:after,
#site_navigation a:active:after,
#site_navigation a.active:after {
    width:100%;
    -webkit-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
    -moz-transform: translate3d(-50%,0,0);
    -ms-transform: translate3d(-50%,0,0);
    -o-transform: translate3d(-50%,0,0);
}
#banner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    color: #fff;
    height: 100%;
    max-height: 70vh;
    min-height: 320px;
}
#banner_bg_video,
#banner_bg_img {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
#banner_bg_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    z-index: 3;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
    /*
    -webkit-filter: grayscale(1);
        filter: grayscale(1);
    */
}
#banner .container {
    z-index: 9;
    position: absolute;
}
#banner:before {
    content: '';
    background-image: url(../img/banner_bg_3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*
    -webkit-filter: grayscale(1);
        filter: grayscale(1);
    */
    z-index: 1;
}
#banner[data-id="benefits"]:before {
    background-image: url(../img/banner_bg_3.jpg);
    background-position: 50% 75%;
}
#banner[data-id="services"]:before {
    background-image: url(../img/banner_bg_1.jpg);
    background-position: 50% 50%;
}
#banner[data-id="about"]:before {
    background-image: url(../img/banner_bg_4.jpg);
    background-position: 50% 50%;
}
#banner[data-id="doula"]:before {
    background-image: url(../img/doula.jpg);
    background-position: 50% 50%;
}

#banner:after,
#banner video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*
    background: rgba(223,223,223,0.80);
    background: rgba(0,117,184,0.90);
    background: rgba(23,161,171,0.90);
    background: rgba(0,101,171,0.9);
    background: rgba(248,249,254,0.75);
    */
    background: rgba(245,244,247,0.75);
    background: rgba(109,86,192,0.75);
    z-index: 4;
}

#banner h1 {
    color: var(--accent);
    color: #fff;
}
#banner p {
    font-weight: 600;
    max-width: 50rem;
    color: rgba(255,255,255,0.8);
}
#banner h2,
#banner p, 
#banner button,
#banner .button {
    opacity: 0;
    -webkit-transform: translate(0,40px);
    -ms-transform: translate(0,40px);
    transform: translate(0,40px);
    -moz-transform: translate(0,40px);
    -o-transform: translate(0,40px);
}
#banner h2 {
    -webkit-transition: all .75s .15s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .75s .15s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .75s .15s cubic-bezier(0.4, 0.0, 0.6, 1);
}
#banner p {
    -webkit-transition: all .65s .25s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .65s .25s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .65s .25s cubic-bezier(0.4, 0.0, 0.6, 1);
    -moz-transition: all .65s .25s cubic-bezier(0.4, 0.0, 0.6, 1);
    -ms-transition: all .65s .25s cubic-bezier(0.4, 0.0, 0.6, 1);
}
#banner button,
#banner .button {
    -webkit-transition: all .55s .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .55s .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .55s .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -moz-transition: all .55s .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -ms-transition: all .55s .35s cubic-bezier(0.4, 0.0, 0.6, 1);
}
.ready #banner h2,
.ready #banner p,
.ready #banner .button {
    opacity: 1;
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
}

#flyin_panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    visibility: hidden;
    opacity: 0;
}
#flyin_content {
    height: 100%;
    width: 100%;
    max-width: 540px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    -moz-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -ms-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
}
#flyin_panel_header {
    border-bottom: 1px solid #efefef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0 1rem;
}
.contactIsVisible #flyin_panel,
.navIsVisible #flyin_panel {
    visibility: visible;
    opacity: 1;
}
.contactIsVisible #flyin_content,
.navIsVisible #flyin_content {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
            box-shadow: 0 0 5px rgba(0,0,0,.3);
}

/*Contact Info */
.profile_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 -2rem 0;
    padding: 0 0 2rem 0;
}
.profile_card .profile_column {
    position: relative;
}
.profile_card .profile_column:first-child:before {
    content: '';
    display: block;
    width: 100%;
    background: var(--accent);
    height: 180px;
    position: absolute;
    z-index: -1;
}
.profile_img_wrapper {
    width: 100%;
    max-width: 180px;
    margin: 1rem auto;
}
.profile_img {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-image: url(../assets/img/profile.png);
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    overflow: hidden;
    background-color: #cdd1d2;
    background-color: var(--tint);
    border: 5px solid var(--accent);
    -webkit-box-shadow: 0 0 0px 3px rgba(255,255,255,1);
            box-shadow: 0 0 0px 3px rgba(255,255,255,1);
}
.profile_details,
.profile_contact_info {
    text-align: center;
    padding: 0 2rem;
}
.profile_details p {
    margin: 0;
}
.profile_name {
    text-transform: uppercase;
    font-size: var(--font-size-md);
    color: var(--accent);  
    font-weight: 600;  
}
.profile_title {
    text-transform: uppercase;
    font-size: var(--font-size-sm);
}
.profile_note {
    font-size: var(--font-size-sm);
}
button > span[tabindex='-1'].hasIcon {
    font-size: var(--font-size-sm);
    line-height: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.hasIcon {
    position: relative;
}
.hasIcon.phone:before,
.hasIcon.email:before,
.hasIcon.close:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 0.5rem;
}
.hasIcon.phone,
.hasIcon.email {
    position: relative;
    padding-left: 1.5rem;
}
.hasIcon.phone:before,
.hasIcon.email:before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    opacity: 0.5;
}
.hasIcon.phone:before {
    content: "\e973";
}
.hasIcon.email:before {
    content: "\e906";
}
.hasIcon.close:before {
    content: "\e910";
    font-size: 1.5rem;
}

hr {
    width: 4rem;
    height: 2px;
    margin: 1rem auto;
    background: var(--primary);
    border: none;
    outline: none;
    line-height: 1;
    display: block;
}
/* ----------------------------- */
/* Button Styles */
button,
.button {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    display: inline-block;
    text-decoration: none;
    font-size: var(--font-size-sm);
    cursor: pointer;
}
button:focus,
button:active,
.button:focus,
.button:active {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}
button > span[tabindex='-1'],
.button > span[tabindex='-1'] {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    outline: none;
    padding: 0.75rem 1rem;
    display: block;
    border: 1px solid;
    border-radius: 2px;
    -webkit-transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    font-style: normal;
    font-weight: 600;
    position: relative;
    text-align: center;
    text-decoration: none;
}
button:hover > span[tabindex='-1'],
.button:hover > span[tabindex='-1'],
a.button:hover,
a.button:hover > span[tabindex='-1'] {
    text-decoration: none;
}
button:focus > span[tabindex='-1'],
.button:focus > span[tabindex='-1'] {
    -webkit-box-shadow: 0 0 1px 2px #406ebc;
    box-shadow: 0 0 1px 2px #406ebc;
    -webkit-box-shadow: 0 0 1px 2px rgba(52, 152, 219, 1.0);
    box-shadow: 0 0 1px 2px rgba(52, 152, 219, 1.0)
}

.button--white span[tabindex='-1'] {
    background: #fff;
    border: 1px solid #fff;
    color: var(--primary);
}
.button--white:hover span[tabindex='-1'],
.button--white:focus span[tabindex='-1'] {
    background: var(--lvc-yellow);
    border: 1px solid var(--lvc-yellow);
    color: var(--primary);
}


.button--primary span[tabindex='-1'] {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.button--primary:hover span[tabindex='-1'],
.button--primary:focus span[tabindex='-1'] {
    background: #fff;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.button--inverted span[tabindex='-1'] {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.button--inverted:hover span[tabindex='-1'],
.button--inverted:focus span[tabindex='-1'] {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.button--outline-white span[tabindex='-1'] {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.button--outline-white:hover span[tabindex='-1'],
.button--outline-white:focus span[tabindex='-1'] {
    background: #fff;
    border: 1px solid #fff;;
    color:var(--primary);
}

.button--menu,
.button--menu:focus,
.button--menu:active {
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.button--menu span[tabindex='-1'] {
    padding: 0.1905rem;
    line-height: 1rem;
}
.button--menu span[tabindex='-1']:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e960";
    font-size: 1.5rem;
}
.button--close_menu span {
    color: #fff;
}
.button--close_menu span[tabindex='-1'] {
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    line-height: 1;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.button--close_menu span[tabindex='-1']:before {
    content: 'close';
    color: #fff;
    text-transform: capitalize;
    font-size: 1rem;
    margin-right: 0.5rem;
}
.button--close_menu span[tabindex='-1']:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e910";
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    color: #fff;
    background-color: var(--lvc-extra-light-blue);
    height: 1.5rem;
    width: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
}
.navIsVisible .button--menu span[tabindex='-1']:before {
    content: "\e910";
}
.button--alternate {
    min-width: 100%;
}
.button--alternate span[tabindex='-1'] {
    background: #fff;
    color: var(--primary);
    font-size: var(--font-size-sm);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden;
    
}
.button--alternate span[tabindex='-1']:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e940";
    width: 2rem;
    color: var(--primary);
    background: var(--lvc-yellow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: -0.5rem -1rem -0.5rem auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.button--alternate span[tabindex='-1']:before {
    content: '';
    background: var(--lvc-yellow);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
    -webkit-transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
.button--alternate:hover span[tabindex='-1']:before,
.button--alternate:focus span[tabindex='-1']:before {
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}
.nav-list {
    list-style:none;
    margin: 0;
    padding: 0;
    
}
.nav-list.horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
            margin: 0 0 0 auto;
}
.button_group {
    width: 100%;
}
.button_group ul {
    margin: 0 -0.5rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    min-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.button_group li {
    padding: 0.5rem;
}
#rates .button_group {
    margin: 2rem 0 2rem 0;
    padding-top: 2rem;
    position: relative;
    border-top: 1px solid #dedede;
}
#rates .button_group:after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    background-color: var(--secondary);
    position: absolute;
    top: -2px;
    left: 0;
}
#rates .button_group li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
}
#rates .button_group .button {
    width: 100%;
    display: block;
}
@media screen and (max-width:479px){
    #rates .button_group li {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
    #rates .button_group .button {
        margin: 0 auto;
    }
}
button#nav_toggle > span[tabindex='-1'] {
    padding: 0.5rem;
    border:none;
}
#nav_toggle span:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e918";
    font-size: 2rem;
    color: var(--primary);
}
#promos {
    padding: 3rem 0 5rem 0;
    background: var(--primary-text);
}
#promos .column_group {
    margin-top: -5rem;
}
#promos .column {
    margin-bottom: 1rem;
}
.promo_item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.promo_item:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: transparent;
    border: 2px solid var(--secondary);
}
.promo_item .new_deco {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    -webkit-transform: rotate(45deg) translate(58px, -25px);
        -ms-transform: rotate(45deg) translate(58px, -25px);
            transform: rotate(45deg) translate(58px, -25px);
    line-height: 1;
    padding: 0.25rem;
    width: 200px;
    text-align: center;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.55);
            box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.55);
            z-index: 2;
}
.promo_item .new_deco:before {
    content: '';
}
.promo_item .new_deco:after {
    content: 'NEW';
    display: block;
    font-family: 'Quicksand';
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}
.promo_img_container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 1rem 0 0;
}
.promo_img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.promo_item[data-id="appetizer"] .promo_img {
    background-image: url(../img/appetizer.jpg);
}
.promo_item[data-id="ear-candeling"] .promo_img {
    background-image: url(../img/ear_candling.jpg);
}
.promo_desc {
    padding: 1rem;
}
.promo_title {
    text-transform: uppercase;
    margin: 0;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
}
.promo_snippet {
    margin: 0.5rem 0 1rem 0;
}
.promo_cost {
    text-transform: uppercase;
    margin: 0;
    font-size: 1.5rem;
    background: var(--secondary);
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding: 0.5rem;
    border-radius: 4px;
    line-height: 1;
    display: inline-block;
}
@media screen and (max-width:479px){
    .promo_item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .promo_img_container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
                flex: 0 0 100%;
        margin: 0;
        height: 180px;
    }
    .promo_desc {
        padding: 1rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    }
}
#info_cards .column_group {
    margin-top: -5rem;
}
#info_cards {
    padding: 3rem 0 1rem 0;
}
#info_cards .column {
    margin-bottom: 2rem;
}
.info_card {
    background: #fff;
    -webkit-box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
            box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
}
.info_card .article_content {
    padding: 3rem 1rem 1rem 1rem;
    position: relative;
}
.info_card .article_content h2,
.info_card .article_content h3 {
    margin: 0;
    color: var(--accent);
}
.info_card .article_content p {
    margin: 1rem 0 0 0;
}
.info_card .article_footer {
    margin: auto 0 0 0;
    border-top: 1px solid #ededed;
}
.info_card .article_footer a {
    padding: 1rem;
    display:block;
    overflow: hidden;
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    position: relative;
}
.info_card .article_footer a:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e995";
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translate3d(-100%,-50%,0);
    transform: translate3d(-100%,-50%,0);
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    color: #fff;
    -moz-transform: translate3d(-100%,-50%,0);
    -ms-transform: translate3d(-100%,-50%,0);
    -o-transform: translate3d(-100%,-50%,0);
    opacity: 0;
}
.info_card .article_footer a:after {
    content: '';
    background: var(--primary);
    position: absolute;
    top: 0%;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index:-1;
    -webkit-transform: translate(0,100%);
    -ms-transform: translate(0,100%);
    transform: translate(0,100%);
    -moz-transform: translate(0,100%);
    -o-transform: translate(0,100%);
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
}
.info_card .article_footer a:hover,
.info_card .article_footer a:focus,
.info_card .article_footer a:active {
    text-decoration: none;
    color: #fff;
}
.info_card .article_footer a:hover:after,
.info_card .article_footer a:focus:after,
.info_card .article_footer a:active:after {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
}
.info_card .article_footer a:hover:before,
.info_card .article_footer a:focus:before,
.info_card .article_footer a:active:before {
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
    -moz-transform: translate3d(0,-50%,0);
    -ms-transform: translate3d(0,-50%,0);
    -o-transform: translate3d(0,-50%,0);
    opacity: 1;
}
.isIcon {
    display: block;
    width: 100%;
    position: relative;
    max-width: 60px;
    margin: 0 auto;
    background: var(--primary);
    background: var(--secondary);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
        -ms-transform: translate(-50%,-50%) rotate(45deg);
            transform: translate(-50%,-50%) rotate(45deg);
    position: absolute;
    top: 0;
    left: 50%;
    border-radius: 8px;
}
.isIcon span {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background-size: 65%;
}
.isIcon.relax span {
    background-image: url(../assets/icons/relax_white.png);
}
.isIcon.head_massage span {
    background-image: url(../assets/icons/head_massage_white.png);
}
.isIcon.back_massage span {
    background-image: url(../assets/icons/back_massage_white.png);
}
.isIcon.healing span {
    background-image: url(../assets/icons/healing_white.png);
}

main {
    padding-bottom: 2rem;
}
section.tint {
    background-color: var(--tint);
    padding: 2rem 0;
}
section.tint.isLast {
    margin-top: 2rem;
    margin-bottom: -2rem;
}


/*Breadcrumb */
#breadcrumb {
    -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.3);
            box-shadow: 0 1px 1px -1px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    padding:1rem 0;
}
#breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
            font-size: 0.825rem;
}
#breadcrumb span {
    display: inline-block;
    padding-left: 1.25rem;
    margin-left: 0.25rem;
    position: relative;
}
#breadcrumb span:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e96b";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}
.section_heading {
    position: relative;
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dedede;
}
.section_heading:after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    background-color: var(--secondary);
    position: absolute;
    bottom: -2px;
    left: 0;
}
.section_heading h2,
.section_heading h3 {
    margin: 0;
}
.padded_block {
    padding: 2rem 0;
}
.disclaimer {
    font-size: var(--font-size-sm);
}
/*Footer */

footer {
    background: var(--accent);
    padding: 2rem 0;
    margin: 0;
    color: #fff;
}
footer a {
    color: #fff;
}
footer a:hover,
footer a:focus {
    color: #fff;
    text-decoration: underline ;
}
footer .site_logo {
    width: 100%;
    max-width: 300px;
    margin: 0;
}
footer .site_logo div {
    width:100%;
    height:0;
    padding-bottom: 19.6%;
    background-image:url(../assets/logo_mt_wide_white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#footer_navigation ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    margin: 0 -1rem;
    padding: 0;
}
#footer_navigation li {
    padding: 0 1rem;
}
#footer_navigation a {
    color: #fff;
    font-size: var(--font-size-sm);
}
.copyright {
    font-size: 0.825rem;
    margin: 2rem 0 0 0;
}
.footer_contact {
    text-align: right;
    margin: 1rem 0 0 auto;
}
ul.footer_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
margin: 1rem -1rem;
padding: 0;
list-style: none;
-webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
}
ul.footer_contact li {
    padding: 0 1rem;
}
.footer_contact a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer_contact a:hover,
.footer_contact a:focus { 
    text-decoration: none;
}
ul.address {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
ul.address a {
    padding-top: 0.5rem;
    display: block;
}
.notBullet {
    list-style: none;
    margin: 0.75rem 0;
    padding: 0;
}
.notBullet li {
    padding: 0.25rem 0;
}
.bullet_list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
    padding: 0;
}
.bullet_list li {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem
}
.bullet_list li:last-child {
    margin-bottom: 0;
}
.bullet_list li:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e920";
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0.2125rem;
    z-index: 2;
}
.bullet_list li:after {
    content: '';
    width: 1px;
    height: calc(100% - 1.2125rem);
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 1.2125rem;
    left: 0.5rem;
    margin: -1px 0 0 0;
    z-index: 1;
}
.bullet_list.bullet_only li:after {
    display: none;
}
.bullet_list li ul {
    margin: 0.5rem 0 0 0;
    list-style: none;
    padding: 0;
}
.bullet_list li ul li {
    padding: 0;
}
.bullet_list li ul li:before,
.bullet_list li ul li:after {
    display: none;
}
.bullet_list.isColumns[data-count="2"]{
    -webkit-column-count:2;
       -moz-column-count:2;
            column-count:2;
            -webkit-column-gap: 2rem;
               -moz-column-gap: 2rem;
                    column-gap: 2rem;
}
.bullet_list.isColumns li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
/* Helpers */

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: table;
}
.sr_only,
.visually_hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
.block,
.text_block {
    display: block;
    width: 100%;
}
.vid_limiter {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.video_card {
    margin: 2rem 0;
    position: relative;
}
.video_card:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    background-color: var(--secondary);
    z-index: -1;
}
.flex_video {
    position: relative;
    padding-bottom: 67.5%;
    height: 0;
    overflow: hidden;
}
.flex_video:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: 'Loading ...';
    background:#000;
    color: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 600;
}
.flex_video.widescreen {
    padding-bottom: 57.25%;
}
.flex_video.portrait {
    padding-bottom: 170%;
}

.flex_video.vimeo {
    padding-top: 0;
}

.flex_video iframe,
.flex_video object,
.flex_video embed,
.flex_video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.flex_frame {
    position: relative;
    padding-top: 25px;
    padding-bottom: 87.5%;
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.flex_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.placeholder {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
}

.placeholder:after {
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    content: 'Loading ...'
}

.nowrap {
    white-space: nowrap;
}

.media_card {
    margin: 2rem 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -moz-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -ms-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    opacity: 0;
    -webkit-transform: translate(0,40px);
    -ms-transform: translate(0,40px);
    transform: translate(0,40px);
    -moz-transform: translate(0,40px);
    -o-transform: translate(0,40px);
}
.media_card.inView {
    opacity: 1;
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
}
.figure_media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    position: relative;
    z-index: 1;
}
.img_deco {
    position: relative;
    z-index: 1;
}
.figure_media:after,
.img_deco:after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    height: calc(100% - 2rem);
    width: calc(100% - 2rem);
    border: 2px solid var(--secondary);
    pointer-events: none;
}
.media_card figcaption {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    padding: 2rem;
    margin-left: -20%;
    background: #fff;
    position: relative;
    z-index: 2;
}
.media_card.no-media figcaption {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-left: 0
}
.media_card.reverse figcaption {
    margin-left: 0;
    margin-right: -20%;
}
.button.hasIcon.play span[tabindex='-1'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            padding-right: 3rem;
            min-width: 120px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.button.hasIcon.play span[tabindex='-1']:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e927";
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}
table {
    width:100%;
    margin: 1rem 0;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
}
tr:nth-child(odd){
    background-color: var(--tint);
}
td {
    padding: 0.5rem;
}

#rates {
    background-image: url(../img/banner_bg_5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0 1rem 0;
    position: relative;
    color: #fff;
}
#rates h3 {
    color: #fff;
}
#rates:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(109,86,192,0.75);
    z-index: 2;
}
#rates .container {
    z-index: 3;
}
.rate_card {
    background: #fff;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 1rem;
    margin: 0.5rem 0;
}
.rate_card .time {
    margin: 0;
    font-size: var(--font-size-xl);
    color: var(--accent);
    line-height: 1;
}
.rate_card .label {
    margin: 0;
    line-height: 1;
    font-size: var(--font-size-sm);
    color: var(--accent);
    text-transform: uppercase;
}
.rate_card .session_price {
    margin: 0;
    font-size: var(--font-size-xl);
    color: var(--primary);
    line-height: 1;
}
#rates .contact {
    margin:0;
}
#rates .contact a {
    color: #fff;
    text-decoration: none;
}
.paypal_link,
.cashapp_link,
.venmo_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.825rem;
}
.paypal,
.cashapp, 
.venmo {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 31px;
}
.paypal::after,
.cashapp:after, 
.venmo:after {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.paypal::after {
    background-image:url(../assets/paypal_logo.png);
}
.cashapp::after {
    background-image:url(../assets/cashapp_logo.png);
}
.venmo::after {
    background-image:url(../assets/venmo-logo.png);
}

.about_profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 2rem 0;
    padding: 0;
}
.figure_promo {
    width: 100%;
    max-width: 360px;
    margin: 1rem auto;
}
.about_profile .profile_media {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: start;
        align-self: flex-start;
}
.about_profile .figure_img img {
    max-width: 520px;
    margin: 0 auto;
}
.about_profile figcaption {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    padding-left: 2rem;
}
.about_profile figcaption p {
    margin: 0.5rem 0;
}
.button-limiter {
    max-width: 260px;
}
.services {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.services li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0 0 1rem 0;
    padding: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}
.services.left_column li {
    padding: 0 5rem 0 0;
}
.service_title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    margin-right: 1rem;
}
.services.left_column .service_title,
.services.right_column .service_title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
            flex: 1 1 60%;
}
.service_title span {
    position: relative;
}
.service_title span:after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    width: 50rem;
    height: 1px;
    background: var(--secondary);
    -webkit-transform: translate(100%, 50%);
        -ms-transform: translate(100%, 50%);
            transform: translate(100%, 50%);
    opacity: 0.5;
}
.service_rate {
    -webkit-box-flex:  1;
        -ms-flex:  1;
            flex:  1;
}
/* Media Queries */
@media screen and (max-width:979px){
    body, p {
        font-size: var(--font-size-base);
    }
    #masthead #site_navigation {
        display: none;
    }
    #site_navigation {
        font-size: var(--font-size-base);
    }
    #nav_toggle {
        display: inline-block;
        margin-right: 0;
        margin-left: auto;
    }
    .xl-text {
        font-size: var(--font-size-xxxl);   
    }
    .sub-heading {
        font-size: 1rem;
    }
    .media_card {
        margin: 1rem 0 0 0;
    }
    .media_card.reverse {
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
    }
    .figure_media {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
    .media_card figcaption {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        margin: 0;
        padding: 2rem 1rem;
    }
    .services li { 
        font-size: var(--font-size-base);
    }
}
@media screen and (max-width:767px){
    .xl-text {
        font-size: var(--font-size-xxl);   
    }
    .sub-heading {
        font-size: var(--font-size-sm);
    }
    .bullet_list.isColumns[data-count="2"]{
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
    footer .site_logo {
        margin: 0 auto;
        max-width: 240px
    }
    .copyright,
    footer .disclaimer {
        text-align: center;
    }
    .footer_contact {
        margin: 1rem auto 0 auto;
    } 
    ul.footer_contact {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    #footer_navigation ul {
        margin: 2rem -1rem 0 -1rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    }
    .footer_contact a {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    ul.address {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .services.left_column li {
        padding: 0;
    }
}
@media screen and (max-width:639px){
    .logo_column {
        min-width: 300px;
    }
    .about_profile .profile_media,
    .about_profile figcaption {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
    .about_profile figcaption {
        padding: 2rem 0 0 0;
    }
    .about_profile .figure_img {
        max-width: 360px;
        margin: 0 auto;
    }
}
@media screen and (max-width:479px){
    #masthead {
        padding:0.5rem 0;
    }
    .logo_column {
        min-width: 280px;
    }
    .xl-text {
        font-size: var(--font-size-xxl);   
    }
    .sub-heading {
        letter-spacing: 0;
        font-size: 0.825rem;
    }
    #banner p {
        font-weight: 500;
        max-width: 18rem;
    }
    #banner_bg_video {
        padding-bottom: 100%;
    }
    #banner_bg_video video {
        min-width: 175%;
    }
    #banner_bg_img {
        padding-bottom: 40%;
    }
    button > span[tabindex='-1'], .button > span[tabindex='-1'] {
        padding: 0.75rem 0.75rem;
        letter-spacing: -0.025rem;
    }
    .rate_card .time {
        font-size: var(--font-size-lg);
    }
}
@media screen and (max-width:340px){
    .logo_column {
        min-width: 240px;
    }
    .xl-text {
        font-size: var(--font-size-xxl);   
    }
}

.accredidation {
    margin: 1rem auto 0 auto;
    max-width: 240px;
}

.notification {
    background: var(--accent);
    padding: 2rem 0;
    margin: 0;
    color: #fff;
}

.notification p {
    text-align: center;
    margin: 0 auto;
    font-size: var(--font-size-md);
    font-weight: 700;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;
    display: block;
    width: 100%;
    min-width: 100%;

}
.notification p span {
    display: inline-block;
    max-width: 75%;
    margin: 0 auto;
    position: relative;
    width: auto;
}
.notification p span:before,
.notification p span:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200%;
    height: 2px;
    background: var(--secondary);
}
.notification p span:before {
    left: 0;
    -webkit-transform: translate3d(-103%,0, 0);
            transform: translate3d(-103%,0, 0);
}
.notification p span:after {
    right: 0;
    -webkit-transform: translate3d(103%, 0, 0);
            transform: translate3d(103%, 0, 0);
}

section.isMedia.alternate .column_group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.social_nav,
#flyin_panel #site_navigation ul.social_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0.5rem -0.5rem;
    padding: 0;
    list-style: none;
}
.notification .social_nav,
#site_navigation .social_nav {
    margin: 1rem -0.5rem 0 -0.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
@media screen and (max-width:767px){
    footer .social_nav {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
.social_nav a,
.social_nav a:hover,
.social_nav a:focus,
#site_navigation .social_nav a,
#site_navigation .social_nav a:hover,
#site_navigation .social_nav a:focus {
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
#site_navigation .social_nav a:after {
    display: none;
}
.social_nav li {
    padding: 0.5rem;
}
.social_nav li a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 100%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#site_navigation .social_nav li a span {
    background: var(--accent);
}
.social_nav li a span:after{
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--accent);
}
#site_navigation .social_nav li a span:after { 
    color: #fff;
}
.social_nav li a:hover span,
.social_nav li a:focus span,
#site_navigation .social_nav li a:hover span,
#site_navigation .social_nav li a:focus span {
    background-color: var(--secondary);
}
.social_nav li a.youtube span:after{
    content: "\e951";
}
.social_nav li a.facebook span:after{
    content: "\e94a";
}

.payment_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 4px;
    margin: 1rem 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
} 
.payment_card .qr {
    width: 120px;
    max-width: 120px;
    min-width: 120px;
    margin: 0 auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.payment_card .qr span {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.payment_card[data-id="venmo"] .qr span {
    background-image: url(../assets/venmo-qr.png);
    
}
.payment_card[data-id="zelle"] .qr span {
    background-image: url(../assets/zelle_qr.png); 
}
.payment_card .payment_info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
}
.payment_info {
    text-align: center;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.payment_info p {
    margin: 0.5rem 0 0 0;
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
}
.payment_logo {
    display: block;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
}
.payment_logo span {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.payment_card[data-id="venmo"] .payment_logo span {
    background-image: url(../assets/venmo.png);
}
.payment_card[data-id="zelle"] .payment_logo span {
    background-image: url(../assets/zelle.png);
}
#payment_methods {
    padding-bottom: 1rem;
}
#payment_methods .flex-column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
@media screen and (max-width:479px){
    .payment_card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
                margin: 1rem auto;
    }
    .payment_info { 
        padding: 1rem 0;
    }
    .payment_info p {
        font-size: 0.825rem;
    }
    .payment_card .qr {
        width: 180px;
        max-width: 180px;
        min-width: 180px;
    }
}

.about_img {
    margin: 1.5rem 0 0 0;
}
@media screen and (max-width:639px){
    .ms-order-2 {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .ms-order-1 {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}