* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html {
    background: url(img/filler-background.jpg);
    background-position: top;
    background-attachment: fixed;
    background-color: #efe3d7;
    font-family: 'Open Sans', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.75;
    color: #544747;
}

body {
    max-width: 120em;
    margin: 0 auto;
    box-shadow: 0em 0em 1em 0.125em rgba(27, 14, 0, 0.6);
}



/* --------------------------------------------------------------------------- */
/* REUSABLE ELEMENTS */
/* --------------------------------------------------------------------------- */


img {
    display: block;
}

/* -------- GRID -------- */

.row {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
    max-width: 114rem;
    margin: 0 auto;
    padding: 0 6em;
}

.row:before,
.row:after {
    content:"";
    display:table;
}

.row:after {
    clear:both;
}

/* -------- LINKS -------- */

a {
    font-size: 0.9375em;
    font-weight: 700;
    letter-spacing: .0625em;
    text-transform: uppercase;
    text-decoration: none;
    color: #efe3d7;
    transition: all 0.35s ease-in-out;
}

a:hover {
    color: #ffffff;
}

.btn--link,
.btn--link--alt {
    display: inline-block;
    padding: 1.125em 1.25em;
    line-height: 1em;
}

.btn--link {
    width: 100%;
    line-height: 1em;
    color: #a1958f;
    margin: 2.125em 0em 2.125em 0em;
    border: 0.125em solid rgba(84, 71, 71, 0.2);
    transition: all 0.5s ease-in-out;
}

.btn--link:hover,
.btn--link--alt:hover {
    background-color: #f28e8d;
    border: 0.125em solid #f28e8d;
}

.btn--link--alt {
    background-color: #bfa285;
    margin-top: 3em;
    border: 0.125em solid #bfa285;
    transition: all 0.35s ease-in-out;
}



/* -------- HEADINGS -------- */

h1 {
    font-family: 'minion-pro', serif;
    margin: -0.1em 0 0 -0.025em;
    font-weight: 400;
}

h2 {
    font-family: 'minion-pro', serif;
    font-size: 3em;
    font-weight: 400;
}

h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.75em;
    font-weight: 700;
    line-height: 1.25em;
    margin-top: 1.25em;
    letter-spacing: -0.025em;
    color: #bfa285;
}

p {
    word-spacing: 0;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.8125em;
    word-spacing: -0.0625em;
    margin-top: 0.5em;
}

ul {
    list-style: none;
}

.span-bold {
    font-weight: 800;
}

.span-note {
    font-size: 0.8125em;
}


/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .row {
        padding: 0 2.5em;
    }
}

/* --------------------------------------------------------------------------- */
/* HEADER */
/* --------------------------------------------------------------------------- */


.header-hero {
    background: url(img/header-background.jpg);
    background-position: 0em 1em;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #544747;
    height: 100vh;
    min-height: 54em;
    padding-top: 3em;
}


.header-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-text {
    max-width: 58em;
}

.header-text h1 {
    color: #ffffff;
    font-weight: 500;
    font-size: 6.5em;
    line-height: 1em;
    letter-spacing: 0.09375em;
    text-transform: uppercase;
    margin-top: 0.0625em;
}

.header-text h4 {
    font-family: 'minion-pro', serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3em;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0.0775em;
    text-transform: uppercase;
}


.header-text .btn--link--alt {
    float: left;
    margin: 3em 2em 0 0;
}

.header-text .btn--link--alt:last-of-type {
    background-color: rgba(191, 162, 133, 0);
    border: 0.125em solid rgba(239, 227, 215, 0.4);
    margin-right: 0;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-hero {
        min-height: 26em;
    }
    
    .header-text h4 {
        font-size: 2em;
    }
    
    .header-text h1 {
        font-size: 4em;
    }
    
    .header-text .btn--link--alt{
        font-size: 0.875em;
    }
}

@media screen and (min-width: 481px) and (max-width: 1824px) {
    .header-hero {
        min-height: auto;
        max-height: 66em;
        background-size: 100%;
        background-attachment: scroll;
        background-position: 0 0;
    }
    
}

/* --------------------------------------------------------------------------- */
/* Navigation */
/* --------------------------------------------------------------------------- */


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #544747;
    z-index: 900;
}

.nav-main {
    position: absolute;
    width: 100%;
    height: 6.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    background-color: #544747;
    box-shadow: 0px 0.25em 1.5em rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease-in-out;
}

.nav-main .row {
    height: 100%;
}

.nav-logo-link {
    float: left;
    height: 100%;
    margin-left: -0.25em;
}

.nav-logo {
    height: 100%;
}

.nav-flex-container {
    display: flex;
    flex-flow: row-reverse nowrap;
    align-items: center;
    height: 100%;
}

#nav-list {
}

#nav-list li {
    display: block;
    float: right;
    margin-left: 1.5em;
}


/*--------- Nav Anouncement ---------*/


.nav-announce {
    padding-top: 6.5em;
    padding-bottom: 0em;
    text-align: center;
    background-color: rgb(242, 142, 141);
    box-shadow: 0px 0.25em 1.5em rgba(0, 0, 0, 0.6);
}

.nav-announce-text {
    display: inline-block;
    margin: 1em 0;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    text-transform: none;
}

.nav-announce-text span{
    font-size: 0.875em;
    font-weight: 400;
}

.nav-announce-text:hover {
    color: #efe3d7;
}



/*--------- Nav Icon ---------*/



#nav-icon {
    display: none;
    float: right;
    width: 2.5em;
    height: 1.75em;
    margin-left: 1.5em;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

#nav-icon3 {
    width: 2.5em;
    position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: all .5s ease-in-out;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 0.3125em;
  width: 100%;
  background: #efe3d7;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: all .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 0.6875em;
}

#nav-icon3 span:nth-child(4) {
  top: 1.375em;
}

#nav-icon3.open span:nth-child(1) {
  top: 0.75em;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span {
  background: #ffffff;
}


#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 0.75em;
  width: 0%;
  left: 50%;
}



/* Navigation Expanded List for Mobile */



.nav-expand {
    display: block;
    margin-top: -18em;
    background-color: #bfa285;
    transition: all .35s ease-in-out;
}

.nav-expand.open {
    margin-top: 0em;
    box-shadow: 0px 0.25em 1.5em rgba(0, 0, 0, 0.6);
}

.nav-ani-spacer {
    width: 100%;
    height: 6.5em;
    transition: all 0.5s ease-in-out;
}

.nav-list-mobile a {
    display: block;
    width: 100%;
    line-height: 2.5em;
    text-align: right;
    color: #ffffff;
}

.nav-list-mobile div:hover {
    background-color: #544747;
}



/* Navigation Animation */



.nav-main.ani--nav-state {
    height: 5.5em;
    padding-top: 0.8125em;
    padding-bottom: 0.8125em;
}

.nav-ani-spacer.ani--nav-state {
    height: 5.5em;
}

.nav-ghost {
    position: absolute;
    top: 0;
    left: 0;
    height: 5.5em;
}



/* Sticky Navigation */



.sticky {
    position: fixed;
    top: 0;
    left: 0;
}



/*--------- Navigation Media Queries ---------*/


@media screen and (max-width: 480px) {
    #nav-icon {
        display: block;
    }
    
    #nav-list {
        display: none;
    }
}



/* --------------------------------------------------------------------------- */
/* About Section */
/* --------------------------------------------------------------------------- */

.section-about {
    background: url(img/about-background.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}

.about-container {
    padding-top: 3em;
}

.about-headshot {
    display: block;
    float: left;
    width: 100%;
    max-width: 42em;
}

.about-text {
    float: right;
    max-width: 43em;
    margin: 4.5em 0 0 0em;
}

.about-text h1 {
    font-size: 5em;
    line-height: 1em;
    font-weight: 500;
    color: #f28e8d;
}

.btn--about--last {
    margin-left: 2em;
    color: #bfa285;
    background-color: rgba(191, 162, 133, 0);
    border: 0.125em solid #bfa285;
}

.btn--about-responsive {
    display: none;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .section-about {
        background-image: none;
    }
    
    .about-text {
        margin-top: 1em;
        margin-bottom: 3.5em;
    }
    
    .about-text h1 {
        font-size: 3.4375em;
    }
    
    .btn--about--full {
        display: none;
    }
    
    .btn--about--last {
        margin-left: 0;
        margin-top: 2em;
        width: 100%;
        color: #efe3d7;
        background-color: #bfa285;
    }
    
    .btn--about-responsive {
        display: block;
        margin-top: 2em;
    }
    
}

@media screen and (min-width: 481px) and (max-width: 1824px) {
    .section-about {
        background-size: 48% 100%;
    }
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .about-headshot {
        width: 42%;
        max-width: none;
    }
    
    .about-text {
        width: 45%;
        max-width: none;
    }
}


/* --------------------------------------------------------------------------- */
/* Filler Section */
/* --------------------------------------------------------------------------- */



.section-filler {
    background: url(img/filler-background.jpg);
    background-position: top;
    background-attachment: fixed;
    color: #efe3d7;
}

.filler-container {
    width: 100%;
    max-width: 64em;
    margin: 0 auto;
    padding: 4em 0;
}

.filler-text {
    text-align: center;
    font-family: 'minion-pro', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2em;
    line-height: 1.75em;
}


/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .filler-text {
        font-size: 1.5em;
    }
    
}



/* --------------------------------------------------------------------------- */
/* Benefits Section */
/* --------------------------------------------------------------------------- */

.section-benefits {
    background-image: url(img/benefits-background.jpg);
    background-position: 120% 50%;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}

.benefits-text {
    max-width: 44em;
    padding: 6em 0;
}

.benefits-text h1 {
    font-size: 5em;
    line-height: 1.125em;
    font-weight: 500;
    color: #f28e8d;
}

.benefits-text p:first-of-type {
    margin-top: 1.25em;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .section-benefits {
        background-image: none;
    }
    .benefits-text {
        padding: 4em 0;
    }
    .benefits-text h1 {
        font-size: 3.4375em;
    }
    
    .benefits-text .btn--link--alt {
        margin-top: 2em;
    }
}

@media screen and (min-width: 481px) and (max-width: 1824px) {
    .section-benefits {
        background-size: 68% 100%;
    }
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .benefits-text {
        width: 44%;
        max-width: none;
    }
}


/* --------------------------------------------------------------------------- */
/* Pricing Section */
/* --------------------------------------------------------------------------- */

.section-pricing {
    background-image: url(img/pricing-background.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #f28e8d;
}

.pricing-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 4em 6em 6em 4em;
}

.pricing-container-left {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 78em;
    margin: 0 auto;
}

.price-box-padder {
    order: -1;
    width: 33.33%;
    min-width: 2em;
    padding: 2em 0 0em 2em;
}

.price-box {
    background-color: #efe3d7;
    text-align: center;
    padding: 2em 2em 2em 2em;
    box-shadow: 0em 1em 2em 0.125em rgba(102, 60, 59, 0.7);
}

.price-box-padder:last-of-type {
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 0;
}

.price-box-border {
    padding: 0 2.75em;
    border: 0.125em solid rgba(84, 71, 71, 0.2); 
}

.section-pricing h1 {
    color: rgba(84, 71, 71, 0.4);
    font-size: 1.75em;
    line-height: 1.125em;
    font-weight: 600;
    letter-spacing: 0.125em;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 0.625em 0;
    border-bottom: 0.0625em solid rgba(84, 71, 71, 0.2); 
}

.section-pricing h2 {
    font-size: 6em;
    line-height: 1em;
    text-align: center;
    color: #f28e8d;
    margin-top: 0.1667em;
}

.section-pricing h3 {
    font-family: 'minion-pro', serif;
    color: #f28e8d;
    font-size: 1.125em;
    font-weight: 800;
    line-height: 1.125em;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.ad-color {
    background-color: #b9c4b9;
    position: relative;
}

/*.ad-color h2 {
    text-decoration: line-through;
    text-decoration-color: #f28e8d;
}*/

.price-box-cover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    background-color: rgba(185, 196, 185, 0.8);
    overflow: hidden;
}

.ad-color h2,
.ad-color h3 {
    color: #efe3d7;
}


.pricing-container-right {
    display: none;
    width: 25%;
    max-width: 26em;
    min-width: 2em;
    min-height: 50em;
}

.price-ad-padder {
    width: 100%;
    min-width: 2em;
    height: 100%;
    padding: 2em 0 0em 2em;
}

.price-ad-box {
    height: 100%;
    background-color: #544747;
    text-align: center;
    padding: 2em 2em 2em 2em;
    box-shadow: 0em 1em 2em 0.125em rgba(102, 60, 59, 0.7);
}

.price-ad-border {
    height: 100%;
    border: 0.125em solid #736664;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .section-pricing {
    }
    
    .pricing-container {
        padding: 4em 2.5em 4em 2.5em;
    }
    
    .price-box-padder {
        font-size: 0.875em;
        width: 100%;
        min-width: 2em;
        padding: 2.875em 0 0 0;
    }
    
    .price-box-padder:first-of-type {
        padding: 0;
    }
    
    .price-box-border {
        padding: 0 2em;
    }
    
    .pricing-container-right {
        display: none;
    }
    
    
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .pricing-container-right {
        display: none;
        max-width: none;
    }
}


/* --------------------------------------------------------------------------- */
/* Contact Section */
/* --------------------------------------------------------------------------- */

.section-contact {
}

.map-container {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

.contact-map {
    width: 100%;
    height: 48em;
}

.contact-container {
    position: absolute;
    top: 0;
    width: 100%;

}

.contact-container .row {
    position: relative;
}

.address-box-padder {
    position: absolute;
    top: 5em;
    left: 9em;
    width: 22em;
    background-color: #544747;
    box-shadow: 0em 0.5em 1em 0.125em rgba(0, 0, 0, 0.4);
    z-index: 700;
}

.address-box {
    color: #ffffff;
    padding: 2.5em;
}

.address-box h1 {
    font-size: 5em;
    line-height: 1em;
    color: #efe3d7;
}

.address-box p {
    line-height: 1.375em;
    margin-top: 0.75em;
}

.address-box p:first-of-type {
    margin-top: 1.5em;
    font-weight: 700;
}

.address-box span {
    font-size: 0.725em;
    line-height: 1em;
    font-weight: 700;
    letter-spacing: .0625em;
    text-transform: uppercase;
    color: #efe3d7;
}

.contact-box-padder {
    position: absolute;
    background-color: #efe3d7;
    top: 6em;
    left: 6em;
    width: 59em;
    padding: 2em;
    box-shadow: 0em 1em 2em 0.125em rgba(0, 0, 0, 0.7);
}

.contact-box {
    float: left;
    width: 100%;
    padding: 2em;
    border: 0.125em solid rgba(84, 71, 71, 0.2); 
}

.form--contact {
    float: right;
    width: 28em;
    height: 100%;
}

.contact-form-header {
    font-family: 'minion-pro', serif;
    font-size: 3em;
    line-height: 1em;
    font-weight: 400;
    color: #f28e8d;
    margin-bottom: 0.1875em;
}

.contact-box input[type=text],
.contact-box input[type=email],
.contact-box input[type=tel],
.contact-box textarea {
    padding: 0.5em;
    background-color: rgba(255, 255, 255, 0.8);
    margin-top: 1em;
    color: #544747;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
}

.contact-box input::-webkit-input-placeholder,
.contact-box textarea::-webkit-input-placeholder{
    color: rgba(84, 71, 71, 0.5);
}

.contact-box textarea {
    float: left;
    resize: none;
}


.contact-name,
.contact-phone,
.contact-city,
.contact-state,
.contact-zip {
    float: left;
}

.contact-name {
    width: 19em;
}

.contact-phone,
.contact-state,
.contact-zip {
    margin-left: 1em;
}

.contact-phone {
    width: 8em;
}

.contact-email,
.contact-address,
.contact-message {
    width: 28em;
}

.contact-city {
    width: 17em;
}

.contact-state {
    width: 3.5em;
}

.contact-zip {
    width: 5.5em
}

.btn--form {
    float: left;
    margin: 2em 2em 0.5em 0;
    padding: 0.5em 0.75em;
    background-color: #f28e8d;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9375em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    cursor: pointer;
    transition: background-color 0.35s ease-in-out;
}

.btn--form:hover {
    background-color: #ffb0ae;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .contact-container {
        position: relative;
    }
    
    .contact-row {
        padding: 0;
    }
    
    .address-box-padder {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        padding: 1.5em 0em;
    }
    
    .contact-box {
        height: auto;
    }
    
    .address-box h1 {
        font-size: 3.4375em;
    }
    
    .contact-box-padder {
        position: relative;
        left: 0;
        top: 0;
        float: left;
        width: 100%;
        height: auto;
        box-shadow: none;
    }
    
    .form--contact {
        width: 100%;
    }
    
    .contact-form-header {
        font-size: 2.75em;
    }
    
    .contact-name,
    .contact-phone,
    .contact-email,
    .contact-address,
    .contact-city,
    .contact-message {
        width: 100%;
        margin-left: 0;
    }
    
    .contact-state {
        width: 25%;
        margin-left: 0;
    }
    
    .contact-zip {
        width: 70%;
        margin-left: 5%;
    }
    
    .contact-map {
        display: none;
    }
}



/* --------------------------------------------------------------------------- */
/* Sub Pages */
/* --------------------------------------------------------------------------- */


.header-sub,
.header-about,
.header-doctor,
.header-benefits,
.header-faq,
.header-enroll,
.header-announce {
    position: relative;
    width: 100%;
    height: 46em;
    box-shadow: 0px 0.0625em 1em 0.5em rgba(27, 14, 0, 0.3);
    z-index: 400;
}

.subhead-title {
    position: absolute;
    bottom: 0em;
    width: 100%;
    background-color: rgba(242, 142, 141, 0.8);
}

.subhead-title h1 {
    font-size: 5em;
    line-height: 2.4em;
    font-weight: 500;
    color: #ffffff;
    margin: 0; 
}

.section-sub {
    display: none;
    background: url(img/sub-background.jpg);
    background-position: 70em 50%;
    background-attachment: fixed;
    background-repeat:repeat-y;
    background-color: #efe3d7;
}

.section-sub-page {
    background: url(img/sub-background.jpg);
    background-position: 70em 50%;
    background-attachment: fixed;
    background-repeat:repeat-y;
    background-color: #efe3d7;
}

.sub-text {
    max-width: 54em;
    padding: 3em 0 6em 0;
}

.sub-text h1 {
    font-size: 4em;
    line-height: 1.125em;
    font-weight: 500;
    color: #f28e8d;
    margin: 1em 0em 0.25em 0em;
}

.sub-text p {
    margin-top: 1em;
}

.sub-text ul {
    list-style: square outside;
    margin-left: 1.5em;
}

.sub-text li {
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.8125em;
    word-spacing: -0.0625em;
    margin-top: 1em;
}

.fader {
    display: none;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efe3d7;
    z-index: 800;
}

.fauxActive {
    pointer-events: none;
    color: #ffffff;
}



/* --------------------------------------------------------------------------- */
/* Announcement Pages */
/* --------------------------------------------------------------------------- */

.section-announce {
    background: url(img/sub-background.jpg);
    background-position: 70em 50%;
    background-attachment: fixed;
    background-repeat:repeat-y;
    background-color: #efe3d7;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) { 
    .header-sub,
    .header-about,
    .header-doctor,
    .header-benefits,
    .header-faq,
    .header-enroll,
    .header-announce {
        height: 34.125em;
    }
    
    .subhead-title h1 {
        font-size: 4em;
        line-height: 1.125em;
        margin: 0.375em 0 0.375em 0;
    }
    
    .sub-text {
        padding: 1em 0 4em 0;
    }
}

@media screen and (min-width: 481px) and (max-width: 1824px) {
    .section-sub,
    .section-announce {
        background-size: 48% 100%;
    }
}

@media screen and (min-width: 1921px) {
    .section-sub,
    .section-announce {
        background-position: right;
    }
}



/* --------------------------------------------------------------------------- */
/* About Sub Page */
/* --------------------------------------------------------------------------- */

.header-about {
    background: url(img/about-sub-background.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}


/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-about {
        background-size: auto 100%;
        background-position: 80.5% 50%;
    }
}




/* --------------------------------------------------------------------------- */
/* Dr Scheerer Sub Page */
/* --------------------------------------------------------------------------- */


.header-doctor {
    background: url(img/drscheerer-background.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-doctor {
        background-size: auto 100%;
        background-position: 80.5% 50%;
    }
}



/* --------------------------------------------------------------------------- */
/* Benefits Sub Page */
/* --------------------------------------------------------------------------- */

.header-benefits {
    background: url(img/benefits-sub-background.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-benefits {
        background-size: auto 100%;
        background-position: 70% 50%;
    }
}



/* --------------------------------------------------------------------------- */
/* FAQ Sub Page */
/* --------------------------------------------------------------------------- */


.header-faq {
    background: url(img/faq-background.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}




/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-faq {
        background-position: 80.5% 50%;
    }
}



/* --------------------------------------------------------------------------- */
/* Announce Sub Page */
/* --------------------------------------------------------------------------- */


.header-announce {
    background: url(img/announce-background.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}




/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-announce {
        background-position: 80.5% 50%;
    }
}



/* --------------------------------------------------------------------------- */
/* Enroll Sub Page */
/* --------------------------------------------------------------------------- */


.header-enroll {
    background: url(img/enroll-background.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}

.enroll-container {
    position: relative;
    width: 100%;
    height: 62em;
}

.enroll-box {
    position: absolute;
    top: 6em;
    left: 32%;
    background-color: #efe3d7;
    width: 64%;
    height: 46em;
    padding: 2em;
    box-shadow: 0em 1em 2em 0.125em rgba(27, 14, 0, 0.4);
    z-index: 300;
}

.enroll-frame {
    width: 100%;
    height: 100%;
    padding-left: 1em;
    margin-bottom: -8px;
    border: 0.125em solid rgba(84, 71, 71, 0.2);
}

.enroll-instructions {
    position: absolute;
    top: 8em;
    left: 0em;
    width: 32%;
    height: 42em;
    padding: 4em;
    background-color: #544747;
    box-shadow: 0em 1em 2em 0.125em rgba(27, 14, 0, 0.4);
    z-index: 200;
}

.enroll-instructions h1 {
    font-size: 4em;
    line-height: 1em;
    color: #efe3d7;
}

.enroll-instructions p {
    color: #ffffff;
}

.enroll-instructions span{
    font-weight: 800;
}


.enroll-bg-card {
    position: absolute;
    top: 10em;
    left: 4%;
    width: 96%;
    height: 46em;
    background-color: #b9c4b9;
    box-shadow: 0em 1em 2em 0.125em rgba(27, 14, 0, 0.4);
    z-index: 100;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .header-enroll {
        background-size: auto 100%;
        background-position: 15% 50%;
    }
    
    .enroll-row {
        padding: 0;
    }
    
    .enroll-container {
        height: auto;
    }
    
    .enroll-instructions {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        padding: 4em 2.5em 4em 2.5em;
        box-shadow: 0px 0.0625em 1em 0.5em rgba(27, 14, 0, 0.3);
        z-index: 300
    }
    
    .enroll-instructions h1 {
        font-size: 3.5em;
    }
    
    .enroll-box {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 60em;
        z-index: 200;
    }
    
    .enroll-bg-card {
        display: none;
    }
    
}

@media screen and (min-width: 481px) and (max-width: 1824px) {
    .enroll-frame {
        width: 120%;
        height: 120%;
        transform-origin: top left;
        transform: scale(0.8333)
    }
}



/* --------------------------------------------------------------------------- */
/* Temp Section */
/* --------------------------------------------------------------------------- */

.section-temp {
    background-image: url(img/temp-background.jpg);
    background-size: auto;
    background-position: 120% 100%;
    background-repeat: no-repeat;
    background-color: #efe3d7;
}

.temp-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.temp-text {
    max-width: 44em;
    padding: 6em 0 6em 0;
}

.temp-text h1 {
    font-size: 5em;
    line-height: 1.125em;
    font-weight: 500;
    color: #f28e8d;
}

.temp-text p:first-of-type {
    margin-top: 1.25em;
}



/* -------- Media Queries for Mobile -------- */


@media screen and (max-width: 480px) {
    .section-temp {
        background-image: none;
    }
    .temp-text {
        padding: 4em 0;
    }
    .temp-text h1 {
        font-size: 3.4375em;
    }
    
    .temp-text .btn--link--alt {
        margin-top: 2em;
    }
}

@media screen and (min-width: 481px) and (max-width: 1824px) {
    .section-temp {
        background-size: 68% 100%;
    }
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .temp-text {
        width: 44%;
        max-width: none;
    }
}


/* --------------------------------------------------------------------------- */
/* Footer */
/* --------------------------------------------------------------------------- */

footer {
    padding: 3em 0;
    background-color: #544747;
    color: rgba(239, 227, 215, 0.4);
    font-size: 0.875em;
}

footer p {
    display: inline-block;
    float: right;
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 0;
}

footer p:first-of-type {
    float: left;
}

.footer-social-logo {
    display: inline-block;
    float: right;
    height: 1.5em;
    margin-left: 0.75em;
}