img {
	vertical-align: top;
}
main.home {
	background: black;
}

.corner-triangles-wrap {
	text-align: right;
	padding-top: 20px;
	padding-right: 20px;
}
#corner-triangles {
	width: 110px;
	height: 80px;
}
.home-area {
	min-height: calc(100% - 100px - 100px);
  display: flex;
  flex-direction: column;
	justify-content: center;
}
.logo {
	width: 80%;
	max-width: 900px;
	height: auto;
	margin: 10px 0px;
}
.home-menu {
	display: flex;
	justify-content: center;
	align-items:  center;
	padding: 20px 2px;
	margin-top: 20px;
	/* border-top: 1px solid #016ea0; */
	/* border-bottom: 1px solid #016ea0; */
}
.home-menu-link {
	color: white;
	text-decoration: none;
	margin: 0px 15px;
}
.home-menu > .home-menu-link {
	flex-grow:  1;
	max-width: 170px;
}
.home-menu > :nth-child(2){
	margin-left: 75px;
}
.home-menu-link:hover {
	color: #058ECB;
}
.home-menu-checkout-area {
	display: flex;
	justify-content: center;
	align-items: baseline;
}
.home-menu-social {
  flex-basis: 150px;
  display: flex;
  padding: 0 5px;
}
.home-menu-social img {
  width: 20px;
  height: auto;
  margin-right: 7px;
}
.menu-play-pause {
  margin-top: 2px;
  margin-left: 1px;
}
.home-menu-social-desktop {
	position: absolute;
	left: 20px;
}
.home-menu-social-mobile {
	display: none;
}
.home-menu-social-mobile .menu-play-pause:hover::after {
	display: none;
}
#home-checkout-link {
	display: inline-block;
	color: #058ECB;
	margin-top: 80px;
	margin-bottom: 20px;
}
#home-checkout-link .jar-icon {
	position: relative;
	height: 40px;
	width: 40px;
	left: 6px;
}
#home-checkout-link .jar-icon-number {
	font-size: 16px;
	margin: 0 20px 0 20px;
	line-height: 40px;
	bottom: 0;
	top: 3px;
}
.down-arrow-wrap {
	height: 80px;
	width: 50%;
	min-height: 40px;
	max-width: 300px;
	margin: 0px auto 20px;
	border-radius: 5px;
	background-color: #000000;
}
.down-arrow-wrap:hover {
	cursor: pointer;
 }
.down-arrow {
	position: relative;
	top: 25%;
	height: 50%;
	width: auto;
}

/* Dash animated button */
.dash-button {
  text-decoration: none;
  text-align: center;
  display: block;
  position: relative;
  width: 200px;
  color: white;
  margin: 0 5px;
  line-height: 40px;
}
.dash-button:hover {
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: white;
}
.dash-button rect {
  stroke-width: 2;
  stroke: #016ea0;
  stroke-dasharray: 400, 0;
}
.dash-button:hover rect {
  stroke-width: 2;
  stroke-dasharray: 100, 400;
  stroke-dashoffset: 206;
  transition: all 1s cubic-bezier(0.2, 1, 0.2, 1)
}
.dash-button svg {
  position: absolute;
  width: 100%;
  height: 40px;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .dash-button {
    margin: 0 2px;
    font-size:  13px;
  }
}

/* Play pause button */
.menu-play-pause {
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
  width: 70px;
}
.menu-play-pause::after {
  width: 0;
  overflow: hidden;
  transition: width .5s ease-in-out;
  content: '';
  display: block;
  margin-left: 5px;
  font-family: 'Arial';
}
.menu-play-pause:hover::after {
  color: white;
  width: 45px;
  content: 'play';
  position: relative;
  bottom: 2px;
}
.menu-play-pause.audio-triggered:hover::after {
  content: 'pause';
}
/* Which button to show on hover */
/* When they hover, show only the play button to make the action clearer */
.menu-play-pause:not(.audio-triggered):hover .menu-pause-wrap,
.audio-triggered:hover .menu-play-wrap {
  display: none;
}
.menu-play-pause:not(.audio-triggered):hover .menu-play-wrap,
.audio-triggered:hover .menu-pause-wrap {
  /* The item that is shown */
  margin-left: 5px;
}
/* PAUSE BUTTON INTERNAL*/
.menu-pause-wrap {
  position: relative;
  z-index: 10;
  width: 7px;
  margin-right: 4px;
}
.menu-pause-under {
  position: absolute;
}
.menu-pause::before ,
.menu-pause::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 16px;
  top: 0;
  background: white;
}
.menu-pause::after {
  margin-left: 3px;
}
.play-pause-animation .menu-pause {
  transition: all .3s ease-in;
  transform: scale(10);
  opacity: 0;
  width: 7px;
}
 body .play-pause-animation .menu-pause-under {
  transform: none;
  opacity: 1;
}
/* Play button */
.menu-play-wrap {
}
.menu-play {
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-left: 8px solid white;
	border-bottom: 8px solid transparent;
  position: relative;
  z-index: 10;
}
.menu-play-under {
  position: absolute;
}
.play-pause-animation .menu-play {
  transition: all .3s ease-in;
  transform: scale(10);
  opacity: 0;
}
 body .play-pause-animation .menu-play-under {
  transform: none;
  opacity: 1;
}


/* PHILOSOPHY SECTION */
.philosophy-wrap {
	min-height: 75vw;
	background-image: url(/images/golden-life-next.jpg);
	background-size: cover;
	background-position: top center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.philosophy-quote-wrap {
  width: 100%;
  text-align: left;
}
.philosophy-quote {
  width: 60vw;
  max-width:  800px;
  height: auto;
  margin: 120px 0 90px 5vw;
}
.philosophy-popup {
  height: 0;
  width: 0;
  position: relative;
}
.philosophy-popup-inner {
  width: 40vw;
  max-width: 500px;
  min-width: 400px;
  position:  absolute;
  background: hsla(343, 82%, 9%, 0.95);
  padding: 35px 10px 10px;
  border-radius: 35px;
  font-size:  110%;
  font-weight:  bold;
  transition: transform .2s cubic-bezier(0, 1, 0, 0) .05s,
		opacity .2s linear .05s, width 0s 0s, padding 0s 0s;
  transform: translateX(50%);
  right: -50%;
}
.philosophy-popup-closed .philosophy-popup-inner {
  transform: translateX(50%) scale(.8);
  opacity:  0;
  width: 0;
  padding: 0;
  transition: transform .2s cubic-bezier(0, 0, 1, 0),
		opacity .2s linear, width 0s .2s, padding 0s .2s;
}
.philosophy-popup-closed + .philosophy-quote-wrap {
  cursor: pointer;
}
.philosophy-close {
  position:  absolute;
  top: 12px;
  right: 20px;
}
.philosophy-close:hover {
  background: hsl(346, 43%, 21%);
}
.philosophy-close:active {
  background:  black;
}
.philosophy-text {
  margin-bottom:  14px;
}
.philosophy-text:last-of-type {
  margin-bottom:  0;
}
.philosophy-popup-badge {float:  right;}
.philosophy-popup-badge img {
  margin-right:  5px;
  width: 105px;
}
.philosophy-caption {
	width: 100%;
	font-size: 25px;
	box-sizing: border-box;
	padding: 0 5px;
}
@media (max-width: 767px) {
  .philosophy-wrap {
    min-height: calc(100vh - 69px);
  }
  .philosophy-popup {
  top: 0;
  }
  .philosophy-popup-inner {
    font-size: 100%;
    width: 85vw;
    min-width: inherit;
    top:  20px;
  }
  .philosophy-quote {
    max-width: 460px;
    width: 90%;
  }
}
@media (max-width: 400px) {
  .philosophy-popup {
    top: -50px;
  }
}

/* LIFESTYLE SECTION */
#lifestyle {
	background: white;
}
.lifestyle-wrap img {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}


/* BANNER SLIDER */
.banners {
	position: relative;
	/* height:  387px; */
}
.banners-mobile {
	display: none;
}
.banners-control {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  margin: 0 5vw;
  top: calc(50% - 25px);
  transform:  translateY(-50%);
}
.banners-control svg,
.product-control-arrows svg {
  width: 35px;
  height: 50px;
}
.banners-control svg rect,
.banners-control svg line {
  transition: fill .3s linear, stroke .3s linear;
}
.banners-control svg rect {
  fill: none;
}
.banners-control svg:hover rect {
  fill: white;
}
.banners-control svg line {
  stroke: white;
}
.banners-control svg:hover line {
  stroke: black;
}
.banners-control-right,
.banners-control-mobile-right {
	right: 0;
}
.banner-img {
	width: 100vw;
	height: calc(100vh - 100px);
	background-size: cover;
	background-position:  center center;
}
.slider-dots {
	position: absolute;
	bottom: 10px;
	left:  0;
	right:  0;
	/* padding-top:  10px; */
	text-align:  center;
}
.slider-dots li {
	display: inline-block;
	margin: 5px;
}
.slider-dots button {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   background: #dbdbdb;
   border: 1px solid transparent;
   font-size:  0;
   border-radius: 15px;
   width: 15px;
   height: 15px;
   display: inline-block;
   transition: background .3s linear;
   cursor: pointer;
}
.slider-dots .slick-active button,
.slider-dots .slick-active button:hover {
	background: #055579;
}
.slider-dots button:hover {
	background: #ccc;
}
.banner-slide {
	text-decoration: none;
}
.banners-content {
	transition: transform 1s cubic-bezier(0, 0.58, 0, 1), opacity 1s linear;
	transition-delay: .3s;
	opacity: 1;
	position: absolute;
	width: calc(100vw - 5vw - 47px - 97px);
	padding: 0 calc(5vw + 47px);
	height:  100%;
}
.banner-slide:not(.slick-active) .banners-content {
	transform: translateY(100px);
	opacity: 0;
}
.banners-content-inner {
	position:  relative;
	transform:  translateY(-50%);
	top: calc(50% - 25px);
	text-align:  left;
	padding: 0 30px;
	font-size: 22px;
	/* display:  inline-block; */
	text-align:  center;
}
.banners-title {
	z-index: 10;
	margin-bottom: 11px;
}
.banners-button {
	border:  2px solid white;
	display:  inline-block;
	padding: 2px 6px;
	border-radius:  5px;
	transition: background .3s linear, color .3s linear;
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom:  10px;
	border-color: #7a5433;
}
.banners-button:hover {
	background:  white;
	color:  black;
}
.banner-content-inner-wrap-right {
	text-align: right;
}
.banner-content-inner-wrap-left {
	text-align: left;
}
.banner-content-inner-center {
  text-align: center;
}
.banner-content-inner-right {
	display:  inline-block;
	text-align: left;
	margin-right: 7%;
	text-align: center;
}
.banner-content-inner-left {
	display:  inline-block;
	text-align: left;
	margin-left: 7%;
	text-align: center;
}
.banners-content-left {
	display: inline-block;
	margin-left: 7%;
	text-align: center;
}
.banners-mobile-inner {
	position:  absolute;
	bottom:  0;
	left:  0;
	right: 0;
}

@media (max-width: 767px) {
	.banners-mobile {
		display: block;
	}
	.banners-desktop {
		display: none;
	}
  .banners-control svg,
  .product-control-arrows svg {
    position: relative;
    top:  10px;
  }
}




/* COLLECTIVE AT BOTTOM */
#collective-wrap {
	height: 80%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#collective {
	width: 95%;
	max-width: 780px;
}
#collective-spacer-top {
	height: 20%;
}
#footer {
	position: absolute;
	bottom: 20px;
	text-align: right;
	width: 95%;
	max-width: 780px;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
}
#footer a {
	margin: 0px 0px 0px 20px;
	text-decoration: none;
	color: gray;
	font-size: 90%;
	display: inline-block;
}
@media screen and (max-width: 800px) {
	#philosophy,
	#lifestyle,
	#collections,
	#cut,
	#hoodie,
	#initial,
	#connect {
		height: 95px;
	}
	.home-menu-social-mobile {
		display: flex;
	}
	.home-menu-social-desktop {
		display: none;
	}
	.home-menu > :nth-child(2){
		margin-left: 2px;
	}
}
@media (min-width: 1200px) {
	.home-menu > :nth-child(2){
		margin-left: 0;
	}
}
@media screen and (max-width: 480px) {
	.logo {
		width: 95%;
	}
	.home-menu-link {
		display: block;
		margin: 5px 0px;
	}
	#home-checkout-link {
		padding: 0;
		margin: 30px 0 0 0;
	}
	#home-checkout-link .jar-icon-number {
		top: 0;
	}
	.philosophy-caption {
		font-size: 18px;
	}
	#left-hover-zone, #right-hover-zone {
		/*display: none;*/
	}
	.lifestyle-arrow {
		height: 25px;
		width: 25px;
	}
	#connect-form {
		float: none;
		width: 70%;
	}
	#connect-right {
		float: none;
		width: 100%;
	}
	#connect-spacer-top {
		height: 0px !important;
	}
	#connect-spacer-bottom {
		height: 0px !important;
	}
	.banners-control {
		visibility:  hidden;
	}
	.banners-content {
		width:  100vw;
		padding:  0;
	}
	.banners-content-inner {
		top: calc(50%);
	}
	.banners-title {
		font-size:  16px;
		margin-bottom: 5px;
	}
	.slider-dots {
		/* position:  relative; */
		/* bottom:  0; */
	}
	.slider-dots li {
		margin: 2px;
	}
	.banner-slide:not(.slick-active) .banners-content {
		transform: translateY(50px);
	}
	.banner-content-inner-right {
		margin-right: 0;
	}
	#footer a {
		margin: 0px 5px;
	}
}
