/* #BASE CSS (Initital Setup)
---------------------------------
    #BASE START
        #HTML5
    #BASE CONTENT
        #TYPOGRAPHY
            #BODY
            #HEADINGS
            #PARAGRAPHS
            #LINKS
            #LISTS
            #HELPERS
        #MEDIA
            #IMAGES
        #COMPONENTS
            #BUTTONS
    #BASE LAYOUT
        #MEDIAQUERIES
        #GRID
            #CLEARFIX
    #BASE SITE
        #STRUCTURE
            #HEADER
            #LOGO
            #FOOTER
            #SECTIONS
            #SUB PAGES
        #NAVIGATION
            #TOGGLE-NAV (Default)
--------------------------------- */

/* #BASE START */

/* #HTML5 */
header, section, footer, aside, nav, main, article, figure {display: block;
}
/* BASE CONTENT */

/* BASE TYPOGRAPHY */

/* BODY */

body {
    color: white;
    font-size: 87.5%;
    line-height: 1.5em;
}
/* HEADINGS
based on traditional typographic scale
16 18 21 24 36 48
*/
h1, h2, h3, h4, h5, h6 {
margin: .5em 0;
}
h1 {
    font-size: 3em; /* 48px / 16px = 3em */
    line-height: 1em;
}
h2 {
    font-size: 2.25em; /* 36px / 16px = 2.25em */
    line-height: 1.1em;
}
h3 {
    font-size: 1.5em; /* 24px / 16px = 1.5em */
    line-height: 1.2em;
    text-align: center;
}
h4 {
    font-size: 1.3125em; /* 21px / 16px = 1.3125em */
    line-height: 1.3em;
}
h5 {
    font-size: 1.125em; /* 18px / 16px = 1.125em */
    line-height: 1.4em;
}
h6 {
    font-size: 1em; /* 16px / 16px = 1em */
    line-height: 1.5em;
}
 /* PARAGRAPHS */
p {
    margin-top: 0;
    margin-bottom: .5em;
}
 /* LINKS */
a { color: #5f7687; text-decoration: none;}
a:hover { color: #069; text-decoration: underline;}
a:visited { color: #bbad6b;}
a:focus { color: #39c;}

 /* LISTS */
ul ol li {
    margin: 0;
    padding: 0;
}

/* BLOCKQUOTES */
blockquote {
    margin: 1.5em 0;
    padding: 1.5em;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
blockquote cite {
    display: block;
}

/* HELPERS */
.textcenter {
    text-align:center
}

/*IMAGES */
img.scale-with-grid {
    max-width:100%;
    height:auto;
}

/* BUTTONS */
button, a.button {
    display:inline-block;
    padding: .75em 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    border: none;
    cursor: pointer;
    line-height: 1em;
    background-color: #069;
    color: blue;
    font-size: inherit;
}
button:hover,a.button:hover {
    background-color:#069;
    color: yellow;
    border-color:#069;
    text-decoration: none;
}
button.alt, a.button.alt {
    color: #069;
    background: none;
    border: 1px solid #069;
}
/* BASE LAYOUT */

/* MEDIA QUERIES */

/* SMALL MOBILE */
.container {
    width: 92%;
    padding: 0 4%;
}

/* MEDIUM TABLET */
@media (min-width: 768px) {
    body {
        font-size: 87.5%;
    }
    .container {
        width: 768px;
        margin: 0 auto;
        padding: 0;
    }
}

/* LARGE LAPTOP */
@media (min-width: 1050px) {
    body {
        font-size: 100%;
    }
    .container {
        width: 900px;
        margin: 0 auto;
        padding: 0 50px
    }
}

/* EXTRA LARGE DESKTOP */
@media (min-width: 1250px) {
    body {
        font-size: 112.5%;
    }
    .container {
        width: 1100px;
    }
}

/* GRID */
/* Default Grid (on SMALL+ Screen SIzes) */
.row {
        margin: 0;
    }
.column {
        margin: 0 0 3em 0;
    }
.column.special {
    margin: 2em 0 0 0;
}

/* Medium Grid (on MEDIUM+ Screen Sizes) */
@media (min-width: 768px) {
    .column {
        float: left;
        margin-right: 8%;
        width:100%;
    }
    .column:last-child {
        margin-right: 0;
    }
    .column.centered {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }
    .one-half.column {
        width: 46%;
        display: inline-block; 
    }
    .one-half.column.center {
        margin: 80px 0 50px 50px;
    }
    .one-third.column {
        width: 28%;
    }
    .two-thirds.column {
        width: 64%;
    }
    .one-fourth.column {
        width: 19%;
    }
    .whole.column {
        padding-top: 50px;
    }
} 
@media (max-width: 768px) {
    .whole.column {
        padding-top: 50px;
    }
    .one-fourth.column p {
        text-align: center;
    }
}
.one-half.column h3, 
.one-half.column h6 {
    color: black;
}

.whole.column h6 {
    text-align: center;
}

/* CLEARFIXES */
.group:after,
.container:after,
.nav:after,
.row:after {
    content: "";
    display: table;
    clear: both;
}

    
/*  BASE SITE */

/*  SITE STRUCTURE */

/*  SITE BRANDING */
.site-branding {
    text-align: center;
}
.site-branding h1 {
    margin: 0;
    font-size: 1.5em;
    padding: 1.2em 0 .3em 0;
}
.site-branding h1 a {
    display: inline-block;
    padding: 0;
    font-weight: bold;
}
@media (min-width: 768px) {
    .site-branding {
        float: left;
    }
    .site-branding h1 {
        padding: .55em;
    }
}

/*  SITE NAV */
.site-navigation {
    text-align: center;
}
.site-navigation ul {
    margin: 0;
    padding: 0;
}
.site-navigation ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 1em;
}
.site-navigation ul li a {
    padding: 1em;
    color: #bbad6b;
}
.site-navigation ul li a:hover {
    color: black;
    text-decoration: none;
}
.site-footer .site-navigation ul {
    border-top:  none;
    display: inline-block;
}
@media (min-width: 768px) {
    .site-header .site-navigation {
        float: right;
    }
    .site-navigation ul {
        border-top: none;
        padding-top: .5em;
    }
}
/*  SITE NAV 2 */
.site-navigation2 {
    text-align: center;
    background-color: rgba(95,118,135,1);
}
.site-navigation2 ul {
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 0;
}
.site-navigation2 ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: .5em;
}
.site-navigation2 ul li a {
    padding: 1em;
}
.site-footer .site-navigation2 ul {
    border-top:  none;
    display: inline-block;
}
@media (min-width: 768px) {
    .site-header .site-navigation2 {
        float: right;
    }
    .site-navigation2 ul {
        border-top: none;
        padding-top: .5em;
    }
}
/*  SITE NAV 3 */
.site-navigation3 {
    text-align: center;
}
.site-navigation3 ul {
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 0;
}
.site-navigation3 ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: .5em;
}
.site-navigation3 ul li a {
    padding: 1em;
}
.site-footer .site-navigation3 ul {
    border-top:  none;
    display: inline-block;
}
@media (min-width: 768px) {
    .site-header .site-navigation3 {
        float: right;
    }
    .site-navigation3 ul {
        border-top: none;
        padding-top: .5em;
    }
}

/*  HEADER & FOOTER */
.site-header a,
.site-footer a { 
    color: #212121;
    text-decoration: none;
}
.site-header a:hover,
    .site-footer a:hover {
        color: #bbad6b;
        text-decoration: none;
    }

/*  HEADER ONLY */
.site-header {
    padding-top: 1.5em; 
    text-align: center;
}
.site-header .container:after { 
    display: block;
    content: '';
    border-bottom: 1px solid #ddd; 
}

/*  MAIN CONTENT */
.site-main {
    margin: 0 2em 0 2em;
}
section {
    padding: 1em 0;
}

secton.full-width {
    padding: 6em 0;
}
section.full-width-bg {
    margin: 0 -100%;
    padding-left: 100%;
    padding-right: 100%;
}
row.full-width-bg {
    margin: 0 -100%;
}
.hero {
    background: #ccc;
    background-repeat: no-repeat;
    background-position: center;
}
.hero h1,
.hero h2 {
    font-size: 3em;
    line-height: 1.1em; 
    max-width: 10em;
}
.hero p {
    max-width: 22em;
}
.hero.textcenter h1,
.hero.textcenter h2,
.hero.textcenter p {
    margin-left: auto;
    margin-right: auto;
}

/*  FOOTER ONLY */
.site-footer ul {
    font-size: 1em;
    text-align: center;
}
.site-footer .container {
    padding-top: 0;
    padding-bottom: 0;
    background-color: white;
    width: 100%;
}
.site-footer .container:before { 
    display: inline-block;
    content: '';
    border-bottom: none;
    padding-bottom: 0;
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: #333;
}
a {
  color: #fff;
}
.row {
  width: 80%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
  clear: both;
}
.gallery ul li img {
    max-width: 100%;
    height: auto;
    overflow-y: hidden;
}
.row img {
  max-width: 100%;
  display: block;
  margin: auto;
}

.row h1 {
    text-align: center;
    font-weight: 100;
}
.row2 {
    margin: auto;
}
.row3 img {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  clear: both;
}
@media (max-width: 767px) {
    .row h1 {
        font-size: 30px;
    } 
}

header {
  background: white;
  color: #212121;
  text-align: center;
  padding: 30px 0 30px 0;
}
.sub {
    background: #bbad6b;
}
.spchead {
    color: white;
}
header h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 65px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 0.8;
  font-family: 'Montserrat', sans-serif;
    padding-top: 60px;
    color: #bbad6b;
}
header h1 span {
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 25px;
  line-height: 1;
  color: black;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 45px;
        line-height: 1; 
    }
    header h1 span {
        font-size: 25px;
    }
}
header p {
  padding-top: 30px;
}

.gallery {
  padding: 40px 0 100px 0;
  position: relative;
  overflow: hidden;
}
.gallery .row {
    width: 100%;
}
.gallery ul {
  padding-top: 50px;
  position: relative;
  margin: auto;
}
.gallery ul li {
  width: 33%;
  position: relative;
  float: left;
  overflow: hidden;
padding: 0 10px 0 0;
}
@media (min-width: 850px) {
    .gallery ul li {
        width: 31%;
    } 
}
.gallery ul li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.gallery ul li a:before {
  position: absolute;
  background-color: white;
  content: "";
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gallery ul li a.baby:after,
.gallery ul li a.hallway:after {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
    background-image: url(../img/fineart.png);
  background-position: center;
    background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gallery ul li a.character:after {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
    background-image: url(../img/chardesign.png);
  background-position: center;
    background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gallery ul li a.nps:after,
.gallery ul li a.circus:after,
.gallery ul li a.maw:after{
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
    background-image: url(../img/motion.png);
  background-position: center;
    background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gallery ul li a.newberry:after,
.gallery ul li a.fabric:after,
.gallery ul li a.logo:after,
 .gallery ul li a.covers:after,
.gallery ul li a.rex:after {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
    background-image: url(../img/print.png);
  background-position: center;
    background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gallery ul li a.ciccone:after {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
    background-image: url(../img/web.png);
  background-position: center;
    background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gallery ul li a:hover:after {
  opacity: 1;
}
@media (max-width: 849px) {
    .gallery ul li a.baby:after,
    .gallery ul li a.hallway:after {
        background-size: 50%;
    }
    .gallery ul {
        padding-top: 0px;
    }
    .gallery ul li {
        width: 80%;
        padding-top: 30px;
    }
    .gallery ul li a.nps:after {
        background-size: 50%;
    }
    .gallery ul li a.newberry:after {
        background-size: 50%;
    }
    .gallery ul li a.ciccone:after {
        background-size: 50%;
    }
    .gallery ul li a.logo:after {
        background-size: 50%;
    }
    .gallery ul li a.covers:after {
        background-size: 50%;
    }
    .gallery ul li a.maw:after {
        background-size: 50%;
    }
    .gallery ul li a.rex:after {
        background-size: 50%;
    }
}

/* FABRIC GALLERY */
.gallery2 {
  position: relative;
  overflow: hidden;
}
.gallery2 .row {
    width: 100%;
}
.gallery2 ul {
  position: relative;
    padding-left: 0;
}
.gallery2 ul li {
  width: 33%;
  position: relative;
  float: left;
  overflow: hidden;
}
.gallery2 ul li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.gallery2 ul li img {
    max-width: 100%;
    height: auto;
    overflow-y: hidden;
    margin: 10px 10px;
}

.logobee {
    background-color: #bbad6b;
    text-align: center;
    padding-top: 50px;
    position: relative;
    width: 50px;
    height: auto;

}

.logobee2 {
    width: 175px;
    background-color: #bbad6b;
    text-align: center;
    padding-top: 50px;
    position: relative;

}
.logobee3 {
    background-color: white;
    text-align: center;
    padding-top: 50px;
    position: relative;
    width: 50px;
    height: auto;

}
.triangle {
    position: relative;
    top: 50px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    background-color: #bbad6b;
    -webkit-transform:rotate(45deg);
    transform: rotate(45deg);
}
.triangle2 {
    position: relative;
    top: 125px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    background-color: #bbad6b;
    -webkit-transform:rotate(45deg);
    transform: rotate(45deg);
}
.triangle-down {
	width: 0;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-top: 15px solid #bbad6b;
    margin: auto;
}
.triangle-down2 {
    position: relative;
    top: 45px;
	width: 0;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-top: 15px solid #bbad6b;
    margin: auto;
}
@media (max-width: 849px) {
    .triangle, .triangle2 {
        visibility: hidden;
    }
}
.copyright {
    text-align: center;
    font-family: 'Lato', serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #212121;
}
.box {
    padding: 0;
    height: 260px;
    text-align: center;
}
.box2 {
    padding: 0;
    height: 40px;
    text-align: center;
}

.box3 {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 5px;
    text-align: center;
    border-bottom: .25px solid #9cd7d5;
}
@media (max-width: 768px) {
    .box3 {
        padding-top: 0px;
        margin-top: 0px;
        margin-bottom: 30px;
        width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}
.box4 {
    padding: 0;
    height: 25px;
    text-align: center;
}
.blog, 
.portfolio,
.about, 
.contact,
.resume {
    height: 130px;
    position: relative;
    text-align: center;
}
.portfolio,
.blog {
    background: rgba(187,173,107,1);
  
}
.about,
.resume,
.contact {
    background: rgba(95,118,135,1);
   
}
.blog {
    background: rgba(187,173,107,1);
    background-image: url(../img/blog2.png);
    background-position: 90% 50%;
    background-repeat: no-repeat;
}
.portfolio {
    background: rgba(187,173,107,1);
    background-image: url(../img/beret2.png);
    background-position: 90% 50%;
    background-repeat: no-repeat;
}
.about {
    background: rgba(172,185,191,1);
    background-image: url(../img/aboutmegraphic.png);
    background-position: 10% 50%;
    background-repeat: no-repeat;
}

.contact {
    background: rgba(172,185,191,1);
    background-image: url(../img/contact.png);
    background-position: 10% 50%;
    background-repeat: no-repeat;
}
.resume {
    background: rgba(172,185,191,1);
    background-image: url(../img/resume.png);
    background-position: 10% 50%;
    background-repeat: no-repeat;
}
@media (max-width: 849px) {
.blog,
.portfolio,
.about,
.contact,
.resume {
    background-size: 50%;
}
}
.blog span, 
.portfolio span, 
.about span, 
.resume span, 
.contact span {
    color: #212121;
    transition: color 0.3s ease;   
}

/*Boxes Inner Styles*/
section a:hover,
section a:focus,
section a:visited,
section a:active {
    text-decoration: none;
}
.ptitle {
    font-size: 38px;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 130px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
} 
.ptitle::before,
.ptitle::after{
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    -moz-transition: opacity 0.5s, -moz-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}
.ptitle:hover,
.ptitle:focus {
    color: #bbad6b;

}
.ptitle.blue2:hover,
.ptitle.blue2:focus {
    color: #5f7687;
}
.ptitle.blue2 {
    font-size: 38px;
}
.ptitle.blue3 {
    font-size: 38px;
}
.portfolio a,
.about a,
.resume a,
.blog a,
.contact a {
    text-decoration: none;
}
.grow:hover {
        -webkit-transform: scale(1.025);
        -ms-transform: scale(1.025);
        transform: scale(1.025);
}
@media (max-width: 849px) {
 
.about span, 
.resume span, 
.contact span {
    float: right;
    font-size: 30px;
    padding-right: 20px;
}
}
@media (max-width: 849px) {
    .blog span {
    float: left;
    font-size: 30px;
    padding-left: 20px;
}
    .ptitle.blue3 {
        float: left;
    font-size: 28px;
    padding-left: 20px;
    }
}
.home-footer {
    color: #fff;
    text-align: center;
    width: 100%;
}
.home-footer span {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 24px;
    color: #212121;
}
.blog-img {
    overflow: hidden;
    height: 30%;
    width: 30%;
    position: relative;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.blog-img img {
    width: 80%;
    height: 80%;
}
.blog-img2 img {
    width: 110%;
    height: 110%;
}
.blog-img3 img {
    width: 40%;
    height: 40%;
}
.blog-img4 img {
    width: 70%;
    height: 70%;
}
.blog-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    margin-top: 10px;
    font-size: 18px;
    color: #5f7687;
    display: inline-block;
    position: relative;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.blog-text p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.8em;
    margin-top: 30px;
    letter-spacing: 0.12em;
    font-weight: 300; 
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px 0 25px
}
.blog-footer {
    text-align: center;
    width: 100%;
}
.blog-footer a { 
    color: #2b4251;
}
.blog-footer img { 
    display: inline-block;
    height: 20px;
}

.blog-footer span {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 18px;
}

.blog-meta {
    padding-top: 20px;
    display: block;
    letter-spacing: 2px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}
.backnav {
    text-align: center;
}
.backnav a {
    color: #5f7687;
}
.backnav ul {
    padding-left: 0;
}
.backnav a:hover {
    color: #bbad6b; 
    text-decoration: none;
}
.backnav ul li {
    list-style: none;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}
.about-bee {
    margin: 0 auto;
    height: 60px;
    width: 50px;
    padding-bottom: 10px;
}
.goback {
    text-align: center;
    text-decoration: none;
}
.goback :hover {
    text-decoration: none;
    color: #bbad6b;
}
.goback a {
    color: #333;
}
.nb {
padding-top: 75px;
}
@media (max-width: 768px) {
    .nb {
        padding-top: 0;
    }
}
.nb2 {
padding-top: 115px;
}
@media (max-width: 768px) {
    .nb2 {
        padding-top: 0;
    }
}

.ratag a {
    color: #2b4251;
}
.ratag a:hover {
    color: #bbad6b;
}
.me p {
    height: 100%;
    width: auto;
    padding-top: 30px;
    margin: auto;
}
.me {
    padding-top: 85px;
}
.npsvideo {
    width: 850px;
    height: 450px; 
    padding-top: 25px;
    margin: 0 auto;
    
}
@media (max-width: 700px) {
    .npsvideo {
        height: 175px;
        width: auto;
        padding-top: 25px;
        display: block;
        margin: 0 auto;
    }
}
@media (min-width: 701px) {
    .npsvideo {
     height: 275px;
        width: auto;
        padding-top: 25px;
        display: block;
        margin: 0 auto;
        }
}
@media (min-width: 1050px) {
    .npsvideo {
     height: 350px;
        width: auto;
        padding-top: 25px;
        display: block;
        margin: 0 auto;
        }
}

/* Main Menu Styles */
/*.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-width: 0px;
    border-style: solid;
    border-color: #5f7687;
    background-color: rgba(0,0,0,0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
    transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
}
.main-menu.main-menu-open {
    height: 100%;
    border-width: 0px 0px 50px 150px;
    background-color: rgba(0,0,0,0.3);
    -webkit-transition: border-width 0.3s, background-color 0.3s;
    transition: border-width 0.3s, background-color 0.3s;
}
.main-overlay {
    position: absolute;
    width: 100%;
}
.main-menu-open .main-overlay {
    height: 100%;
}
.main-menu-trigger {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.main-menu-trigger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 8%;
    background-color: rgba(95,118,135,.55);
    font-size: 0px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.menu-open .main-menu-trigger span {
    background-color: transparent;
}
.main-menu-trigger span:before,
.main-menu-trigger span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(208,196,145,1);
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.main-menu-trigger span:before {
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%);
}
.main-menu-trigger span:after {
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
}
.main-menu-open .main-menu-trigger span:before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}
.main-menu-open .main-menu-trigger span:after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}
.main-menu ul {
    position: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu ul.left-menu {
    top: 75px;
    left: 0;
}
.main-menu ul li,
.main-menu ul li a {
    display: block;
}
.main-menu ul li {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
    transition: transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
}
.main-menu.main-menu-open ul.left-menu li {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s 0.1s;
    transition: transform 0.3s, opacity 0.3s;
}

/* Left menu */
/*.main-menu ul.left-menu li {
    width: 150px;
    height: 50px;
    line-height: 50px;
    -webkit-transform: translate3d(-100%,50%,0);
    transform: translate3d(-100%,50%,0);
}
.main-menu.main-menu-open ul.left-menu li {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.main-menu ul li a {
    display: block;
    outline: none;
    text-decoration: none;
}
.main-menu ul.left-menu li a {
    padding: 0 20px;
    box-shadow: inset 0 1px rgba(0,0,0,0.2);
    color: #bbad6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.main-menu ul.left-menu li:last-child a {
    box-shadow: inset 0 1px rgba(0,0,0,0.2), inset 0 -1px rgba(0,0,0,0.2);
}
.main-menu ul li a:before {
    color: #fff;
    font-size: 24px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.main-menu ul:first-of-type li a:hover,
.main-menu ul:first-of-type li a:focus,
.main-menu ul li a:hover:before,
.main-menu ul li a:focus:before {
    color: #fff;
    margin-left: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width:768px) {
    .main-menu-trigger  {
        visibility: hidden;
    }
}
@media (max-width: 768px) {
    .reverse {
    display: flex;
  flex-direction: column-reverse;
}
}
/* END COMMENT OUT */

.top {
    padding-top: 30px;
}
.costa {
    width: 500px;
}
.costa2 {
    width: 300px;
}
.badbaby {
    height: auto;
    width: auto;
    padding-top: 55px;
  
}
@media (max-width: 768px) {
.badbaby {
    display: block;
    height: auto;
    width: 300px;
    padding-top: 0;
}
}
#lottie {
    min-height: 300px;
    width: 100%;
    display:inline-block;
    overflow: hidden;
    text-align: center;
}
#critter {
    min-height: 500px;
    width: 100%;
    display:inline-block;
    overflow: hidden;
    text-align: center;
    z-index: -1;
}
#critter2 {
    z-index: 0;
    position: absolute;
    width: 100%;
}

@media (max-width: 700px) {
    #lottie {
        margin-bottom: -180px;
        width: 100%;
        height: 100px;
    }
}
@media (min-width: 300px) {
    #critter {
        min-height: 140px;
        width: 100%;
        display:inline-block;
        overflow: hidden;
        text-align: center;
    }
}
@media (min-width: 1360px) {
    #critter {
        max-height: 540px;
        width: 100%;
        display:inline-block;
        overflow: hidden;
        text-align: center;
    }
}

#npstree {
    min-height: 300px;
            width: 100%;
            display:inline-block;
            overflow: hidden;
            text-align: center;
}
.redtext {
    color: #5f7687;
}
.marker {
    font-family: 'Cormorant Unicase', serif;
    font-weight: 200;
}
.hidden {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
@media (max-width: 400px) {
    .baby img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;   
}
        .nps img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .newberry img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .ciccone img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .maw img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .hallway img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .character img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .logo img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .covers img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
        .rex img  {
        display: block;
        height:auto;
        width: auto;
        padding-top: 0;  
}
}
.indigo a {
    color: black;
    text-align: center;
    text-decoration: none;
}
.indigo a:hover {
    color: #bbad6b;
    text-decoration: none;
}
.badbabyvideo {
    width: 950px;
    height: 450px; 
    padding-top: 25px;
    padding-bottom: 50px;
    margin: auto;
}
@media (max-width: 768px) {
    .badbabyvideo {
        width: 450px;
         padding-bottom: 25px;
        margin-top: -100px;
    }
}
@media (min-width: 769px) {
    .badbabyvideo {
        width: 750px;
        padding-bottom: 40px;
    }
}
@media (min-width: 1150px) {
    .badbabyvideo {
        width: 850px;
        padding-top: 0px;
    }
}
.rubhose {
    width: 350px;
    height: auto; 
    padding-top: 25px;
    padding-bottom: 50px;
    margin: auto auto;
    display: block;
    overflow: hidden;
}
.hula {
    padding-top: 40px;
}
.color {
    padding-top: 40px;
}
@media (max-width: 742px) {
    .color {
        padding-top: 0;
    }
}
.drinks img {
    margin-top: 146px;
}
.spice img {
    margin-top: 46px;
    margin-bottom: -25px;
}
@media (max-width: 767px) {
    .drinks img {
        margin-top: 0;
    }
    .spice img {
        margin-top: 0;
        margin-bottom: 0;
    }
    .padded {
        padding-top: 0;
    }
    .beaver {
        margin-top: 0;
    }
}
.padded {
    padding-top: 50px;
}
.large {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
}
.large2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    text-align: center;
}
@media (max-width:767px) {
    .large {
        text-align: center;
    }
    .large2 {
        text-align: center;
    }
}
@media (max-width: 900px) {
    .zero img {
    height: 245px;
    width: 285px;
}
}
.upwork {
    padding-left: 8px;
}
.work {
    color: #bbad6b;
}

/* LIGHTBOX */
html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* ANIMATIONS FADEINUP */
.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 2s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
  animation-duration: 8s;
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
  animation-duration: 4s;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

