/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body, html{
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    height: 100%;
}

/* STICKY FOOTER */
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -4em;
}
.footer, .push {
    height: 58px;
}

a {
    outline: none !important;
    -webkit-transition: 0.1s all ease-in;
    -moz-transition: 0.1s all ease-in;
    -o-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'PT Sans Narrow', Arial, sans-serif;
    margin-top: 0;
    text-transform: uppercase;
}

h1{font-size: 32px;}

.site-container{
    padding: 70px 0;
}

.bg-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("../Images/bg_scanlines.png");
}

.btn{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    text-decoration: none;
}

.btn-primary{
    background: #9BCD9B;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    padding: 15px 25px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    background: #000;
    color: #fff;
}

/***** SIDEBAR *****/
.sidebar{
    background: rgba(0, 0, 0, 0.8);
    height: auto;
    width: 100%;
}

.no-opacity .sidebar{
    background: #000;
}

    .sidebar .logo-container{
        padding: 0;
    }

        .sidebar .logo-container #main-logo{
            width: 100%;
            height: 263px;
            background: url("../Images/logo-ecomama.png") no-repeat;
            text-indent: -9999px;
        }

    .sidebar .main-nav{
        padding: 0;
        margin: 0;
    }
        
        .sidebar .main-nav li a{
            border-top: 1px solid #9BCD9B;
            color: #fff;
            display: block;
            font-size: 13px;
            font-weight: 700;
            padding: 10px 15px;
            text-decoration: none;
            text-transform: uppercase;
        }

            .sidebar .main-nav li a i{
                font-size: 12px;
                margin-right: 25px;
            }

        .sidebar .main-nav li a:hover,
        .sidebar .main-nav li a:focus,
        .sidebar .main-nav li a:active,
        .sidebar .main-nav li a.active{
            /*background: #9BCD9B;*/
            color: #9BCD9B;
        }

    .sidebar .main-nav li ul{
		display: none;
        margin: 0;
        padding: 0;
    }

        .sidebar .main-nav li ul li a{
            padding-left: 48px
        }

/***** MAIN CONTENT *****/
.home h1{
display: none;
}

#homemsg {
	background: url("../images/Home.png");
	width: 443px;
	height: 378px;
}

.main-content{
    background: rgba(0, 0, 0, 0.8);
    font-size: 13px;
    height: auto;
    padding: 30px;
}

.main-content a{
	color: #fff;
}

.no-opacity .main-content{
    background: #000;
}

.btn-gallery{
    background: #000;
    float: right;
    padding: 6px 12px;
    font-size: 18px;
	color: #fff;
}

.btn-gallery:hover{
    background: #9BCD9B;
	color: #fff;
}

.accordion .accordion-row a.slide-head{
	display: block;
	background: #9BCD9B;
	color: #000;
	text-decoration: none;
	padding: 5px 10px;
	text-transform: uppercase;
}

.accordion .accordion-row{
	margin-bottom: 10px;
}

#instafeed span.ig-image{
	display: inline-block;
	margin: 0 26px 26px 0;
	border-bottom: 30px solid #fff;
}

#instafeed span.ig-image img{
	border: 5px solid white;
}




.carousel {
  display: block;
  position: relative;
  -webkit-transform: translateZ(0);
  /*  for demo only */
  width: 100%;
  height: 220px;
  min-width: 550px;
  margin: auto;
  font-size: 0;
  -webkit-overflow-scrolling: touch;
  /* for tablets */
}
.carousel ul {
	padding: 0;
}
.touch .carousel {
  overflow: auto;
}

.carousel > a {
  position: absolute;
  margin: 0;
  top: 0;
  bottom: 0;
  color: #CCC;
  font-size: 1.5em;
  -webkit-transition: 0.1s;
          transition: 0.1s;
}
.carousel > a:hover {
  color: #FFF;
}
.carousel > a.prev {
  left: -20px;
}
.carousel > a.next {
  right: -20px;
}
.carousel > .indicator {
  pointer-events: none;
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  background: #9BCD9B;
  height: 4px;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.2s, bottom 0.2s;
          transition: opacity 0.2s, bottom 0.2s;
}
.carousel:hover > .indicator {
  opacity: 1;
  bottom: -10px;
}
.carousel > .wrap {
  overflow: hidden;
  border-radius: 5px;
}
.carousel > .wrap > ul {
  list-style: none;
  white-space: nowrap;
  height: 220px;
}
.carousel > .wrap > ul > li {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin: 0 0 0 5px;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.25s ease-out;
          transition: 0.25s ease-out;
}
.carousel > .wrap > ul > li:first-child {
  margin: 0;
}
.carousel > .wrap > ul > li > img {
  display: block;
  height: 100%;
  margin: auto;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
  -webkit-transition: 1s ease;
          transition: 1s ease;
}








/***** FOOTER *****/
.footer{
    height: 58px;
    color: #000;
    font-size: 11px;
    margin-top: 6px;
}

.footer .grid_12{
    background: rgba(180, 238, 180, 0.8);
    height: 58px;
    line-height: 58px;
}

.footer .footer-nav{
    margin: 0;
    padding: 0 20px;
    float: left;
    list-style-type: none;
}

    .footer .footer-nav li{
        display: inline;
    }

        .footer .footer-nav li a{
            color: #000;
            display: inline-block;
            text-decoration: none;
        }
        .footer .footer-nav li a::after{
            content:"|";
                padding-left: 4px;
        }
        .footer .footer-nav li:last-child a::after{
            display: none;
        }

.footer .social{
    float: right;
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-right: 20px;
}

    .footer .social li{
        display: inline;
        position: relative;
    }

        .footer .social li a{
            color: #000;
            font-size: 16px;
            line-height: 1px;
            margin-left: 10px;
			text-decoration: none;
			position: relative;
			top: 5px;
        }

.no-opacity .footer .grid_12{
    background: #9BCD9B;
}

/***** SPLASHPAGE *****/
.splashpage .main section .container{
    height: 100%;
    position: relative;
    display: table;
}

.splashpage .main section .nav-bottom,
.splashpage .main section .nav-top{
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.splashpage .main section .nav-bottom:hover span.first{
    margin-top: 55px;
}
.splashpage .main section .nav-top:hover span.first{
    margin-top: 5px;
}

.splashpage .main section .nav-bottom{
    width: 248px;
    height: 124px;
    background: url("../Images/bg_triangle-top.png") no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -124px;
    text-align: center;
}

    .splashpage .main section .nav-bottom span, .splashpage .main section .nav-top span{
        display: block;
        -webkit-transition: 0.1s all ease-in;
        -moz-transition: 0.1s all ease-in;
        -o-transition: 0.1s all ease-in;
        transition: 0.1s all ease-in;
    }
    .splashpage .main section .nav-bottom span.first{
        margin-top: 50px
    }
    .splashpage .main section .nav-top span.first{
        margin-top: 10px
    }
    .splashpage .main section .nav-bottom span i{
        margin-top: 5px;
    }

.splashpage .main section .nav-top{
    width: 248px;
    height: 124px;
    background: url("../Images/bg_triangle-bottom.png") no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -124px;
    text-align: center;
}

    .splashpage .main section .container .splash-content{
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }

        .splashpage .main section .container .splash-content .splash-logo{
            position: relative;
            top: -80px
        }
        
        .splashpage .main section .container .splash-content a{
            text-decoration: none;
        }

        .splashpage .main section .container .splash-content h2, .splashpage .main section .container .splash-content a h2{
            color: #fff;
            font-size: 30px;
            font-weight: 400;
            line-height: 0;
            margin: 0;
            text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }
        .splashpage .main section .container .splash-content h3, .splashpage .main section .container .splash-content a h3{
            color: #fff;
            font-size: 90px;
            font-weight: 700;
            margin: 0;
            text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }   
        .splashpage .main section .container .splash-content .btn-primary{
            margin-top: 10px;
        }

.splashpage .main section .bg-overlay{
    position: absolute;
    z-index: -100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.splashpage .onepage-pagination{
    top: 45%;
}

.splashpage .onepage-pagination li{
    margin: 5px 0;
}

.splashpage .onepage-pagination li a{
    position: relative;
    color: #000;
}

    .splashpage .onepage-pagination li a span{
        font-size: 13px;
        font-weight: 700;
        position: absolute;
        right: 30px;
        text-transform: uppercase;
        top: 3px;
		background: #9BCD9B;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		padding: 2px 5px;
    }

.splashpage .onepage-pagination li a.active{
    color: #fff;
}

.splashpage .onepage-pagination li a.active:before{
    background: none;
    border: 2px solid #fff;
    width: 7px;
    height: 7px;
    margin-top: -3px;
}
.splashpage .onepage-pagination li a:before{
    background: #000;
}

/***** OVERRULE OLD STYLING *****/
.jMyCarousel ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

	.jMyCarousel ul li{
		display: inline;
		float: left;
		margin: 0 30px 30px 0;
	}

/* ==========================================================================
   960 GRID
   ========================================================================== */
body {
  min-width: 960px;
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12 {
	position:relative;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/
.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.container_12 .grid_1 {
	width:60px;
}

.container_12 .grid_2 {
	width:140px;
}

.container_12 .grid_3 {
	width:220px;
}

.container_12 .grid_4 {
	width:300px;
}

.container_12 .grid_5 {
	width:380px;
}

.container_12 .grid_6 {
	width:460px;
}

.container_12 .grid_7 {
	width:540px;
}

.container_12 .grid_8 {
	width:620px;
}

.container_12 .grid_9 {
	width:700px;
}

.container_12 .grid_10 {
	width:780px;
}

.container_12 .grid_11 {
	width:860px;
}

.container_12 .grid_12 {
	width:940px;
}

/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.container_12 .prefix_1 {
	padding-left:80px;
}

.container_12 .prefix_2 {
	padding-left:160px;
}

.container_12 .prefix_3 {
	padding-left:240px;
}

.container_12 .prefix_4 {
	padding-left:320px;
}

.container_12 .prefix_5 {
	padding-left:400px;
}

.container_12 .prefix_6 {
	padding-left:480px;
}

.container_12 .prefix_7 {
	padding-left:560px;
}

.container_12 .prefix_8 {
	padding-left:640px;
}

.container_12 .prefix_9 {
	padding-left:720px;
}

.container_12 .prefix_10 {
	padding-left:800px;
}

.container_12 .prefix_11 {
	padding-left:880px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.container_12 .suffix_1 {
	padding-right:80px;
}

.container_12 .suffix_2 {
	padding-right:160px;
}

.container_12 .suffix_3 {
	padding-right:240px;
}

.container_12 .suffix_4 {
	padding-right:320px;
}

.container_12 .suffix_5 {
	padding-right:400px;
}

.container_12 .suffix_6 {
	padding-right:480px;
}

.container_12 .suffix_7 {
	padding-right:560px;
}

.container_12 .suffix_8 {
	padding-right:640px;
}

.container_12 .suffix_9 {
	padding-right:720px;
}

.container_12 .suffix_10 {
	padding-right:800px;
}

.container_12 .suffix_11 {
	padding-right:880px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.container_12 .push_1 {
	left:80px;
}

.container_12 .push_2 {
	left:160px;
}

.container_12 .push_3 {
	left:240px;
}

.container_12 .push_4 {
	left:320px;
}

.container_12 .push_5 {
	left:400px;
}

.container_12 .push_6 {
	left:480px;
}

.container_12 .push_7 {
	left:560px;
}

.container_12 .push_8 {
	left:640px;
}

.container_12 .push_9 {
	left:720px;
}

.container_12 .push_10 {
	left:800px;
}

.container_12 .push_11 {
	left:880px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.container_12 .pull_1 {
	left:-80px;
}

.container_12 .pull_2 {
	left:-160px;
}

.container_12 .pull_3 {
	left:-240px;
}

.container_12 .pull_4 {
	left:-320px;
}

.container_12 .pull_5 {
	left:-400px;
}

.container_12 .pull_6 {
	left:-480px;
}

.container_12 .pull_7 {
	left:-560px;
}

.container_12 .pull_8 {
	left:-640px;
}

.container_12 .pull_9 {
	left:-720px;
}

.container_12 .pull_10 {
	left:-800px;
}

.container_12 .pull_11 {
	left:-880px;
}


/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
  zoom: 1;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
/*

@media only screen and (min-width: 35em) {

}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {

}
*/

/* ==========================================================================
   Helper classes
   ========================================================================== */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

.bookme-button {
	background: #9BCD9B;
	padding: 10px 25px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 800;
	display: inline-block;
	margin-top: 25px;
}