.mobile-menu-toggle,
.mobile-menu-wrapper,
.mobile-menu-logo,
.mobile-menu-site-overlay {
  display: none;
}

.mobile-menu-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: white;
  text-align: center;  
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);  
  padding: 0 27px;
}

.menu-active .mobile-menu-wrapper {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);    
}

.mobile-menu-wrapper-inner {
  overflow: auto;
  width: 100%;
  background: white;
  text-align: left;
  margin-top: 54px;
  padding-left: 6px;
  border-top: 3px solid black;
  position: relative;
  z-index: 1;
}

.mobile-menu-logo {
  position: absolute;
  left: 50%;
  top: 11px;
  text-decoration: none;
  font-size: 24px;
  font-family: 'GlosaDisplayW01-Medium';
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  width: 200px;
} 

.mobile-menu-wrapper .mobile-menu-logo {
  transform: none;
  left: 11px;
}


.mobile-menu-toggle {
  position: absolute;
  left: 15px;
  top: 13px;
  width: 30px;
  height: 30px;
  z-index: 999;
}

.mobile-menu-list li a {
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  text-transform: uppercase;
}

.mobile-menu-list li {
  border-bottom: 1px solid #e6e6e6;
}

.mobile-menu-list .menu-item-has-children > a {
  position: relative;
}

.mobile-menu-list .menu-item-has-children a.is-active:before {
  content: "\f106";
}

.mobile-menu-list .menu-item-has-children > a:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f107";
  position: absolute;
  right: -17px;
  top: 4px;  
}

.mobile-menu-toggle span {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 20px;
  height: 2px;
  background-color: black;
  -webkit-transition: all .25s cubic-bezier(.4,0,.2,1);
  -moz-transition: all .25s cubic-bezier(.4,0,.2,1);
  transition: all .25s cubic-bezier(.4,0,.2,1);
}

.mobile-menu-toggle span:nth-child(2) {
    margin-top: 7px;
}

.mobile-menu-toggle span:nth-child(3) {
    margin-top: 14px;
}

.menu-active .mobile-menu-toggle span:nth-child(1),
.mobile-menu-toggle.closed span:nth-child(1) {
    -webkit-transform: translateY(4px) rotate(45deg);
    -ms-transform: translateY(4px) rotate(45deg);
    -o-transform: translateY(4px) rotate(45deg);
    transform: translateY(4px) rotate(45deg);
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.menu-active  .mobile-menu-toggle span:nth-child(2),
.mobile-menu-toggle.closed span:nth-child(2) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}

.menu-active .mobile-menu-toggle span:nth-child(3),
.mobile-menu-toggle.closed span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}


@media ( max-width: 767px ) {

  /*=====  BASE STYLES  ======*/
  .mobile-menu-site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
  }

  .menu-active .mobile-menu-site-overlay {
    opacity: 0.8;
    visibility: visible;
  }

  .nav-container.f-nav,
  .popup-box.subscribe-box {
    display: none;
  }
  
  .mobile-menu-toggle,
  .mobile-menu-wrapper,
  .mobile-menu-logo,
  .mobile-menu-site-overlay {
    display: block;
  }

  .outer-wrap ,
  .featured-edits-wrapper {
    width: 100%;
    padding: 20px 10px 10px 10px;
    word-wrap: break-word;
    border-bottom: 20px solid #eeeeee;
  }

  .wrap {
    width: 100%;
  }

  .mobile-menu-list .sub-menu {
    display: none;
    background: #f7f7f7;
    margin: 0 0 10px;
  }

  .mobile-menu-list .sub-menu li {
    border-bottom: 2px solid white;  
    padding-left: 10px;
  }

  .mobile-menu-wrapper .search-form {
    position: absolute;
    bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    width: 80%;
    font-size: 12px;
    z-index: 0;
  }

  .mobile-menu-wrapper .search-field {
    margin: 0;
    width: 100%;
  }

  .mobile-menu-wrapper .fa-search {
    position: absolute;
    position: absolute;
    right: 0;
    top: 0;
    background: white;
    padding: 13px 12px 11px;
  }

  .social-links-mobile > a {
    display: none!important;
  }

  .social-links-mobile > .sub-menu {
    display: block;
    background: white;
    margin-top: 20px;
    margin-left: -6px;
  }

  .social-links-mobile > .sub-menu li {
    display: inline-block!important;
  }




  .social-links-mobile > .sub-menu a span {
    display: none;
  }

  .social-links-mobile > .sub-menu a {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 13px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 5px;
    border: 1px solid black!important;
    border-radius: 60px;
    width: 25px;
    height: 25px;
    padding-top: 5px;
    padding-left: 2px;
    text-align: center;
    background: none;
    color: black;
  }

  .social-links-mobile > .sub-menu a:before {
    position: relative;
    left: -1px;
  }

  .social-facebook  a:before { content: "\f09a"; }
  .social-twitter   a:before { content: "\f099"; }
  .social-pinterest a:before { content: "\f0d2"; }
  .social-instagram a:before { content: "\f16d"; }
  .social-rss       a:before { content: "\f09e"; }

  #content {
    margin-top: 75px;
  }


  /*=====  HEADER  ======*/

  .header {
    position: fixed;
    top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 55px;
    background: white;
    z-index: 9999;
    /*box-shadow: 0 5px 10px 0 rgba(0,0,0,0.04), 0 -5px 3px -10px #ffffff;*/
    border-bottom: 1px solid #d5d2cf;
  }



  /*=====  POST LIST  ======*/

  body.home article.hentry:not(.format-gallery):first-of-type {
    margin-top: 0;
    padding-top: 0;
  }

  .type5 .category, .type6 .category {
    margin-bottom: 10px;
  }

  .type5 .hero-post {
    float: none;
    width: 100%;
    margin: 0 auto;
  }

  .hentry .type1.type5 .date {
  text-align: left;
}


  .hentry .type1.type5 header.article-header {
    width: 100%!important;
    text-align: left;    
  }

  .type1.type5 h1,
   .type1.type5 h1, .type1.type5 p, .type5 span.read-more   {
    text-align: left;    
  }

  .outer-wrap .meta {
    position: static;
  }

  .outer-wrap .side-share a,
  .outer-wrap .date span  {
    display: inline-block;
  }

  .outer-wrap .date {
    float: left;
  }

  .home .outer-wrap .date {
    width: 100%;
    text-align: center;
  }


  .side-share {
    float: right;
  }

  .home .side-share {
    display: none;
  }

  .meta {
    margin: 0!important;
  }

  .outer-wrap .meta {
    overflow: auto;
  }

  .hero-post img,
  .hentry header.article-header  {
    max-width: 100%!important;
  }


  /*=====  FEATURED EDITS WIDGET  ======*/
  .shop-wrap.home-cat-shop-wrap {
    display: block;
  }

  .home-video-wrap .left,
  .home-video-wrap .right  {
    display: block;
    width: 100%;
    padding: 0;
  }

  .home-video-wrap .right {
    margin-top: 30px;
  }

  .home-video-wrap .right li {
    float: none;
    width: 100%;
    min-height: 220px;
    margin: 15px auto;
    list-style: none;    
  }

  .home-video-wrap .left img {
    max-width: 100%;
  }

  .home-video-wrap a {
    display: block;
  }
  
  .home-video-wrap .right img {
    max-width: initial;
    width: 100%;
    height: auto;
    max-height: none;
  }

  .instagram-widget-wrapper, .featured-edits-wrapper {
    margin: 0 0 20px;
  }

  .featured-edits-widget {
    overflow: auto;
  }

  .featured-edits-wrapper .featured-shop-edit {
    float: none;
    width: 50%;
    height: 220px;
  }

  .featured-edits-wrapper .shop-wrap .featured-shop-edit img {
    position: absolute;
    height: auto;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .instagram-widget a 
   {
    width: 50%;
    float: none;
  }

  .life-widget .life-item {
    width: 50%!important;
  }


  /*=====  PAGES  ======*/
  body.single .type1only .hero-post, body.page-template-page-resources-php .type1only .hero-post, body.page .type1only .hero-post,
  .type1only .hero-post {
    height: auto;
  }

  body.page-template.page-template-page-resources .type1only .hero-post .hero-post-stretched, body.page-id-25011 .type1only .hero-post .hero-post-stretched {
    background-position: center;
    height: 230px;
  }

  body.single .type1only .hero-post, body.page-template-page-resources-php .type1only .hero-post, body.page .type1only .hero-post {
    margin-bottom: 30px;
  }

  body.page-template-page-about .type1only .wrap, body.page-template-default .type1only .wrap,
  .type1only .wrap {
    width: 100%;
  }


  .resource-highlight {
    max-width: none;
  }

  .resource-highlight-wrapper {
    width: 100%;
    height: 270px;    
  }

  .category .resource-highlight-wrapper {
    display: none;
  }

  .resource-highlight-header {
    width: 100%;
    height: 60px;
    line-height: 60px;

  }

  .resource-highlight-article {
    width: 100%;
  }


  .resource-highlight-article img {
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
  }

  .resource-highlight-article p {
    text-align: center;
  }

  div.error404-content {
    width: 100%;
    text-align: center;
    height: auto;
    position: static;
    margin-left: auto;
    margin-top: 0;
  }

  /*=====  SINGLE POST  ======*/
  .singletype .entry-content,
  .singletype .entry-content p,
  .single #container .subscribe-box form,
  .comments {
    width: 100%;
  }

  .single #container .subscribe-box {
    width: 90%;
  }

  .comments,
  #comments-title,
  .sidebar {
    margin: 0;
  }

  .comment {
    padding: 0.5em;
  }
  
  .you-may-also-like-inner {
    max-width: 100%;
  }

  .you-may-also-like {
    width: 50%;
    margin: 0 10px;
  }

  .single .meta.outer-wrap {
    display: table;
  }


  .single .outer-wrap.meta .alignleft,
  .single .outer-wrap.meta .alignright {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }

  .single .outer-wrap.meta .alignright {
    text-align: right;
  }

  .widget .textwidget img {
    max-width: 100%;
    height: auto;
    float: none;
    width: 100%;
  }

  /*=====  TYPOGRAPHY  ======*/
  body {
    font-size: 14px;
  }
  
  .outer-wrap .date span.number {
    font-size: 21px;
  }

  .outer-wrap .date span.month,
  .outer-wrap .date span.year {
    font-size: 14px;
  }

  .outer-wrap .date span.year {
    color: black;
  }

  .type1 h1 {
    font-size: 28px;
  }
  
  h5, .h5 {
    font-size: 0.846em;
    margin: 1em 0;
  }

  span.read-more {
    font-size: 10px;
    margin-top: 10px;
  }

  .type {
    margin: 0px auto 30px;
  }

  .excerpt-content br,
  .entry-content br {
    display: none;
  }

  body.page .article-header h1 {
    margin-top: 0;
  }

  body.page-template-page-resources-php .outer-wrap .meta, body.page .outer-wrap .meta {
    position: static;
    text-align: center;
  }


  .page-template-page-about .outer-wrap .meta {
    display: none!important;
  }
  
  .page-template-page-about #content {
    margin-top: 55px;
  }

  .page-template-default .side-share {
    float: none;
  }

  .single #container .subscribe-box input[type="email"],
  .subscribe-box input[type="submit"] {
    width: 100%;
  }

  .subscribe-box input[type="submit"] {
    margin-top: 10px;
    border-radius: 0!important;
  }

  .subscribe-box input[type="email"] {
    border-radius: 0!important;
  }


  .comments, #comments-title {
    margin-top: 30px;
  }


   /*=====  Parallax Page  ======*/
  .lpb-section {
    background-position: center center!important;
  }
  
  #seventh .story {
    width: 100%;
  }

  .lpb-details.third {
    width: 100%;
    overflow-y: auto;
    _overflow: auto;
    margin: 0 0 1em;
  }

  #fifth .story, #second .story {
    width: 100%;
  }

  #seventh {
    padding: 30px 15px 0 15px;
  }

  .lpb-details.second {
    margin-top: 20px;
    background: #f3f3f3;
    padding: 30px;
    letter-spacing: 0;    
  }

  .lpb-location {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }

  .lpb-details td {
    padding: 10px;
  }

  #seventh {
    height: auto;
  }

  div.lpb-cta {
    margin: 20px auto 15px;
  }

  .lpb-details.first {
    margin-top: 30px;
  }

  .page-template-page-lpb .footer {
    margin-top: 0;
  }

  .page-template-page-lpb #content {
    margin-top: 55px;
  }

  .shop-wrap,
  body.page-template-page-shop-php .edit-row,
  .featured-shop-edit {
    width: 100%;
  }

  body.page-template-page-shop-php .featured-shop-edit {
    height: auto;
    margin: 0;
  }

  .shop-wrap .featured-shop-edit img,
  #shop-items .item img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .shop-edit-nav {
    left: 0;
    position: fixed;
    width: 100%;
    padding: 10px;
    text-align: center;   
    background: rgba(255,255,255, 0.5);     
    display: none;
  }

  .shop-edit-nav li {
    display: inline-block;
  }

  #shop-items .item {
    width: 100%;
    height: auto;
  }

  .shop-wrap h2 {
    position: static;
    transform: none;
    text-align: center;
    font-size: 50px;
    margin-top: 80px;    
  }
 
  .footer {
    padding: 0 65px;
    margin-top: 30px;
  }

  span.read-more {
    font-size: 10px;
    text-align: center!important;    
  }

  .close-menu {
    display: block;
    position: absolute;
    right: 27px;
    left: auto;
    font-size: 21px;
    top: 16px;
  }

  .menu-item-38726 {
    border-top: 3px solid black;
    border-bottom: 3px solid black!important;
  }

  .social-links-mobile {
    border: none!important;
  }
  
  .social-links-mobile li {
    padding: 0;
  }

  /* No Flickity Styles */
  /* 1: */
  .instagram-widget.life-widget,
  .you-may-also-like-inner,
  .featured-edits-widget .right ul,
  .home-cat-shop-wrap,
  .home .instagram-widget-wrapper .instagram-widget
   {
    display: block;
    overflow: scroll;
    float: left;
    width: 100%;
    max-height: 480px;
    white-space: nowrap;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 7px;
    padding-left: 20px;
    overflow-x: scroll;
    overflow-y: hidden;    
  }

  .instagram-widget.life-widget .life-item,
  .you-may-also-like,
  .featured-edits-widget .right li,
  .home-cat-shop-wrap .featured-shop-edit,
  .home .instagram-widget-wrapper .instagram-widget a {
    float: none;
    display: inline-block;
  }

  .featured-edits-widget .right li {
    margin:  0 15px 0 0;
    vertical-align: top;

  }

  .home-video-wrap .right span {
    max-width: 100%;
    width: 100%;
    display: block;
    white-space: initial;    
    font-size: 12px;
  }
  .home-video-wrap .right li:nth-child(even) {
    margin-right: 15px;
  }

  .featured-edits-widget .right ul {
    padding-left: 0;
  }

  .entry-content iframe {
    max-width: 100%;
  }

  .outer-wrap .side-share a i {
    position: relative;
    top: 0.1em;
    left: 0.05em;    
  }

  .email-option span:before {
    margin-left: -4px;
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    position: relative;
    top: -6px;
    left: 0px;    
  }

  .single #container .subscribe-box input[type="email"] {
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    background-clip: padding-box;
    -webkit-appearance: none;
  }

  .home-video-wrap .left {
    display: none;  
  }

  .edit-row + .edit-row + .edit-row .featured-shop-edit + .featured-shop-edit + .featured-shop-edit span {
    display: none;
  }

  .page-template-page-subscribe .side-share {
    display: none;
  }

  .page-template-page-subscribe #content {
    padding: 0 20px;
  }


}

@media ( min-width: 768px )  {


  .subscribe-teaser {
    display: none;
  }

  .page-template-page-subscribe .entry-content {
    padding-top: 15%;
    padding-bottom: 215px;
  }

  

}


.subscribe-box--alt {
  text-align: center;
}

.email-option span:before {
  margin-left: -4px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  position: relative;
  top: -6px;
  left: 0px;    
}



.subscribe-teaser {
  background: black;
  padding: 30px 15px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}

.subscribe-teaser a {
  color: white;
  display: inline-block;
  padding-bottom: 0px;
  border-bottom: 1px solid white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.subscribe-teaser a span {
  padding: 0 0 0 10px;
}

.gdpr-wrapper {
    background: #000!important;
}

.gdpr.gdpr-privacy-bar .gdpr-wrapper {
    padding: 0px 20px!important;
}

.gdpr.gdpr-privacy-bar .gdpr-preferences:before,
.gdpr.gdpr-privacy-bar .gdpr-agreement:before {
display: none!important;
}

.gdpr.gdpr-privacy-bar .gdpr-agreement,
.gdpr.gdpr-privacy-bar .gdpr-agreement:hover{
    background: #0000;
    border: 0;
    text-shadow: none;
    text-decoration: underline;
}

body .gdpr * {
    font-family: 'GlosaDisplayW01-Medium'!important;
}

.gdpr.gdpr-privacy-bar .gdpr-agreement {
    padding: 12px 36px 12px 6px;
	
}

button.gdpr-preferences {
    display: none!important;
}

body .cn-button.bootstrap,
body a#cn-accept-cookie:hover{
    background: #fff;
    color: #000;
    border-radius: 0;
    text-shadow: 0 0;
    box-shadow: 0 0;
    font-family: 'ProximaNovaA-Regular';
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 0;
    padding-bottom: 0px;
}

#cn-refuse-cookie {
background: none;
    color: #8c8b8b;
    text-decoration: underline;
    padding: 0;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 10px;	
	
}

#cn-notice-text a {color: white;}

body.page-template-page-subscribe .form-wrap {
    width: 50%;
    margin: 0px auto;
}

body.page-template-page-subscribe .subscribe-box input[type="submit"] {
    margin-top: 10px;
    width: 100%;

}

popup-box.subscribe-box input[type="email"] {
    max-width: 150px;
    min-width: 15px;
}

/* CATEGORY */


body.archive .type,
body.search .type {
    width: 100%;
        margin: 0!important;
}

body.archive .hero-post img,
body.search .hero-post img {
    max-width: 100%!important;
}

body.archive .date,
body.search .date {

    margin-top: 10px!important;
    float: none!important;
}

body.archive .type1 h1,
body.search .type1 h1  {
   
    font-size: 25px!important;
    margin-top: 0;
}

body.archive span.read-more,
body.search span.read-more {
    display: none;
}

body.archive .hentry header.article-header,
body.search .hentry header.article-header {
      width: auto!important;
margin-top: 20px!important;
}

body.archive .hentry:first-of-type,
body.search .hentry:first-of-type {
     margin-top: 20px!important;
}


body.archive .hero-post,
body.search .hero-post {
  position: relative;
      font-size: 0;
}

.single #container .subscribe-box input[type="email"] {
    width: 240px;
    min-width: auto;
}

popup-box.subscribe-box input[type="email"] {
    min-width: auto;
}

/*.overlay-post {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #8f171e9c;
}

.hero-post:hover .overlay-post {
  opacity: 1;
}*/

/*body.logged-in .nav li a:hover {
    border-bottom: 4px solid black;
    padding: 0 0px 13px 0px;
    margin: 0 17px; 

}

body.logged-in .nav li.current-menu-item a{
  border-bottom: 4px solid black;
}

body.logged-in .nav li.menu-item-24113 a:hover,
body.logged-in .nav li.menu-item-40906 a:hover,
body.logged-in .nav li.menu-item-24119 a:hover,
body.logged-in .nav li.menu-item-3737 a:hover {
  border-bottom: 0;
  padding: 0 17px; 
   margin: 0px; 

}

body.logged-in .nav li.menu-item-3737 a:hover {
  padding: 0; 
}

body.logged-in .nav li.current-menu-item a{
  border-bottom: 4px solid black;
      padding: 0 0px 13px 0px;
    margin: 0 17px; 
}

body.logged-in .nav li.menu-item-24113.current-menu-item a,
body.logged-in .nav li.menu-item-40906.current-menu-item a,
body.logged-in .nav li.menu-item-24119.current-menu-item a,
body.logged-in .nav li.menu-item-3737.current-menu-item a {
border-bottom: 0;
}*/

.resource-highlight-wrapper {
    display: block;
    width: 100%;
    height: 30px;
    background: black;
    margin-top: 55px;
    position: fixed;
    z-index: 9997;
}

.resource-highlight {
    max-width: 870px;
    margin: 0px auto;
    color: white;
}

.resource-highlight-header {
    width: auto;
    height: auto;
    text-transform: uppercase;
    font-weight: normal;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    line-height: 33.5px;
    color: white;
    font-size: 11px;
    font-family: 'ProximaNovaA-Regular';
    letter-spacing: 3px;
    margin-right: 15px;
}

.resource-highlight a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 5px;
    margin-top: 13px;
    display: inline-block;
}

.resource-highlight a:hover {
    color: white!important;
}

body.tag .resource-highlight li:not(.current-menu-item) a{
  color: #a19e9e;
}


.resource-highlight a.first {
      padding-left: 15px;
}

.resource-highlight span {
    padding: 15px;
}



body.archive .nav li:not(.current-menu-item) a,
body.search .nav li:not(.current-menu-item) a,
body.page-template-page-shop-edit .nav li:not(.current-menu-item) a,
body.page-template-page-about .nav li:not(.current-menu-item) a,
body.page-template-default .nav li:not(.current-menu-item) a {
  color: #8c8c8c;
}

body.page-template-page-shop-edit .nav li.current_page_parent a{
  
}

body.search .nav li a,
body.tag .nav li a,
body.page-template-page-shop-edit .nav li.current_page_parent > a,
.nav li a:hover{
  color: #333!important;
}


.nav li.home-link a {
    color: black!important;
}

nav li ul.sub-menu li a:hover, .nav li ul.children li a:hover {
    background: none!important;
    color: #333!important;
}

nav li.menu-item-40906 ul.sub-menu,
nav li.menu-item-40916 ul.sub-menu{
    width: 150px;
    margin-left: -40px;
    z-index: 9999;
}

nav li.menu-item-24113 ul.sub-menu,
nav li.menu-item-39688 ul.sub-menu{
    width: 150px;
    margin-left: -30px;
}

body.archive .outer-wrap,
body.search .outer-wrap {
    margin-top: 100px;
}

.menu-point-of-view-container {
  display: inline-block;
} 

#menu-point-of-view{
      margin: 0;
}

.menu-point-of-view-container li {
    display: inline-block;
}

ul#menu-point-of-view span:last-of-type {
    display: none;
}

/* SUBSCRIBE */


body.page-template-page-subscribe #content{
    background-repeat: no-repeat;
    background-size: cover;
        background-position-y: bottom;

    height: 100vh;

}

body.page-template-page-subscribe .entry-content {
width: 530px;
    padding-top: 180px;
    color: white;
}

body.page-template-page-subscribe .email-option span {
    background-color: white;
}


body.page-template-page-subscribe .email-option span:before {

    top: -5px;
    color: black;


}

body.page-template-page-subscribe .footer {
  display: none;
}

@media (max-width: 767px) {
  body.page-template-page-subscribe   #content {
         margin-top: 55px;
    }

  body.page-template-page-subscribe  .entry-content {
       width: auto; 
  }
  body.page-template-page-subscribe .outer-wrap {
    border-bottom: none;
  }
}


/*START HERE*/


body.page-template-start #content {

    font-size: 0;
}
body.page-template-start #content a {
    display: inline-block;
    width: 25%;
    height: 180px;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: top;
    position: relative;
}

body.page-template-start .start-here div.start-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 101%;
    opacity: 0;
    transition: .5s ease;
    background-color: #0000009c;
    color: white;
    text-align: center;
    vertical-align: top;
    font-family: 'GlosaDisplayW01-Medium';
    font-size: 20px;
    display: table;

} 

body.page-template-start .start-here div.start-overlay:hover {
  opacity: 1;
}

body.page-template-start .start-here div.start-overlay span{
    width: 230px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

body.page-template-start  #content a {
     border-bottom: none; 
}

body.page-template-start .footer{
    display: none;
}

@media (max-width: 767px) {

body.page-template-start  #content {
      margin-top: 55px;
}
body.page-template-start   #content a {
      display: block;
      width: 100%;

  }
}



/*FEATURED PRODUCT STRIP*/

.shop-product-wrap li {
    display: inline-block;
    width: 19%;
    text-align: center;
    transition: .5s ease;
}

.shop-product-wrap li a {
    display: block;
    margin: 0 15%;
}

.shop-product-wrap li:hover {
    opacity: 0.8;
}

.shop-product-wrap li img {
    width: 100%;
}

.shop-product-wrap span{
  display: block
}


.shop-product-wrap .desc1 {
    font-size: 16px;
    line-height: 26px;
    font-family: 'GlosaDisplayW01-Medium';
}

.shop-product-wrap .desc2 {
    font-size: 13px;
}
@media (max-width: 767px) {
  .shop-product-wrap li {
      width: 100%;
  }

  .shop-product-wrap li img {
      width: auto;
      max-height: 240px;
  }

}

/* SHOPPING WIDGET BLOG POST */

body.single #content .shop-product-wrap{
      margin-top: 50px;
}

body.single #content .shop-product-wrap li a {
    border: 0;
}

body.single #content .shop-product-wrap li {
    display: inline-block;
    width: 19%;
    text-align: center;
    transition: .5s ease;
    margin-bottom: 50px;

}

body.single #content .shop-product-wrap .desc2 {
      font-family: 'Glosa Display W01 Roman';
}


/*SIDE BY SIDE*/


.side-by-side-wrapper{
    margin: 30px auto 90px;
    width: 990px;

}

.side-by-side-wrapper a {
  text-decoration: none;
}

.side-by-side-wrapper div {
    width: 45%;
    margin: 0 5%;
    text-align: center;
    display: inline-block;
}

.side-by-side-wrapper div.left {
  margin-left: 0;
}

.side-by-side-wrapper div.right {
  margin-right: 0;
  float: right;
}

.side-by-side-wrapper img {
  width: 100%;
}

.side-by-side-wrapper span:not(.read-more){
  display: block;
  font-family: 'GlosaDisplayW01-Medium';
}

.predesc {
  margin-bottom: 10px;
    font-family: 'GlosaDisplayW01-Medium';
    text-align: center;
    font-style: italic;
    font-size: 10px;
    color: #696969;
    margin-top: 30px;
    letter-spacing: 0.05em;
}

.side-by-side-wrapper .desc1 {
    font-size: 38px;
    line-height: 32px;
    
}

.side-by-side-wrapper .desc2 {
    font-size: 0.846em;
    line-height: 2.09em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.side-by-side-wrapper .read-more {
  border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: initial;
}


@media (max-width: 767px) {

.side-by-side-wrapper {
      margin: 30px auto 90px;
     width: auto
}

    .side-by-side-wrapper div {
      width: 100%;
     
      display: block;
  }
}

body.page-id-25571 .entry-content {
      margin-top: 60px;
}


/* ABOUT PAGE*/

body.page-template-page-aboutnew .banner {   
    width: 100%;
    height: 100vh;
    background-size: contain;
}



body.page-template-page-aboutnew .outer-wrap {
    position: absolute;
    width: 800px;
    background: white;
    top: 300px;
    height: 415px;
    left: 50%;
    margin-left: -220px;
    padding: 20px 40px 20px;
    font-size: 13px;
}


body.page-template-page-aboutnew .footer {
  display: none;
}

@media (max-width: 767px) {
body.page-template-page-aboutnew .outer-wrap {
      width: auto;
      margin: 10px;
      position: absolute;
      top: 110px;
      left: initial;
      height: auto;
      border: 0;  
  }
}



