/*******************************\
  2016 Steffi the Pet Nanny, LLC
\*******************************/

/*************************************\
               Fonts:
   font-family: 'Lobster', cursive; 
 font-family: 'Open Sans', sans-serif;
\*************************************/

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

a {
    text-decoration: none;
    color: white;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    transition: color .5s;
}

a:hover {
    color: black;
}

li {
    display: list-item;
    margin-left: 25px;
    width:auto;
}

#cover {
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: none;
}

#cover.open {
    opacity: .2;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
    height: 50px;
    width: 100%;
    text-align: left;
    z-index: 100;
}

.nav .desktop {
    margin: 0 0 0 50px;
}

.nav .desktop li {
    display: inline-block;
    padding: 5px 15px;
    margin: 0;
}

.nav .desktop li a {
    font-size: 25px;
}

.nav .mobile {
    display: none;
}

.nav li.active a {
    color: black;
}

.nav ul {
    list-style: none;
    padding: 0;
}

#sidecar_nav .link_container {
    margin-top: 10px;

}

#sidecar_nav .link_container a {
    display: block;
    text-align: left;
    width: 170px;
    text-decoration: none;
    padding: 5px 15px;
    color: white;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    transition: color .5s;
}

#sidecar_nav .link_container a:hover {
    color: red;
}

#sidecar_nav_button {
    display: block;
    opacity: 1;
    position: absolute;
    top: 5px;
    right: 22px;
    -webkit-transition: opacity .2s .3s;
    -moz-transition:  opacity .2s .3s;
    -ms-transition:  opacity .2s .3s;
    -o-transition:  opacity .2s .3s;
    transition:  opacity .2s .3s;
}

#sidecar_nav_button.open {
    opacity: 0;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    -ms-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
}

#sidecar_nav {
    display: block;
    overflow: hidden;
    z-index: 500;
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -210px;
    background: rgba(0,0,0,.9);
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
    box-shadow: -3px 5px 10px;
    -webkit-transition: right ease .5s;
    -moz-transition: right ease .5s;
    transition: right ease .5s;
}

#sidecar_nav.open {
    right: 0;
}

.home {
    background-image: url(../images/home.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.home h1 {
    font-family: 'Lobster', cursive;
    font-size: 7vw;
    /*text-shadow: 0px 0px 2px white;*/
    margin: 0;
    /*padding-top: 35vh;*/
}

.home h2 {
    text-shadow: 0px 0px 5px white;
    font-size: 2.3vw;
}

.what {
    background-image: url("../images/what-i-do.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.what .fp-tableCell h1 {
    font-size: 71px;
    font-size: 7vw;
    color: white;
    font-family: 'Lobster', cursive;
    margin: -60px 0 0;
    text-shadow: 0px 0px 45px black;
}

.what .fp-tableCell div {
    display: inline-block;
    vertical-align: top;
    width: 35%;
    font-size: 22px;
}

.what .fp-tableCell div h2 {
    color: white;
    text-shadow: 0px 0px 10px black;
    margin-bottom: 0;
}

.what .fp-tableCell div ul,
.what .fp-tableCell div p{
    text-align: left;
    display: inline-block;
    background: rgba(0, 0, 0, .8);
    color: white;
    padding: 20px 20px 20px 40px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.what .fp-tableCell div p{
    padding: 20px;
    font-weight: 900;
    font-size: 18px;
}


.about {
    background-image: url("../images/about.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}

div .single_center {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0% 0%;
    width: 80%;
    margin: 0px auto;
    text-align: left;
    color: white;
    font-size: 22px;
    padding: 1px 15px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

div .single_center h2{
    height: 32px;
    text-align: center;
}

div .single_center h2.phone_number{
    height: auto;
}

div .single_center ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.pricing {
    background-image: url("../images/pricing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.contact {
    background-image: url("../images/contact.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .4);
    height: 25px;
    width: calc(100% - 60px);
    font-weight: 700;
    padding: 10px 30px;
    font-size: 0;

}

.footer div {
    font-size: 20px;
    display: inline-block;
    width: 50%;
    text-align: left;
}

.footer .right {
    text-align: right;
}

.footer .right a div {
    vertical-align: top;
    text-align: center;
}

@media (max-width: 1100px) {
    .home h1 {
        font-size: 77px;
        padding: 0 15px;
    }

    .home h2 {
        font-size: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 960px) {
    div .single_center,
    div .single_center.pricing_content{
        font-size: 20px;
    }

    .what .fp-tableCell div {
        font-size: 18px;
    }
}

@media (max-width: 780px) {
    div .single_center,
    div .single_center.pricing_content{
        font-size: 18px;
    }
    .what .fp-tableCell div {
        width: 90%;
    }
}

@media (max-width: 700px) {
    #cover {
        display: block;
    }
    
    .nav {
        background: rgba(0, 0, 0, 0);
    }

    .nav .desktop {
        display: none;
    }

    .nav .mobile {
        display: block;
    }

    .footer .left {
        display: none;
    }

    .footer .right {
        width: 100%;
    }
    .what .fp-tableCell div {
        width: 90%;
        font-size: 14px;
    }
    div .single_center ul {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 550px) {
    div .single_center {
        font-size: 14px;
    }
    div .single_center.pricing_content {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .footer .right a div {
        display: none;
    }
}

@media (max-width: 374px) {
    .what .fp-tableCell div {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    div .single_center {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    div .single_center {
        font-size: 11px;
    }
}