html,
body,
*{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
    background-size:cover;
    background-position:50% 50%;
    font-family:"Cormorant";
    color:black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
    background-color: white;
}
a{
    text-decoration:none;
    font-family:inherit;
    font-size:inherit;
    color:inherit;
}
p > a {
    color: #87765f;
    background: white;
    text-decoration: underline;
    cursor: pointer;
    line-height: inherit;
}
.indent-body.stories ol li a {
    color: #737373;
    text-decoration: underline;
    cursor: pointer;
    line-height: inherit;
}
figure {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: none;
    height: auto;
}
.relative{
    position: relative;
}
.alt{
    display:block;
    text-indent: -999999px;
    width: 1px;
    height:1px;
    overflow: hidden;
}
.bg-img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
    color: inherit;
    margin: 0;
    width: auto;
    line-height: 1.0;
}
.demo-icon {
    color: inherit;
}
h5 [class^="icon-"]:before,
h5 [class*=" icon-"]:before,
.h5 [class^="icon-"]:before,
.h5 [class*=" icon-"]:before {
    margin:0 2px 0 0;
}


/*-- border around viewport --*/
#lr-borders::before, #lr-borders::after {
    content: "";
    display: block;
    width: 8px;
    top: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    background: #e5e5e5;
    z-index:5;
}

#lr-borders::after {
    left: initial;
    right: 0;
}

#tb-borders::before, #tb-borders::after {
    content: "";
    display: block;
    height: 8px;
    background: #e5e5e5;
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    z-index:5;
}

#tb-borders::after {
    top: initial;
    bottom: 0;
}
/*-- scroll indicator --*/
#indicator{
    width: 54px;
    position: fixed;
    left: 0;
    bottom: 18px;
    z-index: 6;
    text-align: center;
}
#indicator svg{
    display:block;
    animation: fade 5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Lato";
    font-weight: 300;
    font-size: 10px;
    margin:0 auto 0;
 	width: 20px;
 	height: 20px;
 	position:absolute;
 	top:25px;
 	left:0;
 	right:0;
 	
 	top: initial;
 	bottom:-4px;
}
#indicator span{
    display:block;
    width:1px;
    height: 80px;
    background: black;
    transform-origin:bottom;
    margin: 0 auto;
    animation: indicate 5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s infinite;
}


@keyframes indicate{
    0% {
       	opacity:1;
        transform: scaleY(1);
    }
   	60%{
   		opacity:0;
   	}
    70% {
        transform: scaleY(0);
    }
    90% {
     	opacity:0;
        transform: scaleY(1);
    }
    100% {
     	opacity:1;
        transform: scaleY(1);
    }
}
@keyframes fade{
    0%{
         opacity:1;
         transform: translateY(0);
    }
    60%{
   		opacity:0;
   	}
    70%{
         opacity:0;
         transform: translateY(0px);
    }
    90% {
     	opacity:0;
        transform: translateY(0px);
    }
    100% {
     	opacity:1;
        transform: translateY(0px);
    }
}

/*-- header --*/
header{
	-js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:row;
    padding: 28px 35px 20px;
    -ms-flex-align:  center;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    
    justify-content: -webkit-space-between;
    justify-content: -moz-space-between;
     -ms-flex-pack: space-between;
    justify-content: -ms-space-between;
    justify-content: space-between;

    -ms-flex-pack: justify;
}


.detail-nav {
    position: absolute;
    left: 95px;
    right: 25px;
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction:row;
    transition: transform 0.35s;
}
.detail-share{
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.logo-wrap,
.search-wrap{
    transition: transform 0.35s;
}
header{
    /*position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
    position: sticky;*/
    position: fixed;
    left:0;
    right:0;
    top:0;
    transition: transform 0.35s;
    background: white;
    z-index:4;
    overflow: hidden;
}
header.hide{
/*    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); */
}
header[data-subnav].hide,
header[data-subnav].hide .detail-nav{
  -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
header[data-subnav].hide .logo-wrap,
header[data-subnav].hide .search-wrap{
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}
header[data-subnav] .detail-nav{
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
}
.no-backgroundcliptext header[data-subnav] .detail-nav,
.no-backgroundcliptext header[data-subnav] progress{
	display: none;
}
.no-backgroundcliptext header[data-subnav]{
	border-bottom: 1px solid #e5e5e5;
}
header[data-subnav]{
	border: none;
}
header[data-subnav] progress{
	    background: #e5e5e5;
}
.at-icon {
    fill: #8e8e8e !important;
}
.at-icon-wrapper {
    background-color: transparent !important;
}
header[data-subnav] .addthis_inline_share_toolbox,
header[data-subnav] .sharethis-inline-share-buttons{
    margin: 0 0 0 9px;
}
.st-share-btn {
    margin: 0 10px 0 0px !important;
    padding: 0 !important;
}
header[data-subnav] .at-share-btn {
    margin: 0 0 0 10px !important;
}
header[data-subnav] .detail-share h4,
header[data-subnav] .h4{
    font-weight: 400;
    color: #4c4c4c;
    font-size: 12px;
    line-height: 1.0;
}
header[data-subnav] .detail-share {
    width: 280px;
}
header[data-subnav] .h4 {
    width: 120px;
}
header[data-subnav] h2 {
    font-size: 26px;
    line-height: 1.15;
   /* width: calc(100% - 300px); */
    text-align: center;
    padding: 0 20px;
    width: calc(100% - 400px);
}
@media only screen and (max-width: 1024px){
    header[data-subnav] .h4{
        display: none;
    }
    header[data-subnav] h2 {
        padding: 0 30px 0 0;
        text-align: left;
        width: calc(100% - 280px);
    }
}
@media only screen and (max-width: 850px){
    header[data-subnav] h2 {
        font-size: 22px;
        line-height: 1.15;
    }
    header[data-subnav] .detail-share h4 {
        font-size: 10px;
    }

    header[data-subnav] .addthis_inline_share_toolbox,
    header[data-subnav] .sharethis-inline-share-buttons {
        margin: 0;
    }
    header[data-subnav] .st-icon{
         width: 24px !important;
        height: 24px !important;
    }
    header[data-subnav] a .st-icon-wrapper {
        width: 24px !important;
        height: 24px !important;
    }
}
@media only screen and (max-width: 700px){
    header[data-subnav].hide{
        /*transform: translateY(-100%);*/
    }
    header[data-subnav].hide .detail-nav,
    header[data-subnav] .detail-nav{
        display: none;
    }
    header[data-subnav].hide .logo-wrap{
        transform: translateY(0px);
    }
    header[data-subnav].hide .search-wrap{
        transform: translateY(0%);
    }
    header[data-subnav]{
    	border-bottom: 1px solid #e5e5e5;
    }
}

#menu-trigger {
    border: none;
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 28px;
    background: transparent;
    outline: none;
    cursor: pointer;
}
#search {
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 0;
    cursor: pointer;
    outline: none;
}
#logo {
    margin: 5px auto 0;
    display: block;
    width: 250px;
}
#logo img {
    display: block;
    margin: 0 auto;
}
.logo-wrap{
    flex-grow: 1;
    text-align: center;
    -ms-flex-positive: 1;
  -webkit-flex-grow:1;
}
main {
    position: relative;
    width: 100%;
}

#menu{
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 9;
    background-color: white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0);
    transform: translateX(-100%);
    transition: 0.3s ease;
    max-width: 422px;
    width: 100%;
    padding: 90px 85px 20px;
    overflow-y: scroll;
    height: 100vh;
}
.nav-active #menu{
    transform:translateX(0%);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}
#exit {
    position: absolute;
    top: 30px;
    left: 35px;
    font-size: 30px;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    outline: none;
}
#menu nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu nav ul::first-of-type {
    margin: 0 0 40px;
    padding: 0 0 15px;
    position: relative;
}
#menu nav ul:first-of-type::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    position: absolute;
    bottom:0;
    background: #d4d4d4;


}
#menu nav ul a {
    display: block;
    margin: 0 0 12px;
    font-family: "Lato";
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 1.0;
    text-transform: uppercase;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
#menu nav ul a:hover,
#menu nav ul .selected a{
	opacity: 0.60;
}
#menu nav ul:first-of-type a {
    text-transform:uppercase;
    font-size: 42px;
    line-height: 1.0;
    letter-spacing:3px;
    margin: 0 0 20px;
    font-family: "Cormorant";
    font-weight: 500;
}
#menu nav .brands-wrap{
    margin:50px 0 0;
}
#menu nav .brands-wrap h5{
    font-weight: 600;
    letter-spacing: 3px;
    margin:0 0 15px;
    color: #000000;
}
#menu nav .brands, 
.social,
footer .brands {
    margin: 0;
    padding: 0;
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    list-style: none;
    -ms-flex-align:  center;
    align-items: center;
}

#menu nav .brands li a{
    -webkit-transition: opacity 0.35s ease;
    -moz-transition: opacity 0.35s ease;
    -ms-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
    display: block;
    margin: 0 20px 0 0px;
}

#menu nav .brands a img,
footer .brands a img{
    display: block;
    margin: 0 auto;
    width: 48px;
}

#menu nav .brands a img[alt="Blackberry Farm"],
footer .brands a img[alt="Blackberry Farm"] {
    width: 36px;
}

#menu nav .brands a img[alt="Blackberry Mountain"],
footer .brands a img[alt="Blackberry Mountain"] {
    width: 50px;
}
#menu nav .brands a:hover,
footer .brands a:hover {
    opacity: 0.7;
}

#menu nav ul,
#menu nav .brands-wrap h5 {
    opacity: 0;
    transition: opacity 0.25s 0s linear;
}

.nav-active #menu nav ul,
.nav-active #menu nav .brands-wrap h5 {
    opacity: 1;
    transition: opacity 0.65s 0.35s linear;
}





/*-- footer --*/
footer {
    padding: 5vw;
    background: #2b2b2b;
    color: white;
    background: black;
}
footer ul{
    list-style:none;
    margin:0;
    padding:0;
}
footer ul a{
    display:block;
    color: white;
}
footer .links a{
    font-family: "Lato";
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    margin:0 0 15px;
    -webkit-transition:0.35s ease;
    -moz-transition:0.35s ease;
    -ms-transition:0.35s ease;
    transition:0.35s ease;
}
footer .links a:hover {
    opacity: 0.75;
}
footer .flex-wrap > div{
    padding: 40px 50px;
    align-self: stretch;
}
footer .links,
footer .logos{
    border-left: 1px solid #424242;

}
footer .newsletter,
footer .links{
    width: calc(50% - 155.5px);
}
footer .newsletter{
    text-align: right;
}
footer .logos{
    width: 311px;
    text-align: center;
}
footer .brands{
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align:  center;
    align-items: center;
}
footer .brands li{
    text-align: center;
}
footer .brands a {
    margin: 0 15px;
    font-size: 24px;
    color: #bdbdbd;
    -webkit-transition: opacity 0.35s ease;
    -moz-transition: opacity 0.35s ease;
    -ms-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
    display: block;
}
footer h4 {
    font-size: 12px;
    margin: 0 0 20px;
    letter-spacing: 2px;
    color: #929292;
}

footer form{
    min-width: 230px;
    max-width: 350px;
    width: 100%;
    margin: 0 0 0 auto;
    position: relative;
}
footer input {
    background: transparent;
    border: 1px solid #929292;
    padding: 11px 20px;
    width: 100%;
    color: white;
    font-style: italic;
    outline:none;
}

footer input[type="submit"] {
    color: white;
    position: absolute;
    z-index: 1;
    width: auto;
    right: 0;
    top: 2px;
    border: none;
    border-left: 1px solid #929292;
    font-style: normal;
}
footer input:-webkit-autofill,
footer input:-webkit-autofill:hover, 
footer input:-webkit-autofill:focus{
    background: black;
    -webkit-transition-delay: 9999s;
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}
footer .bottom{
    text-align: center;
    padding: 40px 20px 0px;
}
footer .location{
    font-weight: 800;
    font-size: 24px;
    line-height: 1.25;
    color: white;
    font-family: "Cormorant";
}
footer .disclaimer{
    font-size: 11px;
    line-height: 1.75;
    color: #929292;
}
footer a.underline {
    color: #b5b5b5;
    font-style: italic;
    display: inline-block;
    margin: 14px 0 0 0;
}

footer a.underline::after {
    border-color: #353535;
}

/*-- breadcrumb --*/
nav.breadcrumb {
	-js-display: flex;
   display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -ms-flex-align:  center;
    align-items: center;
    padding: 10px 35px;
}

.breadcrumb ol {
	-js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -ms-flex-align:  center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    margin: 0 10px 0px 0;
    width: calc(33.333% - 15px);
}
.breadcrumb h5 {
    margin: 0;
    width: 33.333%;
    text-align: center;
}

.breadcrumb ol li a {
    font-family: "Lato";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 600;
    color: #757575;
}

.breadcrumb ol li:not(:last-child) a::after {
    display: inline-block;
    padding: 0 10px;
    font-weight: 400;
    color: #b9b9b9;
    content: "/";
    font-size: 11px;
    line-height: 100%;
}


/*-- type styles --*/
p{
    font-family:"Open Sans";
    font-family:"Muli";
    font-weight:400;
    font-size:16px;
    line-height:1.65;
}
h1, .h1{
    font-size:80px;
    font-size: calc(50px + (70 - 50) * ((100vw - 480px) / (1600 - 480)));

    line-height: 1.04;
    font-weight:400;
    color:inherit;
    margin:0;
}
h2, .h2{
    font-size:68px;
    font-size: calc(38px + (68 - 38) * ((100vw - 480px) / (1600 - 480)));

    line-height: 1.02;
    font-weight:400;
    color:inherit;
    margin:0;
}
h3, .h3{
    font-weight:800;
    font-size: 26px;
    font-size: calc(22px + (26 - 22) * ((100vw - 480px) / (1600 - 480)));
    line-height: 1.35;
    color:inherit;
    margin:0;
}
h4, .h4{
    font-family: "Lato";
    font-size: 14px;
    font-size: calc(12px + (14 - 12) * ((100vw - 480px) / (1600 - 480)));
    font-weight: 600;
    text-transform: uppercase;
    color: #87765f;
    color:#84745e;
    letter-spacing: 1.5px;
    line-height:1.65;
    margin:0;
}
h5, .h5{
    font-family:"Lato";
    font-size:12px;
    font-size: calc(11px + (12 - 10) * ((100vw - 480px) / (1600 - 480)));
    text-transform:uppercase;
    font-weight:900;
    letter-spacing: 1.5px;
    color: #5a5a5a;
    margin:0 0 8px;
}
h5 span.date {
    color: inherit;
    font-family: "Lato";
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 13px;
}
h5 span.date::before {
    content: "/";
    font-size: 30px;
    line-height: 1;
    font-weight: 100;
    color: #bbbbbb;
    margin: 0 10px;
    top: 4px;
    position: relative;
}
h5 span.date.no-author::before{
	display:none;
}
h5 span.date.no-author{
	display:block;
	margin: 30px auto 0;
}
.article-intro h5 em,
h5.details em {
    text-transform: lowercase;
    margin: 0 6px 0 0;
}

h5.details {
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 14px;
    color: black;
}
h6, .h6{
    font-family:"Lato";
    font-size:13px;
    font-weight:400;
    letter-spacing: 0.5px;
    color: #5a5a5a;
    margin:0 0 8px;
}
h2 + h6 {
    margin-top: 15px;
}
h3 + h6 {
    margin-top: 5px;
}
blockquote{
    font-weight:800;
    font-style:italic;
    font-size:35px;
}
figure + .text{
    padding:10px;
    margin:5px 0 0;
}
.landscape-blocks .text {
    padding: 0 0 0 20px;
    margin: 15px 0 0;
}
.landscape-blocks .text p {
    margin: 5px 0 0;
}
.landscape-blocks figure,
.section-latest figure {
    position: relative;
}
.section-latest figure{
    max-height: 680px;
    overflow: hidden;
}
.landscape-blocks figure::before,
.section-latest figure::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.landscape-blocks a:hover figure::before,
.section-latest a:hover figure::before {
    background: rgba(0, 0, 0, 0.15);
}
p.intro,
p.larger,
p>b{
    font-size:26px;
}
.btn{
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
    padding: 14px 28px;
    text-align: center;
    border: 1px solid black;
    background: transparent;
    font-family: "Lato";
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 14px;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.btn:hover {
    color: white;
    background-color: black;
}
.play-btn{
    color:white;
    font-size:80px;
}
.btn.white,
.slideshow .btn,
.btn.black{
    color:white;
}
.btn.black{
    background-color: black;
}
.slideshow h2 {
    max-width: 980px;
}

/*-- grid --*/
.pad{
    padding:50px;
}
.pad-more{
    padding:100px;
}
.pad-most{
    padding:150px;
}
.mb-s {
    margin-bottom: 30px;
}

.mb-m {
    margin-bottom: 50px;
}

.mb-l {
    margin-bottom: 90px;
}
h4 + .flex-wrap{
    padding-top:40px;
}

.flex-wrap{
	-js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:row;
    flex-wrap: -webkit-wrap;
    flex-wrap: -moz-wrap;
    flex-wrap: -ms-wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width:100%;
}
.flex-wrap.reverse,
.flex.reverse{
    flex-direction:-webkit-row-reverse;
    flex-direction:-moz-row-reverse;
     -ms-flex-direction: row-reverse;
    flex-direction:-ms-row-reverse;
    flex-direction:row-reverse;
}
.flex-wrap.gutter {
   /* margin: 0 -24px; */
}
.flex-wrap .flex-wrap.gutter {
    margin: 0 -24px;
}
.flex-wrap.gutter.pad{
    padding: 50px 26px;
}
.flex-col,
.flex-wrap a.flex-col{
	-js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:-webkit-column;
    flex-direction:-moz-column;
    flex-direction:-ms-column;
    -ms-flex-direction: column;
    flex-direction:column;
    justify-content:-webkit-center;
    justify-content:-moz-center;
     -ms-flex-pack: center;
    justify-content:-ms-center;
    justify-content:center;
}
.flex-col.align-bottom,
.flex-wrap a.flex-col.align-bottom,
.flex-wrap.align-right{
    justify-content:-webkit-flex-end;
    justify-content:-moz-flex-end;
    justify-content:-ms-flex-end;
    -ms-flex-pack: end;
    justify-content:flex-end;
}

.half,
.halfs > *{
    width:50%;
}
.gutter > .half,
.gutter.halfs > * {
    width: calc(50% - 48px);
    margin: 0 24px 48px;
}
.third,
.thirds > *,
.one-third{
    width:33.333%;
}
.gutter > .third,
.gutter > .one-third,
.gutter.thirds > * {
    width: calc(33.333% - 48px);
    margin: 0 24px 48px;
}
.two-thirds{
    width:66.666%;
}
.gutter > .two-thirds{
    width: calc(66.666% - 48px);
    margin: 0 24px 48px;
}
.fourth,
.fourths > *{
    width:25%;
}
.gutter > .fourth,
.fourths.gutter > * { 
    width: calc(25% - 48px);
    margin: 0 24px 48px;
}

.sixth,
.sixths > *{
    width:16.666%;
}
.gutter > .sixth,
.sixths.gutter > * { 
    width: calc(16.666% - 24px);
    margin: 0 12px 60px;
}

.flex-wrap a {
    overflow:hidden;
    position:relative;
}
.flex-wrap a .pad {
    z-index: 1;
    position: relative;
    color: white;
}
.flex-wrap a .pad h1,
.flex-wrap a .pad p,
.flex-wrap a .pad h2,
.flex-wrap a .pad h5,
.flex-wrap a .pad .h5{
    color:white;
}
.indent-body{
    max-width:850px;
    margin:0 auto;
}
.indent-body.stories figcaption {
    margin: 20px 0 0 0;
    position: absolute;
    z-index: 2;
    bottom: -20px;
    left: 50px;
    font-size: 36px;
    background: white;
    padding: 15px 40px;
    font-weight: 800;
    border-bottom: 1px solid black;
    max-width: calc(100% - 100px);
}

.indent-body.stories figure {
    position: relative;
    margin: 0 0 60px;
}
.indent-body.stories p + figure {
    margin: 70px 0 60px;
}
.callout h2,
.callout h4{
    margin:0;
}
.callout .pad{
   /* margin:100px 25px;
    padding:50px 100px; */
}
.callout a.text {
    display: block;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    background-color: rgba(0,0,0,0.3);
    -webkit-transition: background 0.35s ease;
    -moz-transition: background 0.35s ease;
    -ms-transition: background 0.35s ease;
    transition: background 0.35s ease;
}
.callout a.text:hover{
    background-color: rgba(0,0,0,0.5);
}
.callout .text h5,
.callout .text p{
    color: white;
}
.callout .btn{
    color: white;
    border-color:white;
    margin: 20px auto 0;
}
.callout a:hover .btn,
.callout a.btn:hover{
    background-color: white;
    color: black;
}
.angle-parent{
    position:relative;
}
.callout .flex-wrap{
        align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
/*#mag-cta .flex-wrap{
	-ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}*/
.angle{
    -webkit-clip-path: polygon(0 0, 100% 12.5vw, 100% 100%, 0% calc(100% - 12.5vw));
    clip-path: polygon(0 0, 100% 12.5vw, 100% 100%, 0% calc(100% - 12.5vw));
    display: block;
    width: 100%;
    height: calc(100% - 6.25vw);
    position: absolute;
    left: 0;
    top: 4vw;
    background-color: #ededed;
    z-index: -1;
}
.angle.xl{
    height: calc(100% + 25vw);
    top: -12.5vw;
}
.angle.from-right{
    -webkit-clip-path: polygon(0 12.5vw, 100% 0, 100% calc(100% - 12.5vw), 0% 100%);
    clip-path: polygon(0 12.5vw, 100% 0, 100% calc(100% - 12.5vw), 0% 100%);
}

.right-fallback,
.left-fallback{
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 4vw;
    z-index: -1;
}


/*-- search --*/

.search.sub-nav{
	-js-display: flex;
   display: -webkit-box;      
  display: -moz-box;        
  display: -ms-flexbox;      
  display: -webkit-flex;     
  display: flex; 
    flex-direction: row;
     -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}
.search.sub-nav a{
    text-transform: uppercase;
    font-family: "Lato";
    font-weight:300;
    letter-spacing:1px;
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 20px;
}
.search.sub-nav li {
    margin: 0 20px 12px 0;
}
#search-form .h1,
.search-title .h1 {
    border: none;
    border-bottom: 1px solid #cecece;
    outline: none;
}
.lity-iframe-container iframe {
    box-shadow: none;
    background: white;
}
#search-form,
.search-title{
    position:relative;
}
#search-form .submit,
.search-title .submit{
    position: absolute;
    right:0;
    top:0;
    width: 80px;
    height: 100%;
    overflow: hidden;
}
#search-form .submit::after,
.search-title .submit::after{
    content:"\e80b";
    display:block;
    font-family: "fontello";
    font-size: 38px;
    line-height: 38px;
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
}
#search-form .submit input,
.search-title .submit input{
    text-indent:-9999999px;
    overflow: hidden;
    background-color: transparent;
    outline:none;
    padding:0;
    margin:0;
    border: none;
    width:100%;
    height:100%;
    z-index:1;
    position: absolute;
    top:0;
    left:0;
}
#search-pop input#searchq,
.search-title #searchq {
    width: 100%;
    padding: 0 100px 10px 0;
}

#search-pop{
    max-width: 1150px;
}

#search-form,
.search-title {
    max-width: 850px;
    margin: 0 auto 50px;
}

#search-pop .search.sub-nav {
    margin: 0;
    padding: 0;
}

.search.sub-nav li {
    margin: 0 10px 12px;
}
input.h1 {
    width: 100%;
}


/*-- slideshows --*/
/*! http://responsiveslides.com v1.55 by @viljamis */

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #ffffff;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #222222;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }

  .rslides_tabs {
  	-js-display: flex; 
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex; 
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align:  center;
    align-items: center;
    z-index: 999;
    color: white;
    list-style: none;
    margin: 35px 0 0;
    padding: 0;
    text-align: center;
    width: 100%;
}
.slideshow-wrap .rslides_tabs{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0;
}
.slideshow-wrap{
    position: relative;
    background-color: #333333;
}

.rslides {
    z-index: 0;
    background-color: #333333;
}

.rslides_tabs a {
    display: block;
    position: relative;
    overflow: hidden;
    text-indent: -9999999px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c3c3c3;
    margin: 0 15px;
    transition: 0.35s ease;
}
.rslides_tabs .rslides_here a{
    background: #7d7d7d;
}
.slideshow-wrap .rslides_tabs a{
     background: rgba(255, 255, 255, 0.5);
}
.slideshow-wrap .rslides_tabs .rslides_here a{
    background: white;
}




/*-- home --*/
.slideshow .slide{
	min-height: 400px;
	height: 50vw;
    background-color: #222222;
}

.slideshow .flex-col {
    background-size:cover;
    background-position:50%;
    color: white;
    z-index: 1;
    padding: 50px;
    position: relative;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100%;
    background-color: black;
}
.slideshow .flex-col::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.slideshow .flex-col:hover::after {
    background: rgba(0, 0, 0, 0.45);
}
.slideshow h1{
    margin:0 0 30px;
}
.slideshow h5,
.slideshow .h5{
    color:white;
}
.slideshow .h5,
.slideshow h5,
.slideshow h1{
    opacity:0;
    transition: opacity 0.85s 0.35s ease;
}
.slideshow h1{
    transition: opacity 0.95s 0.35s ease;

}
.slideshow .rslides1_on .h5,
.slideshow .rslides1_on h5,
.slideshow .rslides1_on h1{
    opacity: 1;
}

/*-- podcasts --*/
.podcast-holder {
    margin: 20px 0 30px;
}
.podcast-tags {
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: -webkit-wrap;
    flex-wrap: -moz-wrap;
    flex-wrap: -ms-wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.podcast-tags a {
    margin: 0 1px 0 0;
    position: relative;
}

.podcast-tags a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ef4a22;
}
.podcast-tags li{
    margin: 0 3px 0 0;
}

.podcast-subscribe svg {
    width: 35px;
    opacity:1;
    transition: 0.25s ease;
}
.podcast-subscribe a:hover svg {
    opacity: 0.8;
}
.social.podcast-subscribe li {
    margin: 0 10px 0 0;
}

.social.podcast-subscribe {
    margin: 20px 0 0 0;
}

/*-- article detail --*/
.article-intro h1 {
    max-width: 850px;
    margin: 0 auto;
}
.article-intro figure {
    margin: 30px 0 40px 0;
}
.indent-body .slideshow,
.indent-body .slick-dotted.slick-slider,
.indent-body blockquote {
    margin: 50px -75px;
}

.indent-body .flex-wrap {
    margin: 50px 0;
}
.indent-body .flex-wrap.with-img {
    margin: 50px -75px 50px 0;
}
.indent-body .flex-wrap.with-img figure.half {
    width: 55%;
}
.indent-body .text.half {
    width: 45%;
    padding: 0 35px 0 0;
}
.indent-body p{
    font-size: 18px;
    line-height: 2.0;
}
.indent-body ul,
.indent-body ol {
    font-size: 20px;
    line-height: 1.5;
    list-style: none;
    margin: 0 0 0 30px;
    padding: 0;
}
.indent-body ol{
    counter-reset: my-awesome-counter;
}
.indent-body ul li,
.indent-body ol li {
    margin: 0 0 12px;
    position: relative;
    padding: 0 0 0 25px;
}

.indent-body ul li::before{
    content: "";
    width: 5px;
    height: 5px;
    background: #b7b7b7;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    border-radius: 50%;
}
.indent-body ol li{
    counter-increment: my-awesome-counter;
    padding: 0 0 0 35px;
}

.indent-body ol li::before{
    content: counter(my-awesome-counter) ". ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: "Lato";
}

.indent-body strong {
    font-size: 20px;
    line-height: 20px;
}
.indent-body p > a {
    color: #737373;
    text-decoration: underline;
}

.indent-body p > em,
.indent-body p > i {
    font-size: 124%;
    line-height: 1.5;
}
.video-block{
    margin:50px 0;
    display:block;
}
.video-block figure .demo-icon.icon-play{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    color: white;
    font-size: 80px;
    font-family: "Fontello";
    width: 80px;
    height: 80px;
    top: 50%;
    left: 0;
    margin: 0 auto;
    right: 0;
    transform: translateY(-50%);
}
.vid-inline .pad-most{
	text-align: center;
	color: white;
	z-index:1;
	position: relative;
}
.vid-inline{
	margin: 50px auto;
}
.vid-inline .demo-icon{
	font-size: 50px;
	margin:0 0 15px;
	display: block;
}

.video-block figure .img-wrap {
    position: relative;
}
.video-block figcaption {
    margin: 20px 15px;
}
.tags .tag-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0 0 10px;
    flex-wrap:wrap;
    -ms-flex-wrap: wrap;
    padding: 0;
}

.tags .tag-list a {
    display: block;
    font-family: "Lato";
    font-size: 13px;
    border-bottom: 1px solid #cc4eb6;
}

.tag-list li {
    margin: 0 10px 8px 0;
}
.tags {
    position: absolute;
    top:0;
    left:0;
    width: 250px;
    display:block;
}
.qa p {
    margin: 0 0 40px;
    padding: 5px 0 10px 20px;
    line-height: 1.5;
    color: #333333;
    font-family: "Cormorant";
    font-style: italic;
    font-size: 138%;
}
.qa-title {
    border-bottom: 1px solid #eaeaea;
    padding: 0 0 20px;
    margin: 50px 0 0;
}
.qa, .qa2 {
    margin: 40px 0 40px;
    margin: 40px 20px;
}
.qa2 h7{
    font-size: 20px;
    margin: 0 0 5px;
    display: block;
}
.qa2 h3{
    font-size: calc(30px + (34 - 30) * ((100vw - 480px) / (1600 - 480)));
    font-weight: 400;
}
/*-- favorites --*/
.fav-graphic {
    max-width: 980px;
    margin: 0 auto 60px;
}
.fav-graphic img[data-mob],
.favorites.halfs,
.favorites-info {
    display: none;
}
.favorites .favorite-thing{
    padding: 0 3vw;
    display: block;
    text-align:center;

}
.favorites.thirds > div:last-of-type .favorite-thing,
.favorites.thirds > div:first-of-type .favorite-thing{
    padding: 0 5vw;
}
a.favorite-thing figure{
    opacity: 1;
    transition: opacity 0.15s linear;
}
a.favorite-thing[href]:hover figure {
    opacity: 0.7;
}
.favorites.thirds > div{
     width: 37.999%;
    -ms-flex-item-align: stretch;
    -webkit-align-self:stretch;
    align-self:stretch;

}
.favorites a p{
    margin: 0 0;
}
.favorites > div{
    border-right: 1px solid #ccc;
}
.favorites.thirds > div:last-of-type,
.favorites.thirds > div:first-of-type{
    width: 31%;
}

 .favorites.thirds > div:last-of-type{
    border: none;
 }
 .favorites .archive-box a{
    display: inline-block;
    padding: 14px 28px;
    margin:0 auto;
 }
 .max-width {
    margin: 0 auto;
    max-width: 980px;
}
.max-500{
    margin: 0 auto;
    max-width: 500px;
}
.favorites + .text-center {
    margin: 80px auto 60px;
}


 .favorite-thing img {
    margin: 0 auto 10px;
}

.favorite-thing {
    margin: 0 0 60px;
}
.archive-box{
    text-align: center;
    /*background: #f9f9f9;*/
    margin: 50px 0px 0;
}
.title-block {
    padding: 0 3vw;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 60px 0 40px;
}
.title-block h2{
    margin:0 0 0;
    position: relative;
    z-index: 1;
}
.title-block p {
    font-size: 26px;
    font-weight: 300;
    margin:8px 0 0 0;
    position: relative;
    z-index: 1;
    color: #545454;
}
.callout {
    position: relative;
    color: white;

}

.half.fix a {
    background-color: black;
}
.callout.parallax {
    background-color: black;
}

.callout.spotify .half.pad {
    margin: 0;
    padding: 50px;
}

.callout.spotify .flex-wrap {
	-ms-flex-align: center;
    align-items: center;
    position: relative;
    z-inex:1;
}

.callout.spotify p, 
.callout.spotify, 
.callout.spotify h4,
.callout.spotify h2,
#mag-cta p,
#mag-cta h4,
#mag-cta h2 {
    color: white;
}

.callout.spotify .bg-img::after {
    content: "";
    display: block;
    width: 100%;
    background: black;
    position: absolute;
    height: 100%;
    z-index: 0;
    opacity: 0.35;
    top: 0;
    left: 0;
}

.callout.spotify .half{
    position: relative;
    z-index: 1;
}
.callout.spotify .bg-img.is-parallax{
   /* top: -150%; */
}
#mag-cta .bg-img::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );
}
 



/*-- gallery section --*/
.hero{
    position: relative;
}
.hero .text{
    position: relative;
    z-index:1;
    color: white;
    text-align: center;
    padding: 16vw 8vw;
}
.hero .text h1{
    margin: 0;
}
.hero .text h5{
    color: white;
}
.masonry-grid.gallery{
    columns: 300px 3;
    column-gap: 5vw;
}
.gallery-item{
    opacity:0;
    transition: 1s ease;
    margin:0 0 5vw;
    display:block;
}
.gallery-item.in-view{
     opacity: 1;
}
.hero .bg-img::before{
    content: "";
    display: block;
    position: absolute;
    z-index:1;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background: rgba(0, 0, 0, 0.35);
}

/*-- pagination --*/
.pagination-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.pagination-list .pagination-link {
    font-family: "Lato";
    font-weight: 800;
    font-size: 14px;
    line-height: 14px;
    display: block;
    text-align: center;
    padding: 12px 16px;
    border: 1px solid transparent;
    letter-spacing: 0.5px;
    margin: 0 8px;
}

.pagination-list .pagination-link.is-current {
    border-color: #cacaca;
}

.pagination-list .demo-icon {
    font-size: 30px;
}
.pagination-list .demo-icon.icon-more::before {
    font-size: 20px;
    line-height: 0;
    margin: 18px 0 0;
    display: block;
    position: relative;
    height: 10px;
}


/*-- utility --*/
.color-tan{
    color:#87765f;
}
.bg-tan{
    background-color:#87765f;
}
.bg-grey{
    background-color:#ededed;
}
.color-grey{
    color:#ededed;
}
.text-center{
    text-align:center;
}
.m-100{
    margin-top:100px;
    margin-bottom:100px;
}
.mt-100{
    margin-top:100px;
}
.mb-100{
    margin-bottom:100px;
}
.m-50{
    margin-top:50px;
    margin-bottom:50px;
}
.mt-50{
    margin-top:50px;
}
.mb-50{
    margin-bottom:50px;
}
.indent-50{
    padding-left:50px;
    padding-right:50px;
}
.indent-100{
    padding-left:100px;
    padding-right:100px;
}
@media only screen and (max-width: 650px){
    .indent-50{
        padding-left:20px;
        padding-right:20px;
    }
}

/*-- fixed panel with scroll list --*/
.fix-toggle{
    position:relative;
 
}
.scroll{
    position:relative;
}
.fix-toggle .scroll a{
    transition: 0.35s ease;
    margin: 0px 0 40px;
    display: block;
    padding: 0px 0 10px;
}
.flex-wrap.fourths.gutter a{
    transition: 0.35s ease;
    display: block;
    padding: 0px 0 10px;
}
.fix-toggle .scroll a figure,
.flex-wrap.fourths.gutter a figure,
.flex-wrap.sixths.gutter a figure{
    position: relative;
}
.fix-toggle .scroll a figure::before,
.flex-wrap.fourths.gutter a figure::before,
.flex-wrap.sixths.gutter a figure::before{
    content:"";
    transition: 0.35s ease;
    background: black;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    opacity:0;
}
.fix-toggle .scroll a:hover figure::before,
.flex-wrap.fourths.gutter a:hover figure::before,
.flex-wrap.sixths.gutter a:hover figure::before{
    opacity:0.15;
}

.fix-toggle > *.half.fix{
    margin-bottom:0;
}
.fix{
    position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
    height: calc(100vh - 100px);
    overflow: hidden;
    top: 146px;
    -ms-flex-align: center;
    align-self: flex-start;
}
.fix:before,
.fix:after {
    content: '';
    display: table;
}
.fix a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    opacity: 0.6;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    transition: 0.35s ease;
}
.fix-toggle .fix a:hover::before {
    opacity: 0.86;
}
.fix a{
    height: 100%;
}
.addthis_inline_share_toolbox,
.sharethis-inline-share-buttons {
    margin: 15px 0 0;
}
 .half.scroll .half:first-of-type {
    margin: 0 12px 0 0;
    width: calc(50% - 12px);
}

.half.scroll .half:last-of-type {
    margin: 0 0 0 12px;
    width: calc(50% - 12px);
}
.about-block.fade-in{
        opacity:0;

    }
    .fix-toggle .scroll .about-block a.btn{
        text-transform: uppercase;
        display: inline-block;
        margin: 0;
        padding: 14px 28px;
        text-align: center;
        font-family: "Lato";
        font-weight: 500;
        letter-spacing: 2px;
        font-size: 14px;
        line-height: 14px;
        -webkit-transition: 0.35s ease;
        -moz-transition: 0.35s ease;
        -ms-transition: 0.35s ease;
        transition: 0.35s ease;
    }
    .about-block{
        opacity: 1;
        transition: opacity 0.5s linear;
        margin: 20px 0 0;
        border-top: 1px solid #c5c5c5;
        padding-top: 110px;
    }
    @media only screen and (max-width: 650px){
        .about-block{
            padding-top: 70px;
            margin: 0 0 20px 0;
        }
    }




/*-- subscribe detail and pupup --*/
[data-gated]{
    padding: 0 0 30px;
    border-bottom: 1px solid #e5e5e5;
}
[data-gated] .indent-body{
    position: relative;
}
[data-gated] #gated-warning::before{
  content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 30vh;
    background: white;
    top: -30vh;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    z-index: 0;
    left: 0;
}
#gated-warning::after {
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e5e5;
    display: block;
    top: -40px;
    position: absolute;
}

#gated-warning {
    margin: 80px 0 0;
    position: relative;
    z-index: 1;
}
[data-gated] #gated-warning{
	margin: 60px 0 0;
}
.btn-box .btn{
    margin:0 10px 10px 0;
}
a.underline {
    position: relative;
}

a.underline::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid black;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}


/*-- lity --*/

/*! Lity - v2.4.0 - 2019-08-10
* http://sorgalla.com/lity/
* Copyright (c) 2015-2019 Jan Sorgalla; Licensed MIT */

.lity {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background: #0b0b0b;
    background: rgba(0, 0, 0, 0.9);
    outline: none !important;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.lity.lity-opened {
    opacity: 1;
}

.lity.lity-closed {
    opacity: 0;
}
.lity-wrap {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    outline: none !important;
}
.lity-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.lity-loader {
    z-index: 9991;
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -0.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.lity-loading .lity-loader {
    opacity: 1;
}

.lity-container {
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: none !important;
}

.lity-content {
    z-index: 9993;
    width: 100%;
    opacity:1;
    -webkit-transition: opacity 0.45s 0.15s linear;
    -moz-transition: opacity 0.45s 0.15s linear;
    -ms-transition: opacity 0.45s 0.15s linear;
    transition: opacity 0.45s 0.15s linear;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
    opacity:0;
    -webkit-transition: opacity 0.2s 0s linear;
    -moz-transition: opacity 0.2s 0s linear;
    -ms-transition: opacity 0.2s 0s linear;
    transition: opacity 0.2s 0s linear;
}

.lity-close {
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lity-close::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lity-image img {
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0;
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
    width: 100%;
    max-width: 964px;
}

.lity-iframe-container {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: auto;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

.lity-hide {
    display: none;
}


/*-- custom lity stuff --*/
.lity {
    background: white;
}
.lity-close {
    text-indent: -999999px;
    overflow: hidden;
    width: 35px;
    height: 35px;
    display: block;
    color: black;
    position: fixed;
    top: 35px;
    right: 27px;
    outline:none;
}

.lity-close::after {
    display: block;
    font-family: "fontello";
    font-size: 30px;
    line-height: 30px;
    color: black;
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    content: "\e806";
    text-shadow: none;
}




/*-- progress bar --*/
progress {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    color: black;
    z-index: 6;
}
progress::-webkit-progress-bar {
  background-color: transparent;
}

progress::-webkit-progress-value {
  background-color: black;
}

progress::-moz-progress-bar {
  background-color: black;
}
.fix-toggle progress {
    margin:0 auto;
    width: 100%;
    bottom: 0;
    height: 2px;
   color: white; 
   position: static;
}

.fix-toggle progress::-webkit-progress-value {
  background-color: white;
}

.fix-toggle progress::-moz-progress-bar {
  background-color: white;
}



/*-- filter nav --*/
.filter-nav{
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: -webkit-center;
    justify-content: -moz-center;
    justify-content: -ms-center;
    justify-content: center;
    -ms-flex-pack: center;
    flex-wrap: -webkit-wrap;
    flex-wrap: -moz-wrap;
    flex-wrap: -ms-wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    list-style: none;
    margin:20px auto 0;
    padding:0;
}
.filter-nav li{
    margin: 0 20px;
    position: relative;
}
.filter-nav li::after {
    content: "/";
    display: block;
    position: absolute;
    right: -26px;
    top: -2px;
    font-size: 30px;
    line-height: 30px;
    font-weight: 200;
    font-family: "Lato";
    color: #cccccc;
}
.filter-nav li:last-of-type::after {
    display: none;
}
.filter-nav a{
    text-transform: uppercase;
    font-family: "Lato";
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 30px;
    margin: 0 0 20px;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.filter-nav a::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 1px solid #ef4a22;
    position: absolute;
    bottom: 3px;
    opacity:0;
    transition: opacity 0.25s ease;
 }

.filter-nav a.active::after,
.filter-nav a:hover::after {
    opacity:1;
}

.breadcrumb a {
    font-weight: 600;
    display: block;
    text-transform: uppercase;
    font-family: "Lato";
    color: #757575;
    font-size: 11px;
    letter-spacing: 1px;
}

.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

aside.breadcrumb {
    padding: 20px;
    text-align: center;
}

.breadcrumb ul li {
    position: relative;
    margin: 0 15px 0;
}
.breadcrumb ul li::after{
    content: '/';
    position: absolute;
    right: -17px;
    top: -3px;
}

.breadcrumb ul li:last-of-type::after {
    display: none;
}


/*-- parallax-- */
.parallax{
    overflow: hidden;
    position:relative;
}
.bg-img.is-parallax{
    height: 250%;
    will-change: transform;
    top: -125%;
    z-index: 0;
}
.callout .text{
    position: relative;
    z-index: 1;
}
img{
    transition: opacity 0.5s linear;
    opacity:1;
}
img.fade-in{
    opacity:0;
}






/*-- connect --*/
ul.contact-info {
    list-style: none;
    margin: 8px 0 20px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

ul.contact-info li {
    margin: 0 0 10px;
}

ul.contact-info .demo-icon {
    font-size: 130%;
    margin: 0 0px 0 0;
    position: absolute;
    left:0;
}
ul.contact-info li p{
	font-style: normal;
    font-family: "Lato";
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 1px;
    font-weight: 600;
    margin:0 0 20px;
}
ul.contact-info a, ul.contact-info address{
    font-style: normal;
    font-family: "Lato";
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 1px;
    position: relative;
    padding:0 0 0 30px;
    display: inline-block;
}
.connect .social li{
    margin:0 15px 0 0;
}
.connect .social li a{
    display: block;
    font-size: 24px;
}




/*-- connect temp --*/
.connect img[alt="Blackberry Farm"], 
.connect img[alt="Blackberry Farm Brewery"], 
.connect img[alt="Blackberry Mountain"] {
    max-width: 110px;
}

.connect img[alt="Blackberry Farm"] {
    max-width: 75px;
    margin: 20px auto 15px;
}

.connect img[alt="Blackberry Mountain"] {
    max-width: 105px;
    margin: 5px auto 0px;
}

.connect {
    /* text-align: center; */
}

.connect figure {
   /* background: #f7f7f7; */
    padding: 20px;
    height: 220px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 0 0px;
    flex-direction: column;
}

.connect div.block {
    border: 1px solid #e5e5e5;
    text-align: center;
}

.connect .social {
    margin: 0 auto 20px;
    justify-content: center;
}

img[alt="Blackberry Farm Design"] {
    max-width: 280px;
    margin: 0 auto;
}

img[alt="Blackberry Magazine"] {
    max-width: 300px;
    margin: 0 auto;
}

.connect > div:nth-of-type(4) figure, .connect > div:nth-of-type(5) figure {
    height: 120px;
}

.connect > div:nth-of-type(4) ul.contact-info, .connect > div:nth-of-type(5) ul.contact-info {
    margin: 8px 0 0;
    border-bottom: none;
}

.connect > div.flex-wrap.gutter.halfs{
    width: 100%;
    margin: 0;
}

/*-- about page --*/
.about-intro .half.title {
    text-align: right;
}

.about-intro .flex-wrap {
    margin: 0 auto;
    max-width: 1200px;
}

#mag-cta.about .flex-wrap{
   /* align-items: flex-start;*/
     min-height: 80vh;
     align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
#mag-cta.about h3,
#mag-cta.about p,
#mag-cta.about .number{
    color: white;
}
span.number {
    font-size: 300%;
    display: block;
    position: relative;
    /* margin: 0 0 0 -20px; */
}
/*
span.number::after {
     content: "";
     display: block;
     border: 1px solid #ffffff61;
     margin: 0 0 20px;
     width: 60px;
     height: 60px;
     top: 33px;
     left: 81px;
     position: absolute;
     left: 20px;
}*/



/*-- freinds sign up pages --*/
.field input[type="text"], 
.field input[type="email"], 
.field input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 0;
    border: 1px solid #e5e5e5;
    outline: none;
}

.field {
    margin: 0 0 20px;
    position: relative;
}

.field label {
    font-family: "Lato";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 0 3px;
    display: block;
}
.checkbox input[type="checkbox"] {
    margin: 0px 15px 0 0;
}
.checkbox input[type='checkbox']{
    cursor:pointer;
    background: #fff;
    width: 22px;
    height: 22px;
    position: relative;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    border: 1px solid #e5e5e5;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.checkbox input[type='checkbox']:focus{
    outline:none;
}
.checkbox input[type='checkbox']:checked{
    -webkit-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
    box-shadow: none;
    outline: none;
}
.checkbox input[type='checkbox']:after{
    content: '\e824';
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: block;
    background-color: transparent;
    color: #000000;
    opacity: 0;
    font-size: 33px;
    line-height: 33px;
    border-radius: 0;
    margin: 0;
    position: absolute;
    top: -9px;
    left: -2px;
    padding: 0px 0 0 0;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.checkbox input[type='checkbox']:checked:after{
    opacity:1;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}

.field.checkbox {
    -js-display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
a.forgot-password {
    text-decoration: underline;
    display: inline-block;
    margin: 18px 0 0 0;
    font-size: 15px;
}
button[role="submit"]{
    margin:10px 0 0;
}
#sign-up,
#sign-in{
	width: 100vw;
}
#sign-up .pop-content,
#sign-in .pop-content{
	width: 100%;
	min-width: 280px;
	max-width: 500px;
	margin:0 auto;
}
.lity-active {
    overflow-y: hidden;
}
.lity-wrap{
	overflow-y: scroll;
}
label.error {
    font-size: 10px;
    color: #ef4a22;
    margin: 4px 0 0 0;
}

.field input[type="text"].error, 
.field input[type="email"].error, 
.field input[type="password"].error {
    border-color: #ef4a22;
}


/*-- responsive --*/
@media only screen and (max-width: 1500px){
    .sixth,
    .sixths > *{
        width: 25%;
    }
    .gutter > .sixth,
    .sixths.gutter > * { 
        width: calc(25% - 24px);
        margin: 0 12px 60px;
    }
}
@media only screen and (max-width: 1400px){
    .tags {
        width: 25%;
    }
    .indent-body {
        max-width: none;
        margin: 0 50px 0 30%;
    }
    

}
@media only screen and (max-width:1200px){
    .sixth,
    .sixths > *{
        width: 33.333%;
    }
    .gutter > .sixth,
    .sixths.gutter > * { 
        width: calc(33.333% - 24px);
        margin: 0 12px 60px;
    }
}
@media only screen and (max-width:1150px){
    .gutter > .half {
        width: calc(50% - 32px);
        margin: 0 16px 32px;
    }
    .gutter > .third{
        width: calc(33.333% - 32px);
        margin: 0 16px 32px;
    }
    .gutter > .two-thirds{
        width: calc(66.666% - 32px);
        margin: 0 16px 32px;
    }
    .gutter > .fourth,
    .fourths.gutter > * {
        width: calc(25% - 32px);
        margin: 0 16px 32px;
    }
    .flex-wrap.gutter,
    .flex.gutter {
       /*margin: 0 -16px;*/
    }
    .flex-wrap .flex-wrap.gutter {
    margin: 0 -16px;
}
    .pad,
    .callout.spotify .pad{
        padding:40px;
    }
    .flex-wrap.gutter.pad{
        padding: 40px 24px;
    }
    .pad-more{
        padding:80px;
    }
    .pad-most{
        padding:120px;
    }

    
    .fix{
        height: calc(100vh - 80px);
    }
    .fix{
        top: 40px;
    }
     #mag-cta.about .flex-wrap.gutter > .third{
        width: calc(50% - 32px);
    }
    .fix{
	    top: 136px;
	}

} 
@media only screen and (max-width:1024px){
    #featured-blocks a.half{
        width:calc(100% - 32px);
        min-height:450px;
        -ms-flex-align: initial;
        align-items:initial;
    }
    #featured-blocks .fourth{
        width:calc(50% - 32px)
    }
    header{
        padding: 28px 35px 20px;
    }

  /*  .flex-wrap.landscape-blocks > .half {
        width: 100%;
        -ms-flex-align: center;
        align-items: center;
    }

    .flex-wrap.landscape-blocks .half:nth-of-type(even) {
    	 -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-wrap.landscape-blocks > .half.flex-wrap .half.text {
        margin: 0;
        padding: 24px;
    }

    .flex-wrap.landscape-blocks .half:nth-of-type(even) .half.text {
        text-align: right;
    } */
    .favorites.halfs{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .favorites.halfs > div:last-of-type{
        border:none;
    }
    .favorites.thirds{
        display:none;
    }
    .favorites-info{
        text-align: center;
        display: block;
        margin: 0 auto 60px;
        max-width: 700px;
    }
    .fav-graphic {
        margin: 0 auto 20px;
    }
    .favorites.halfs > div:first-of-type {
        padding: 0 30px 0 0;
    }
    .favorites.halfs > div:last-of-type {
        padding: 0 0px 0 30px;
    }
    footer .flex-wrap > div {
	    padding: 30px 30px;
	}
    footer .newsletter, 
    footer .links,
    footer .logos{
        width: auto;
    }
    footer .newsletter{
        flex-grow: 1;
    }

    .connect.thirds.gutter > div.block,
    .connect > div.flex-wrap.gutter.halfs {
        width: calc(50% - 48px);
            margin: 0 24px 48px;
    }
    .connect > div.flex-wrap.gutter.halfs > div{
         width: 100%;
         margin:0 0 48px;
    }
    .gutter > .third,
    .gutter > .one-third,
    .gutter.thirds > * {
        width: calc(50% - 48px);
        margin: 0 24px 48px;
    }


     footer .newsletter{
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
    }
    footer form{
        margin: 0 auto;
    }
    footer .logos{
        border: none;
        width: 50%;
        text-align: right;
    }
    footer .brands{
        -ms-flex-pack: flex-end;
        justify-content: flex-end;
    }
    footer .links{
        width: 50%;
    }
    footer .bottom{
        padding: 30px 20px 0px;
    }
    footer .brands li{
        width: auto;
    }
    footer .brands a{
        margin:0 0 0 20px;
    }
}
@media only screen and (max-width:950px){
    .fourth{
        width:50%;
    }
    .gutter > .fourth,
    .fourths.gutter > * {
        width: calc(50% - 32px);
        margin: 0 16px 32px;
    }
    .callout .pad {
       /* margin: 50px 0px;
        padding: 50px 100px; */
    }
    .indent-body {
        max-width: none;
        margin: 0 auto;
    }
    .tags{
        display:block;
        position:static;
        width: 100%;
        margin:50px 0 0;
        border-top: 1px solid #e5e5e5;
        padding: 40px 0px 0 0;
    }

} 
@media only screen and (max-width:885px){
   
}
@media only screen and (max-width:850px){
    .gutter > .half {
        width: calc(50% - 28px);
        margin: 0 14px 28px;
    }
    .gutter > .third{
        width: calc(33.333% - 28px);
        margin: 0 14px 28px;
    }
    .gutter > .two-thirds{
        width: calc(60% - 28px);
        margin: 0 14px 28px;
    }
    .two-thirds{
        width:60%;
    }
    .one-third{
        width:40%;
    }
    .gutter > .one-third {
        width: calc(40% - 28px);
        margin: 0 14px 28px;
    }
    .gutter > .fourth,
    .fourths.gutter > *,
    #featured-blocks .fourth {
        width: calc(50% - 28px);
        margin: 0 14px 28px;
    }
    .flex-wrap.gutter,
    .flex.gutter {
      /*  margin: 0 -14px;*/
    }
    .flex-wrap .flex-wrap.gutter {
	    margin: 0 -14px;
	}
    .pad,
    .callout.spotify .pad{
        padding:30px;
    }
    .pad-more{
        padding:60px;
    }
    .pad-most{
        padding:90px;
    }

    /*-- menu --*/
    header{
        padding: 28px 33px 20px;
    }
    #logo{
        width: 200px;
    }
    .brands a img[alt="Blackberry Farm"] {
        width: 30px;
    }
    .brands a img[alt="Blackberry Mountain"] {
        width: 40px;
    }
    .brands a img {
        width: 40px;
    }
    .callout.spotify iframe {
       /* position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;*/
    }
.callout.spotify .bg-img.is-parallax{
    top: -150%; 
}
    .callout.spotify .half.embed {
       /* padding: 0 0 56%; */

        width: 100%;
    } 
    .callout.spotify .half.text-center.pad {
        width: 100%;
    }  
    .fix-toggle .half.scroll{
        width: calc(40% - 28px);
    }
    .fix-toggle .half.fix{
        width: calc(60% - 28px);
    }
   .half.scroll .half:last-of-type,
   .half.scroll .half:first-of-type{
        width: 100%;
        margin:0;
    }
    #mag-cta .flex-wrap{
    	display: block;
    }
    #mag-cta .flex-wrap .half{
    	width: 100%;
    }
    #mag-cta .flex-wrap img{
    	max-width: 700px;
    	margin: 0 auto;
    }
    #mag-cta figure.half{
    	padding:20px;
    }

    .about-intro .flex-wrap.gutter .half.title {
        width: calc(33.333% - 28px);
    }

    .about-intro .flex-wrap.gutter .half.text {
        width: calc(66.666% - 28px);
    }
    #mag-cta.about .flex-wrap.gutter > .third {
        width: calc(66.666% - 32px);
    }
   .fix {
	    top: 126px;
	}
}
@media only screen and (max-width:768px){
    .gutter > .two-thirds{
        width: calc(50% - 28px);
        margin: 0 14px 28px;
    }
    .two-thirds{
        width:50%;
    }
    .one-third{
        width:50%;
    }
    .gutter > .one-third {
        width: calc(50% - 28px);
        margin: 0 14px 28px;
    }

    .sixth,
    .sixths > *{
        width: 50%;
    }
    .gutter > .sixth,
    .sixths.gutter > * { 
        width: calc(50% - 24px);
        margin: 0 12px 60px;
    }

    .connect.thirds.gutter,
    .connect.thirds.gutter > div.flex-wrap.gutter.halfs {
        width: 100%;
        margin: 0px;
    }
    .connect.thirds.gutter > div.flex-wrap.gutter.halfs > div,
    .connect.thirds.gutter > div.block{
         width: 100%;
         margin:0 auto 48px;
         max-width: 450px;
    }
    .masonry-grid.gallery {
        columns: 2;
        /*column-gap: 16px;*/
    }

    .gallery-item {
       /* margin: 0 0 16px; */
    }
    .gutter > .third,
    .gutter > .one-third,
    .gutter.thirds > * {
        width: calc(50% - 24px);
        margin: 0 12px 24px;
    }
}
@media only screen and (max-width:700px){

    .gutter > .two-thirds{
        width: calc(100% - 28px);
        margin: 0 14px 28px;
    }
    .two-thirds{
        width:100%;
    }
    .one-third{
        width:100%;
    }
    .gutter > .one-third {
        width: calc(100% - 28px);
        margin: 0 14px 28px;
    }
    nav.breadcrumb{
    	 -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .breadcrumb h5{
        width:auto;
        text-align:right;
    }
    .breadcrumb ol{
        width:auto; 
    }
    header .btn-wrap{
        width: auto;
    }
    
    .play-btn{
        font-size:65px;
    }
    .about-intro .flex-wrap.gutter .half.title,
    .about-intro .flex-wrap.gutter .half.text {
        width: 100%;
        margin:0;
        text-align: center;
    }
    .about-intro{
        margin:0 0 40px;
    }
    #mag-cta.about .flex-wrap.gutter > .third {
        width: 100%;
        margin:0;
    }
} 
@media only screen and (max-width:650px){
    .pad{
        padding:20px;
    }
    .pad-more{
        padding:30px;
    }
    .pad-most{
        padding:35px;
    }
    .half{
        width:100%;
    }
    .flex-wrap.gutter.pad {
	    padding: 20px;
	}
    .gutter > .half{
        width:100%;
        margin:0 0 20px;
    }
    .gutter > .fourth,
    .fourths.gutter > *,
    #featured-blocks .fourth{
        width:100%;
        margin:0 0 20px;
    }
    .half, 
    .halfs > *,
    .gutter .half, 
    .gutter.halfs > * {
        width: 100%;
        margin:0 0 20px;
    }
    .flex-wrap.gutter,
    .flex.gutter{
        margin:0;
    }
    .flex-wrap .flex-wrap.gutter {
	    margin: 0;
	}
    #featured-blocks a.half {
        width: 100%;
        margin: 0 0 20px;
    }
    .slideshow .flex-col{
        padding: 22vw 30px;
    }
    .fix{
        position: static;
    }
    .fix-toggle .half.fix,
    .fix-toggle .half.scroll{
        width: 100%;
        margin:0;
    }
    .fix-toggle .half.fix{
        margin:0 0 28px;
        height: calc(100vh - 238px);
    }
    .fav-graphic img[data-desk] {
        display: none;
    }
    .fav-graphic img[data-mob] {
        display: block;
        max-width: 90%;
    }
    .favorites.halfs > div{
        width: 50%;
        margin:0;
    }
    .flex-wrap.landscape-blocks > .half {
        width: 50%;
        padding:0 10px;

    }
    .gutter.landscape-blocks .half.text{
            margin: 15px 0 0;
    }


    .fix-toggle .half.scroll .flex-wrap.gutter > .half{
        width: calc(50% - 16px);
        margin: 0 8px 20px;
    }
    .fix-toggle progress{
        display:none;
    }
    footer{
        padding: 48px 38px 18px;
    }
    footer .flex-wrap{
        display:block;
    }
    footer .flex-wrap > div {
        padding: 40px 0px;
        width: 100%;
        text-align:center;
    }
    footer .flex-wrap > div:first-of-type{
        border-right: none;
        text-align: center;
        border-bottom: 1px solid #424242;
        padding-top: 0px;
    }
    footer .brands {
        justify-content: center;
        -ms-flex-pack: center;
    }

    footer form {
        max-width: none;
        min-width: 0;
        width: 300px;
        margin:0 auto;
    }
    footer .brands a {
        margin: 0 15px;
    }
    footer .links{
        border-left: none;
        border-top: 1px solid #424242;
        border-bottom: 1px solid #424242;
    }
    footer .bottom {
        padding: 20px 20px 30px;
    }
    .indent-body.stories figcaption {
        bottom: -25px;
        left: 20px;
        font-size: 28px;
        padding: 10px 20px;
        max-width: calc(100% - 40px);
    }


    .gutter > .sixth, 
    .sixths.gutter > * {
        width: calc(50% - 16px);
        margin: 0 8px 32px;
    }

    .gutter > .sixth figure + .text, 
    .sixths.gutter > * figure + .text {
        padding: 6px;
        margin: 6px 0 0;
    }
    .gutter.landscape-blocks .half.text {
        margin: 0px 0 0;
        padding: 5px;
    }
    .flex-wrap.landscape-blocks > .half {
        width: 50%;
        padding: 0;
        width: calc(50% - 16px);
        margin: 0 8px;
    }
    .flex-wrap.landscape-blocks > .half {
        width: 100%;
        margin: 0;
        /* display: flex; */
    }
    .masonry-grid.gallery {
        columns: 2;
        column-gap: 16px;
    }

    .gallery-item {
        margin: 0 0 16px;
    }
    .gutter > .third,
    .gutter > .one-third,
    .gutter.thirds > * {
        width: 100%;
        margin: 0 0px 40px;
    }
    .half.scroll .half:first-of-type {
	    margin: 0 12px 0 0;
	    width: calc(50% - 12px);
	}

	.half.scroll .half:last-of-type {
	    margin: 0 0 0 12px;
	    width: calc(50% - 12px);
	}
}
@media only screen and (max-width:550px){
    .favorites.halfs > div:last-of-type,
    .favorites.halfs > div:first-of-type{
        width: 100%;
        margin:0;
        border:none;
        padding:0;
    }
  
}
