/*
Theme URI: http://moore.photos/
Author: Geoff Moore
Author URI: http://www.geoff-moore.co.uk
Description: Landscape Portfolio.
Version: 1.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
00. Typography
01. Typography
02. Buttons
03. Generic items
3a. Tables
04. Navigation
05. Nav animation
06. Intro
07. Portfolio
08. About
09. Blog
10. Contact
11. Footer
12. Popup
13. Bootstrap Overides
14. Media queries

--------------------------------------------------------------*/

/*--------------------------------------------------------------
0. Adventure Preload
--------------------------------------------------------------*/

/*:root:before {
  content: url(https://c2.staticflickr.com/6/5516/30983919790_6c9d456642_k.jpg)
           url(https://c2.staticflickr.com/6/5705/30741882110_fba60e0ddf_k.jpg)
           url(https://c2.staticflickr.com/6/5609/22785873198_ee8536422f_k.jpg)
           url(https://c2.staticflickr.com/6/5313/30123614776_bcbb0b9fe4_k.jpg)
           url(https://c1.staticflickr.com/9/8541/29699420976_3ea3d2cbe0_k.jpg)
           url(https://c2.staticflickr.com/8/7619/28717068122_af25be9f2f_k.jpg)
           url(https://c2.staticflickr.com/8/7664/27952105992_b919a58a62_k.jpg)
           url(https://c2.staticflickr.com/8/7014/27239866012_e22b91358d_k.jpg)
           url(https://c1.staticflickr.com/1/619/31704177311_88e870154d_k.jpg)
           url(https://c2.staticflickr.com/2/1549/26251823562_1921079562_k.jpg)
           url(https://c2.staticflickr.com/2/1667/26083585566_121c0c0cc4_k.jpg)
           url(https://c2.staticflickr.com/2/1646/25350126034_4734b6915c_k.jpg)
           url(https://c2.staticflickr.com/2/1588/24789776294_5a60924974_k.jpg)
          url(https://c2.staticflickr.com/2/1618/24067751509_f6be452df2_k.jpg);
  partial fallback 
  background-image: url(/assets/images/loading.gif);
  visibility: hidden;
  position: absolute;
  left: -999em;
  top: -9999em;
  height:0;
}*/



/*--------------------------------------------------------------
01. Typography
--------------------------------------------------------------*/
body.hide {
  display: none;
}
body {
  font-family: 'Muli', sans-serif;
}

h1 {
  font-size: 55px;
  line-height: 1.3em;
  margin: 0;
}

.page h1 {
  font-size: 70px;
}

h2 {
  font-size: 50px;
  margin-top: 0;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 16px;
  line-height: 1.6em;
}

blockquote	{
	background: #efefef;
}

.page header {
  /*margin-bottom: 40px;*/
  margin-bottom: 0;
}

.page header h1 {
  line-height: 1em;
  margin-bottom: 10px;
  margin-left: -30px;
}

.page header .sub-heading {
  color: #848484;
  font-size: 28px;
  margin-bottom: 30px;
}

.page header p {
  color: #848484;
  font-size: 18px;
  display: inline;
  padding-bottom: 14px;
}

.page.contact header p {
  width: 100%;
}

.page.single-post h2 {
  font-size: 24px;
}


/*--------------------------------------------------------------
02. Buttons
--------------------------------------------------------------*/

.btn {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.btn-default {
  background-color: #fD4c57;
  color: #fff;
  padding: 14px 28px;
  border: none;
}

.btn-default:hover {
  background-color: #fff;
  color: #2b2b2b;
  -webkit-box-shadow: 0 0 0 1px #fD4c57;
  box-shadow: 0 0 0 1px #fD4c57;
}

.btn-default.disabled {
  color: #fff;
}

.btn-default.disabled:hover {
  background-color: #fD4c57;
  opacity: 0.8;
}

.btn-border {
  background-color: transparent;
  font-size: 11px;
  border: 1px solid #848484;
  padding: 10px 20px;
}

.btn-border:hover {
  background-color: #848484;
  color: #fff;
}



/*--------------------------------------------------------------
03. Generic items
--------------------------------------------------------------*/

body {
  background: #ff7e5f;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #ff7e5f, #feb47b);
  background: linear-gradient(to left, #ff7e5f, #feb47b);
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 2px 8px #ccc;
}

.social {
  margin-bottom: 40px;
}

.social i {
  font-size: 18px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.social i:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.social a {
  color: #2b2b2b;
}

.social li {
  margin-left: 6px;
  margin-right: 6px;
}

.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

/* centered columns styles */
.row-centered {
  text-align: center;
}

.col-centered {
  display: inline-block;
  float: none;
  text-align: left;
  margin-right: -4px;
}

.intro-logo {
  margin-bottom: 30px;
  max-width: 300px;
  border-radius: 170px;
}

a[target="_blank"] {
    background: url(/assets/images/external.png) center right no-repeat;
    padding-right: 13px;
}

/*--------------------------------------------------------------
3a. Tables
--------------------------------------------------------------*/
.single-post tbody tr:first-of-type {
  border-bottom:1px solid #000;
}
.single-post tbody tr {
  border-bottom: 1px solid #ccc;
}
.single-post th, .single-post td {
  padding:10px;

}
.single-post th {
    background: #dedede;
}
.single-post td {
    background: #efefef;
}

.single-post tbody tr td:first-of-type {
  min-width: 100px;
}

.single-post td.color.black {
  background: black;
}
.single-post td.color.gray {
  background: gray;
}
.single-post td.color.blue {
  background: blue;
}
.single-post td.color.green {
  background: green;
}
.single-post td.color.orange {
  background: orange;
}
.single-post td.color.red {
  background: red;
}
.single-post td.color.white {
  background: white;
  color: black;
}

.single-post td.color.black,
.single-post td.color.gray,
.single-post td.color.blue,
.single-post td.color.green,
.single-post td.color.orange,
.single-post td.color.red {
  color: #fff;
}


.single-post td ul {
  margin-left: -20px;
}



/*--------------------------------------------------------------
04. Navigation
--------------------------------------------------------------*/

.branding {
  background: white;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
  min-height: 50px;
  /*padding: 30px 0;*/
  padding: 30px 0 9px;
}

.logo {
  display: block;
  margin: -17px 0 0 -5px;
  max-width: 400px;
  padding-top: 0;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo span {
  text-indent: -999em;
}

.logo:hover {
  opacity: 0.8;
}

.branding .intro-logo {
  margin: 0;
  max-width: 50px;
  display: inline-block;
}

.contact-phone,
.content-email {
  display: block;
}

.contact-phone {
  margin-top: 15px;
}

.navbar-fixed-top {
  top: 100px;
}

.navbar-brand {
    line-height: 19px;
    padding: 15px;
    text-transform: uppercase;
    color: #fff;
}

.top-navigation-container {
  background-color: rgb(107,123,138);
  background: rgba(107,123,138,0.9);
}

nav {
  padding-top: 60px;
  position: relative;
  z-index: 100;
}

.navbar-left {
  margin-left: -15px;
}

.navbar-right {
  margin-right: -15px;
}

.navbar {
  position: relative;
  z-index: 1000;
  margin-bottom: 10px;
}

.navbar .navbar-nav > li > a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-brand, .navbar-nav {
  /*opacity: 0;*/
  margin-top: -50px;
  margin-right: 0px;
}

.nav > li > a:focus,
.nav > li > a:hover,
.nav > li > a:active {
  background-color: transparent;
}

.dropdown-menu > li > a.disablednav {
  cursor: no-drop;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: #fff;
  color: #2b2b2b !important;
  border-radius: 2px 2px 0 0;
}

.dropdown-menu > li > a.disablednav:hover {
  background: transparent;
}

.dropdown-menu {
  border: none;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.07);
}

.dropdown-menu > li > a {
  color: #2b2b2b;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 11px;
  padding-bottom: 11px;
}

.navbar-nav > li > .dropdown-menu {
  border-radius: 0 2px 2px 2px;
}

#hamburger-icon {
  cursor: pointer;
  width: 26px;
  height: 18px;
  position: relative;
  display: block;
  float: right;
}

#hamburger-icon .line {
  display: block;
  background: #2b2b2b;
  width: 26px;
  height: 2px;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}

#hamburger-icon .line.line-1 {
  top: 0;
  width: 36px;
}

#hamburger-icon .line.line-2 {
  top: 50%;
}

#hamburger-icon .line.line-3 {
  top: 100%;
}

#hamburger-icon:hover .line-1, #hamburger-icon:focus .line-1 {
  transform: translateY(-1px);
}

#hamburger-icon:hover .line-3, #hamburger-icon:focus .line-3 {
  transform: translateY(1px);
}

#hamburger-icon.active .line-1 {
  transform: translateY(9px) translateX(0) rotate(45deg);
  width: 26px;
}

#hamburger-icon.active .line-2 {
  opacity: 0;
}

#hamburger-icon.active .line-3 {
  transform: translateY(-9px) translateX(0) rotate(-45deg);
}

/* Adventure * Prints Navigation */

.adventure-page-navigation {
  padding-top: 0;
}


.pager {
  text-align: left;
}
.pager li > a, .pager li > span {
  padding: 15px 15px;
}
.pagination>li>a, .pagination>li>span {
  border: none;
}
.pagination>li.disabled>a, .pagination>li.disabled>span {
  border: 1px solid #ccc;
  padding-bottom: 8px;
}

/*--------------------------------------------------------------
05. Nav animation
--------------------------------------------------------------*/

body.show .introduction {
  box-shadow: 0 -10px 10px 4px rgba(0, 0, 0, 0.11);
  transform: scale(0.9, 0.9);
}

body.show .navbar-nav {
  opacity: 1;
}


body.show #hamburger-icon .line {
  background-color: #fff;
}

.introduction {
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: auto;
  float: left;
  box-shadow: 0 -10px 10px 0px rgba(0, 0, 0, 0.075);
  transition: all .3s;
}

body.home-page .introduction {
  transform-origin: 50% 75%;
}

body.page-single-portfolio .introduction {
  transform-origin: 50% 65%;
}

body.page-about .introduction {
  transform-origin: 50% 30%;
}

body.page-about-2 .introduction {
  transform-origin: 50% 60%;
}

body.page-about-3 .introduction {
  transform-origin: 50% 60%;
}

body.page-blog-1 .introduction {
  transform-origin: 50% 40%;
}

body.page-blog-2 .introduction {
  transform-origin: 50% 60%;
}

body.page-blog-3 .introduction {
  transform-origin: 50% 90%;
}

body.page-contact-1 .introduction {
  transform-origin: 50% 65%;
}

body.page-contact-2 .introduction {
  transform-origin: 50% 85%;
}



/* Pre loading */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(/assets/images/loading.gif) center no-repeat #fff;
}


/*--------------------------------------------------------------
06. Intro
--------------------------------------------------------------*/

.intro {
  padding-top: 250px;
  padding-bottom: 80px;
  background: url("/assets/images/landscape.jpg") repeat scroll 0 -424px;
}

.intro p {
  color: #848484;
  font-size: 18px;
  line-height: 1.65em;
  margin-top: 50px;
}

.intro-2 {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 80px;
}

.show .intro-2 {
  padding-top: 100px;
}

.intro-2 h1 {
  margin-bottom: 35px;
}

.intro-2 p {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.intro-2 .social {
  margin-top: 40px;
  margin-bottom: 0;
}

.latest-news {
  padding: 25px;
  background: #efefef;
  text-align: left;
  margin: 0 -25px 25px;
}


/*--------------------------------------------------------------
07. Portfolio
--------------------------------------------------------------*/

.home-page .portfolio,
.vip .portfolio {
  border-top: 10px solid #a4d165;
  border-bottom: 10px solid #a4d165;
}


.portfolio a {
  display: block;
  position: relative;
}

.home-page .portfolio a {
  /*border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;*/
}

.portfolio a:hover .overlay {
  opacity: 1;
}

.portfolio img {
/*  transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  transform: scale(1);*/
  margin-left: auto;
  margin-right: auto;
  background: url(/assets/images/loading.gif) no-repeat 50% 50%;
  width: 100%;
}

.portfolio a:hover img{
  /*transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  transform: scale(0.93);*/
}

.img-responsive, .thumbnail a > img, .thumbnail > img {
  /*background: url(/assets/images/loading.gif) no-repeat 50% 50%;*/
}

.overlay {
  background-color: rgba(255, 255, 255, 0.92);
  color: #2b2b2b;
  text-align: center;
  position: absolute;
  display: flex;
  display: -webkit-flex;

  align-items: center; 

  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.overlay-content {
  margin: auto auto;
}

.overlay-content h2 {
  font-size: 16px;
}
.overlay-content h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.single-portfolio {
  padding-top: 200px;
  padding-bottom: 60px;
}

/* Fix for Gallery on Adventures */
.page-blog-1 .single-portfolio {
    padding-top: 15px;
}

.single-portfolio h1 {
  font-size: 55px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.single-portfolio .info {
  color: #2b2b2b;
  font-size: 16px;
  margin-bottom: 50px;
}

.single-portfolio p {
  color: #848484;
  font-size: 20px;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
  /*min-height: 320px;*/
}



/*--------------------------------------------------------------
08. About
--------------------------------------------------------------*/

.about {
  padding-top: 250px;
}

.about h2 {
  text-align: center;
}

.about-text {
  margin-top: 95px;
  margin-bottom: 110px;
}

.about-text p {
  color: #848484;
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 40px;
}

.sub-section {
  margin-bottom: 150px;
}

.sub-section h2,
  .sub-section .sub-heading {
  text-align: center;
}

.sub-section .sub-heading {
  color: #848484;
  font-size: 18px;
  margin-bottom: 75px;
}

.studio img {
  margin-left: auto;
  margin-right: auto;
}

.service-box {
  background-color: #fafafa;
  text-align: center;
  padding-top: 45px;
  height: 228px;
  margin-bottom: 30px;
}

.service-box i {
  color: #cdcdcd;
  font-size: 90px;
}

.print-list {
  position: relative;
  margin-bottom: 30px;
  min-height: 281px;
}

.print-page .print-list > a > img {
  border:10px solid #fff;
}

.print-list .onsale {
  position: absolute;
  top: 0;
  right: 0;
  margin: 11px;
}
.print-list .onsale img {
    width: auto;
    height: auto;
    max-height: 225px;
    display: block;
}

.print-list:hover .print-info-overlay {
  opacity: 1;
}

.print-info-overlay {
  background-color: rgba(255, 255, 255, 0.92);
  color: #2b2b2b;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  display: -webkit-flex;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.print-info-content {
  text-align: center;
  margin: auto auto;
}

.single-post .print-info-content h2 {
  font-size: 16px;
  line-height: 0;
}

.print-info-content h3,
.single-post .print-info-content h2 + h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.print-info-content p {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 0;
}

.print-info-content i {
  color: #2b2b2b;
  font-size: 18px;
}

.testimonials {
  background-color: #f8f8f8;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 30px;
}

#testimonials-carousel {
  text-align: center;
}

#testimonials-carousel .carousel-indicators {
  top: 220px;
}

#testimonials-carousel .carousel-indicators li {
  background-color: #d8d8d8;
}

#testimonials-carousel p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.8em;
  margin-bottom: 30px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

#testimonials-carousel img {
  margin-left: auto;
  margin-right: auto;
}

#testimonials-carousel .author {
  font-size: 16px;
  margin-top: 20px;
}

.about-2 {
  padding-top: 200px;
}

.about-2 h2 {
  font-size: 38px;
  text-align: left;
}

.about-2 .sub-section {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 0;
  border-bottom: 1px solid #efefef;
}

.about-2 .about-intro p {
  color: #848484;
  font-size: 20px;
}

.about-2 .skills {
  padding-bottom: 40px;
}

.about-2 .skills i {
  font-size: 28px;
}

.about-2 .skills h3 {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-2 .skills p {
  color: #848484;
  font-size: 16px;
  margin-bottom: 65px;
}

.about-2 .testimonials {
  background-color: #fff;
  padding-bottom: 40px;
  border: none;
}

.about-2 .testimonials .text {
  color: #848484;
  font-style: italic;
}

.about-2 .testimonials .author {
  font-size: 16px;
  margin-bottom: 60px;
}

.about-3 {
  padding-top: 200px;
}

.about-3-intro {
  background-color: #f8f8f8;
  padding: 60px;
}

.about-3-intro p {
  font-size: 18px;
}

.about-3-intro .social {
  margin-top: 30px;
  margin-bottom: 0;
}

.about-3-intro .social a {
  color: #2b2b2b;
}

.about-3-intro .social li {
  padding-left: 2px;
  padding-right: 2px;
}

.about-3 h2 {
  font-size: 50px;
}

.about-3 .sub-heading {
  margin-bottom: 90px;
}

.about-3 .skills {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 0;
  margin-bottom: 80px;
}

.about-3 .skills i {
  font-size: 28px;
  margin-bottom: 8px;
}

.about-3 .skills h3 {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-3 .skills p {
  color: #848484;
  font-size: 18px;
}

.about-3 .skills .col-md-6 {
  margin-bottom: 60px;
}



/*--------------------------------------------------------------
09. Blog
--------------------------------------------------------------*/

.blog {
  padding-top: 250px;
}

.blog header {
  text-align: center;
  margin-bottom: 100px;
}

.blog header p {
  margin-left: auto;
  margin-right: auto;
}

.blog .post {
  margin-bottom: 130px;
}

.blog .post-content {
  padding: 50px;
  border: 2px solid #f0f0f0;
  border-top: none;
}

.blog .post-info,
.blog h2 {
  text-align: center;
}

.blog .post-info {
  color: #848484;
  font-size: 16px;
  margin-bottom: 30px;
}

.blog h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.blog .excerpt {
  color: #848484;
  line-height: 1.7em;
  margin-bottom: 20px;
}

.blog .read-more {
  color: #2b2b2b;
  font-size: 16px;
}

.blog-2 header {
  text-align: left;
}

.blog-2 header p {
  margin-left: 0;
}

.blog-2 .post {
  margin-bottom: 80px;
}

.blog-2 .post-info,
.blog-2 h2 {
  text-align: left;
}

.blog-2 .post-info {
  margin-bottom: 0;
}

.blog-2 h2 {
  font-size: 28px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.blog-3 header {
  text-align: left;
}

.blog-3 header p {
  margin-left: 0;
}

.blog-3 .post {
  border: 2px solid #f0f0f0;
  padding: 42px;
  margin-bottom: 30px;
}

.blog-3 h2,
.blog-3 .post-info {
  text-align: left;
}

.blog-3 h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 14px;
}

.blog-3 .post-info {
  font-style: italic;
}

.blog-3 .excerpt {
  font-size: 16px;
  margin-bottom: 25px;
}

/* Vlog Page */
.vlog-page .single-post {background-position: 0 100%;}


.single-post {
  padding-top: 180px;
  /*background: url(/assets/images/postbg.svg);
  background-position: fixed;*/
  background: url(/assets/images/landscape.jpg) no-repeat FIXED 50% 90%;
}

.single-post .container {
  background: #fff;
  padding:20px;
}

.single-post header p.author {
  font-size: 18px;
}

.single-post header img {
  margin-bottom: 40px;
  margin-top: 40px;
}

.single-post h1 {
  /*font-size: 42px;*/
  font-size: 32px;
}

.single-post h2+h3 {
  font-size: 18px;
}

.single-post .heading {
  margin: 45px 0;
}
.single-post .lead,
.single-post .lead p {
  font-size: 24px;
  line-height: 1.6em;
}

.single-post .text,
.single-post .text p {
  font-size: 16px;
  margin-bottom: 30px;
}

.single-post .post-image {
  margin-top: 40px;
/*  margin-bottom: 40px;*/
  margin-bottom: 0px;
  width: 100%;
  /*padding: 20px;
  background: #fafafa;
  box-shadow: 0px 0px 5px #ececec;*/
  padding: 0px;
}


.single-post .feature-image-container img {
  margin-top: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-transform: scale(2.5);
          transform: scale(2.5);
  -webkit-transition: all 4s;
  transition: all 4s;
   -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.single-post .feature-image-container img.animate {
  opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}


/* New Large Format Hero Image JS Duplicated Heading */
.feature-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -48px;
}
.fake .scroll-reveal {
  z-index:1;
  opacity: 100!important;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  background: #798895;
  background: rgba(107,123,138,0.9);
  color: #fff;
}

.single-post .list-group {
/*  margin-top: 30px;*/
  margin-top: 0px;
  margin-bottom: 40px;
  overflow: hidden;
}
.single-post .list-group .badge {
  background-size: rgb(107,123,138);
  background: rgba(200,200,200,0.3);
  padding: 6px 14px;
  font-size: 90%;
  color: #777;
}
.single-post .list-group-item:first-child {
  background: #95c352;
  background: rgba(141,195,82,0.5);

}
.single-post .list-group-item {
  background: #fafafa;
/*  padding:5px 7px;*/
padding:5px 20px;
}

.single-post .list-group .title {
/*  font-size: 120%;*/
}

.single-post .list-group-item b {
  font-size: 80%;
}

.single-post hr {
  margin-bottom: 40px;
}

.single-post .quote,
.single-post .quote p {
  font-size: 28px;
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.single-post .tags {
  margin-top: 50px;
}

.single-post .tags li {
  margin-bottom: 30px;
}

.single-post .tags a {
  background-color: #f8f8f8;
  color: #2b2b2b;
  padding: 9px 20px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.single-post .tags a:hover {
  background-color: #2b2b2b;
  color: #fff;
  text-decoration: none;
}

.single-post .printRequest {
  margin: 20px 0 15px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(107,123,138,0.1);
  overflow: hidden;
}

.single-post .form-group label {
  margin: 10px 0 15px;
}

#msgSubmit {
  padding: 20px;
  text-align: center;
  background: #3C763D;
  color: #fff;
  border-radius: 5px;
}


.single-post .images {
  margin-top: 70px;
  margin-bottom: 60px;
}

.single-post .images.insitu {
  margin-top: 0px;
  margin-bottom: 20px;
}

.images.insitu + .images.insitu {
  margin-top: -60px;
}

.images.insitu > div {
  margin-top: -40px;
}

h3 + .row.images.insitu {
    margin-top: -50px;
}

h3 + .row.images.insitu.prints {
    margin-top: 0;
}

.single-post figure > .post-image {
  margin-bottom:0;
}
.single-post img + figcaption {
    text-align: right;
    margin-bottom: 20px;
    background: #fafafa;
    padding: 10px;
}

.single-post a.buyprint {
    display: block;
    background-color: green;
    text-align: center;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
.single-post a.buyprint:hover {
    background: deepskyblue;
}


/* mini Gallery */
.gallery-image-title {
/*    margin: -40px 0 0 0px;*/
    display: block;
    padding: 10px 25px;
    background: #efefef;
    border-radius: 0 0 5px 5px;
}

/* Print Listing & Adventure Listing */
.print-list > a {
  border:1px solid #efefef;
  display: block;
}

.print-list .img-responsive {
  min-height: auto;
}

.print-list .gallery-image-title {
  margin: 0;
}

.comments .container {
  background-color: #f8f8f8;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.comments + .container {
  background: none;
}

.comments h3 {
  margin-bottom: 50px;
}

.comments label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.comments .form-control {
  border-radius: 0;
  border-color: #848484;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.comments input {
  height: 50px;
  margin-bottom: 40px;
}

.comments form {
  margin-bottom: 75px;
}

.comment .media-heading {
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.comment .time {
  color: #848484;
  font-size: 14px;
}

.comment .text {
  margin-top: 20px;
}

/* Map */
.map-container {
  margin-top: -10px;
  position: relative;
}
.planner {
    display: block;
    padding: 15px 15px 20px;
    background: rgb(107,123,138);
    background: rgba(107,123,138,0.1);
    border-radius: 0px 0px 5px 5px;
    margin-top: -15px;
    border-top: 1px solid #eee;
}

#map {
    height: 640px;
    width: 100%;
}


/* Video Container */
.video-container {
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
}

.video-container iframe, 
.video-container object, 
.video-container embed { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}


/* Price Container */
.price-container {
    background: #fff none repeat scroll 0 0;
    margin: -30px 0 30px;
    padding: 20px 40px 10px;
  }


.price-container .cost {
  padding: 0 10px 0;
  display: table;
  width: 100%;
}
.price-container .cost .info {
  display: table-cell;
  text-align: left;
  width: 50%;
  font-size: 14px;
}
.price-container .cost .total {
  font-size: 20px;
  display: table-cell;
  text-align: right;
  width: 50%;
}


/*--------------------------------------------------------------
9a. Limited Edition Prints Detail Page
--------------------------------------------------------------*/
.limited-edition .single-post,
.print-page .single-post {
  background: url("/assets/images/landscape.jpg") no-repeat scroll 0 100%;
}

.print-page .single-post h1+h2,
.limited-edition .single-post h1+h2 {
  font-size: 80%;
  color: rgb(120,135,149);
  margin-bottom: 25px;
}

.print-page .single-post .post-image,
.limited-edition .single-post .post-image {
  /*box-shadow: 1px 1px 1px 25px rgba(139,69,19, 0.9);*/
  margin-top: 0px;
  margin-bottom: 30px;
  border: solid #fff 36px;
}

.print-page .single-post .mini-product .post-image,
.limited-edition .single-post .mini-product .post-image {
  border: none;
}

.print-page .single-post .carousel-indicators,
.limited-edition .single-post .carousel-indicators {
  padding:5px 0;
}

.print-page .single-post .carousel-indicators li,
.limited-edition .single-post .carousel-indicators li {
  background-color: #A4D165;
}
.limited-edition .single-post  .carousel-caption {
  bottom: 0;
  text-shadow: 0 0;
  color: #171717;
}

.print-page .carousel-control.left, .print-page .carousel-control.right,
.limited-edition .carousel-control.left, .limited-edition .carousel-control.right {
  background-image: none;
}



/* Cart */
.cart-container {
  margin-top: 79px;
}

/* Mini Product Image */
.mini-product .post-image {
  margin: 0;
}

.limited-edition-cost {
  margin-top: -10px;
  padding: 0 0 20px;
  text-align: center;
  font-size: 90%;
}

.limited-edition-cost strong {
  padding: 0 5px;
  font-size: 160%;
}
.limited-edition-cost div small {
  font-size: 60%;
}

.paypal .limited-edition-cost {
  margin-top: -20px;
  padding: 0 0 10px;
}



.cart {
  font-size: 80%;
}
.cart dt {
  background: #A4D165;
  display: block;
  padding: 10px 5px;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  border-bottom: 1px solid #93c054;
}
.cart dd {
  display: block;
  overflow: hidden;
  padding: 10px 5px;
  background: #fefefe;
  margin-top: 5px;
  border-bottom: 1px solid #dedede;
   transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

.cart dd:hover {
  background: #fff;
}

.limited-edition .single-post .purchase > a button,
.print-page .single-post .purchase > a button,
.limited-edition .single-post .purchase button,
.purchase > a[href$="#siteConnectPurchase"] {
  display: block;
}

.limited-edition .single-post .purchase > a button,
.print-page .single-post .purchase > a button,
.print-page .single-post .purchase  button,
.purchase > a[href$="#siteConnectPurchase"] button {
  width: 100%;
}


/* Tabs */
.tab-container {
  border: none;
  padding: 40px 20px;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  margin: 0 14px;
}

.tab-container .tab-pane {
  padding: 25px 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/*--------------------------------------------------------------
10. Contact
--------------------------------------------------------------*/

.contact {
  padding-top: 250px;
}

.contact .sub-section {
  margin-top: 90px;
  margin-bottom: 50px;
}

.contact-info {
  background-color: #f8f8f8;
  padding: 45px 45px 20px 45px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7em;
  margin-bottom: 25px;
}

.contact-form p {
  margin-bottom: 30px;
}

.contact-form label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-form .form-control {
  border-radius: 0;
  border-color: #848484;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-form input {
  height: 50px;
  margin-bottom: 40px;
}

.contact-form button {
  margin-top: 10px;
}

.contact-2 header {
  text-align: center;
  margin-bottom: 90px;
}

.contact-2 header p {
  margin-left: auto;
  margin-right: auto;
}

.contact-2 .col-centered {
  vertical-align: top;
}

.contact-2 .contact-form {
  margin-top: 90px;
}

.contact-2-info {
  background-color: #f8f8f8;
  text-align: center;
  padding: 30px;
  height: 175px;
  display: flex;
  display: -webkit-flex;
}

.contact-2-info .content {
  margin: auto auto;
}

.contact-2-info i {
  color: #cecece;
  font-size: 45px;
  margin-bottom: 10px;
}

.contact-2-info p {
  font-size: 16px;
}



/*--------------------------------------------------------------
11. Footer
--------------------------------------------------------------*/

footer {
  text-align: center;
  /*padding-top: 60px;*/
  padding-bottom: 30px;
  position: relative;
  z-index: 0;
}

footer a {
  color: #2b2b2b;
}

footer nav {
  margin-bottom: 45px;
}

footer nav a {
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
}

footer nav a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.copyright {
  color: #848484;
  font-size: 12px;
}


/*--------------------------------------------------------------
11a. Newsletter Subscription
--------------------------------------------------------------*/
.newsletter-container {
  padding: 15px 25px;
  background: rgb(164,209,101);
  border-radius: 0 0 5px 5px;
  text-align: center;
  margin-top: -1px;
}

.newsletter-container p {
  font-size: 150%;
  color: #fff;
}

.newsletter-container form {
  text-align: center;
}

.newsletter-container .form-control {
  height: 47px;
}

.newsletter-container .notice {
    font-size: 80%;
    color: #010101;
    padding: 15px;
    border: 1px solid green;
    border-radius: 5px;
    margin: 15px auto;
    width: 62%;
}
}

/* Adds Green Border to Content Pages */
.single-post {
  border-bottom: 10px solid #a4d165;
}

/* Hides the newsletter on the contact page */
.page-contact-1 .newsletter-container {
  display: none;
}

.hb-text-wrapper .hb-secondary-text {
  font-size:80%;
}

/*--------------------------------------------------------------
12. POPUP
--------------------------------------------------------------*/

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Hello Bar Overides */
iframe.HB-Alert{
  margin-bottom: 15px;
}


/* Scroll to top */
.scrollup {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    line-height: 60px;
    background-size: rgb(107,123,138);
    background: rgba(107,123,138,0.8);
    color: #fff;
}
.scrollup:hover {
  background-size: rgb(107,123,138);
  background: rgba(107,123,138,1);
  text-decoration: none;
  box-shadow: 0 0 15px rgba(100,100,100,0.2);
}  

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


/*--------------------------------------------------------------
13. Bootstrap Overised
--------------------------------------------------------------*/
.adventure-list-pagination {
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  }

.pager li > a, .pager li > span,
.pagination > li > a, .pagination > li > span {
  color: #fff;
  background-color: rgb(107,123,138);
  background: rgba(107,123,138,0.9);
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-size: rgb(107,123,138);
  background: rgba(107,123,138,1);
  border-color: rgb(107,123,138);
}


/*--------------------------------------------------------------
14. Media queries
--------------------------------------------------------------*/

@media only screen and (max-width: 1200px) {
  .intro-1 h1 {
    font-size: 40px;
  }

  .intro-1 p {
    margin-top: 0;
  }

  .page header p {
    width: 100%;
  }

  .about-3-intro {
    padding: 40px;
  }

  .about-3-intro p {
    font-size: 16px;
  }
  
}


@media only screen and (max-width: 992px) {

  .navbar-brand {
    font-size: 15px;
    padding: 15px 0 15px 15px;
  }

  .navbar .navbar-nav > li > a {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .intro-1 h1 {
    margin-bottom: 40px;
  }

  .intro-2 p {
    width: 100%;
  }

  #testimonials-carousel p {
    width: 100%;
  }

  #testimonials-carousel .carousel-indicators {
    top: 230px;
  }

  .about-2 h2 {
    text-align: center;
    margin-bottom: 50px;
  }

  .about-2 .skills,
  .about-2 .testimonials {
    text-align: center;
  }

  .about-3 img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .contact-1 .contact-info {
    margin-top: 50px;
  }

  .col-centered {
    width: 100%;
  }

  .contact-2 .col-md-3 {
    margin-bottom: 30px;
  }

  .single-portfolio .images img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  /* Limited Editions Prints */
  .print-page .single-post .post-image, .limited-edition .single-post .post-image {
    border: none;
  }

  .cart-container {
    margin: 0;
  }


}


@media only screen and (max-width: 767px) {
  body {
    background: #ff7e5f;
  }

  .navbar-brand {
    display: block;
    float: none;
    padding: 25px 15px;
    text-align: center;
    width: 100%;
}
  .navbar-brand, .navbar-nav {
    line-height: 30px;
  }

  .navbar-nav {
    margin-top: -45px;
  }

  .navbar-left {
    margin-left: 0;
  }

  .introduction {
    position: relative;
    margin-top: -20px;
  }

  #hamburger-icon {
    display: none;
  }

  nav {
    padding-top: 35px;
  }

  .navbar-nav {
    opacity: 1;
  }

  .navbar {
    margin-bottom: 0;
  }

  .navbar-collapse {
    text-align: center;
    margin-bottom: 20px;
  }

  ul.nav.navbar-nav.navbar-right {
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-toggle {
    margin-top: -36px;
  }

  .navbar-toggle .icon-bar {
    background-color: #fff;
  }

  .nav > li:first-child {
    margin-top: 15px;
  }

  .navbar .navbar-nav > li > a,
  .dropdown-menu > li > a {
    color: #fff;
    text-align: center;
  }

  .dropdown-menu > li > a {
    margin-left: -6px;
  }


  .fake .scroll-reveal {
    display: none;
  }

  .intro {
    padding-top: 150px;
  }

  .studio img {
    margin-bottom: 30px;
  }

  .team img {
    margin-left: auto;
    margin-right: auto;
  }

  #testimonials-carousel .carousel-indicators {
    top: 280px;
  }

  .single-post header img {
    margin-bottom: 0px;
  }

  .page {
  /* padding-top: 80px;*/
  padding-top: 0px;
  }

 .intro {
    padding-top: 60px;
  }

 .introduction {
    padding-top: 200px;
   }

  .feature-image-container {
    margin-top: -65px;
  }

  /* Limited Editions Prints */
  .tab-container .tab-pane {
    border-top: 1px solid #ddd
  }

  /* Sub Scribers Push Notification */
  .subscribers-chicklet.subscribers.subscribers-position-right {
    display: none!important;
  }

}


@media only screen and (max-width: 460px) {

  .logo {
    margin-top: -5px;
  }

  .navbar-nav {
    margin-bottom: 10px;
  }

  .intro-2 h1 {
    font-size: 40px;
  }

  .blog .post-content {
    padding: 30px;
  }

  footer nav a {
    padding-left: 7px;
    padding-right: 7px;
  }

  .feature-image-container {
    margin-top: -63px;
  }

}


@media only screen and (max-width: 415px) {
  #testimonials-carousel .carousel-indicators {
    top: 300px;
  }
  .navbar-fixed-top {
        position: relative;
        top: 100px;/* Auto position navbar top */
    }

    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
        max-height:inherit;/* Clear max-height */
    }

  .feature-image-container {
    margin-top: -40px;
  }

  .single-post .feature-image-container img {
    margin-top: 0px;
    margin-bottom: 20px;
  }


  .introduction {
    padding-top: 80px;
  }

  .carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
    min-height: auto;
  }

}
