/************************************************ Background ************************************************/
body {
	background:#fff;
}

input[type='submit']
{
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none; 
}

html {
	scroll-behavior: smooth;
}

/************************************************ Format ************************************************/

body, select, input, textarea {
	font-size:62.5%;
	font-family: "stolzl", Arial, Helvetica, sans-serif;
	color:#3f5e71;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	background: #fff;
}

h1,h2,h3,h4,h5 {
	line-height: 1.3em;
	font-weight: 500;
}

h1 {
	font-size:30px;	
}

h1.hp_title {
	font-size:36px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	padding: 0 15%;
	margin: 0;
}

h1.hp_title em {
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none
}

h3.hp_title {
	font-size:36px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	padding: 0 15%;
	margin: 0;
}

h3.hp_title em {
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none
}

h2 {
	font-size:28px;
}

h3 {
	font-size:18px;
}

h4 {
	font-size:20px;
	margin: 0 0 20px;
	font-weight: 200;
	line-height: 1.5em;
	letter-spacing: 1px;
}

h5 {
	font-size:12px;
}

h6 {
	font-size:10px;
}

p {
	font-size:17px;
	line-height:1.5em;
	padding:0 0 20px;
	font-weight: 200;
}

a {
	color:#000;
	text-decoration:none;
	transition: all 0.3s ease-out;
}

a:hover {
	color:#425e73;
	text-decoration:underline;
}

main.green a {
	color:#fff;
	text-decoration:underline;
	transition: all 0.3s ease-out;
}

main.green a:hover {
	color:#fff;
	text-decoration:none;
}

img, object, embed, video {
	max-width: 100%;
}

img {
	height:auto;	
}

strong {
	font-weight:bold;	
}

em {
	font-style:italic;	
}

hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
 }

.clearfix:after {
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;	
}

.btn {
	color: #425e73;
	background: none;
	font-size: 18px;
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	border: 1px solid #425e73;
	padding: 7px 30px;
	margin: 15px 0 0;
}

.btn.outline {
	color: #fff;
	border: 1px solid #fff;
}

.btn:hover {
	color: #fff;
	background: #425e73;
	text-decoration: none;
}

.btn.outline:hover {
	color: #425e73;
	background: #fff;
	text-decoration: none;
}

.btn.yellow:hover {
	color: #fff;
	background: #004466;
	text-decoration: none;
}

.mob_show {
	display: none;
}

/************************************************ Pre Loader ************************************************/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

#status {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 0;
  right:0;
  top: 50%;
  margin: -100px auto 0 auto;
}

.loader {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index:3;
  top: 0;
  margin:auto;
  right:0;
  left:0;
  animation: loader 4s infinite ease;
  background:url(../images/loading.gif) no-repeat center;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover!important;
}

/*.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #000;
  animation: loader-inner 2s infinite ease;
}*/

@keyframes loader {
  0% {
    transform: rotate(180deg);
  }
  
  25% {
    transform: rotate(360deg);
  }
  
  50% {
    transform: rotate(360deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 100%;
  }
  
  
  100% {
    height: 0%;
  }
}

/************************************************ Overlay ************************************************/

.overlay {
	height:0;
	opacity:0;	
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index:99;
	background:#425d72;
}

/* Overlay closing cross */
.overlay .overlay-close {
	width: 80px;
	height: 80px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
}


/************************************************ Mobile Menu ************************************************/

a.openmenu {
	display:none;	
}

/* Effects */
.overlay {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay .nav_surround {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.overlay ul {
	opacity: 0.4;
	-webkit-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.overlay.open ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.overlay.close ul {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}


/************************************************ Responsive Menu ************************************************/

.menu_btn {
	cursor:pointer;
	display:none;	
}


/************************************************ Layout ************************************************/

.row {
	width:100%;
	float:left;
	padding: 0 5%;
	box-sizing: border-box;
}

.row.blue {
	background:#425e73;
	padding: 50px 5%;
	text-align: center;
	color: #fff;
} 

.row.blue.sustainable {
	background:url("../images/sustainableblue.jpg") no-repeat center;
	background-size: cover;
	padding: 50px 5%;
	text-align: center;
	color: #fff;
} 

.row.brand_logos {
	padding: 50px 5%;
}

.row.padd {
	padding: 150px 5%;
}

.row.newspadd {
	padding: 150px 5% 100px;
}

.row.lesspadd {
	padding: 50px 5% 150px;
}

.row.toppadd {
	padding: 250px 5% 0;
}

.row.bottompadd {
	padding: 0 5% 150px;
}

.row.lessmarg {
	padding: 120px 5% 50px;
}

.row.hp_grey {
	background:#f5f5f5;
	padding: 0 5% 100px;
}

.row.hp_grey.nomarg {
	background:#f5f5f5;
	padding: 50px 0 0;
}

.row.nomarg {
	padding:100px 0 0;
}

.row.nomarg_bottom {
	padding:100px 5% 0;
}

.row.nomarg_top {
	padding:0 5% 100px;
}

.row.nomarg_side {
	padding:150px 0;
}

.row.nomarg_side_nopaddtop {
	padding:50px 0 150px;
}

.row.nomarg_side_bottom {
	padding:100px 0 120px;
}

.row_inner {
	max-width: 1400px;
	min-width: 900px;
	margin:0 auto;
}

header.page_header {
	position: fixed;
	top: 25px;
	width: 100%;
	z-index: 10 !important;
	font-size: 0;
	transition: all 0.2s ease-in-out;
}

header.page_header.fixed {
	top: 0;
}

header.page_header.fixed > .header_wrapper {
	width:100%;
	margin: 0;
}

header.page_header > .header_wrapper {
	position: relative;
	width: calc(100% - 2%);
	height: 60px;
	max-width: 100%;
	margin: 0 1%;
	padding: 0;
	background: #425d72;
	transition: all 0.2s ease-in-out;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

#brands header.page_header.fixed {
	top: 0;
	position: absolute;
	transition: linear 500ms;
}

#brands header.page_header.fixed > .header_wrapper {
	width: 100%;
	margin: 0;
	transition: all 500ms;
	opacity: 0;
}

header .header_side {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	width:100%;
}

header.page_header nav.header_menu {
	flex-grow: 1;
	flex-shrink: 0;
	position: static;
	display: block;
}

ul.menu, ul.menu.horizontal {
	flex-wrap: wrap;
	flex-direction: row;
	display:flex;
}

header.page_header nav.header_menu ul.menu:not(.submenu) {
	position: static;
	padding: 0 5%;
}

header.page_header nav.header_menu ul.menu:not(.submenu) > li {
	position: static;
	text-align: center;
	flex: 1 1 0px;
}

header.page_header nav.header_menu ul.menu:not(.submenu) > li > a, 
header.page_header nav.header_menu ul.menu:not(.submenu) > li > span {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding: 0;
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 4rem;
	color: #e8e8e2;
	text-transform: uppercase;
}

header.page_header nav.header_menu ul.menu:not(.submenu) li a:after {
	height:0;
	width: 100%;
	background:#e8e8e2;
	bottom: 2px;
	left: 0;
	position: absolute;
	content: '';
	transition: height 0.5s;
}

header.page_header nav.header_menu ul.menu:not(.submenu) > li > a:hover {
	text-decoration:none;
}

header.page_header nav.header_menu ul.menu:not(.submenu) li a:hover:after {
	height:2.5px;
}

/*sub menu*/

header.page_header nav.header_menu ul.menu.is-dropdown-submenu {
	border: none;
	text-align: left;
	position: absolute;
	z-index: 1;
	display: none;
	min-width: 200px;
	right: 0;
	left: 0;
	width: 100%;
	background: #e8e8e2;
	top: 100%;
	padding: 0 5%;
	box-sizing: border-box;
}

header.page_header nav.header_menu ul.menu.is-dropdown-submenu > li {
	width: auto;
	display: inline-block;
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
	top: 100%;
	right: auto;
	left: 0;
}

header.page_header nav.header_menu ul.menu.is-dropdown-submenu > li > a {
	position: relative;
	padding: 0 1.5em 0;
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 4.5em;
	color: #425d72;
	text-transform: uppercase;
	height: 100%;
	display: block;
	opacity: 0.7;
}

header.page_header nav.header_menu ul.menu.is-dropdown-submenu > li > a:after {
	display:none;
}

header.page_header nav.header_menu ul.menu.is-dropdown-submenu > li > a:hover {
	text-decoration: none;
	opacity:1;
}

header.page_header nav.header_menu ul.menu.is-dropdown-submenu > li > a:hover:after {
	display:none;
}

header.page_header #logo {
	margin: -8px 0 0;
	flex-basis: 500px /*34%*/;
}

/************************************************ Home ************************************************/

.hero {
	width: 100%;
	position: relative;
	height: 100vh;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: end;
	z-index: -1;
	float: left;
	overflow: hidden;
}

#home .hero {
	height: auto;
}

.hero_image {
	width:100%;
	min-height: auto;
	object-fit: cover;
}

.hero_image img {
	width:100%;
}

a.play_btn {
	font-size:120px;
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: auto;
	z-index: 3;
}

.video_top {
	width:100%;
	height: 100vh;
	position: relative;
	z-index: 2;
}

.videoWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Make the iframe keep an aspect ratio, and
position it in the middle of its parent wrapper*/

.videoWrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main {
	width:100%;
	float: left;
	background: #fff;
}

#brand_slider .slick-track {
  display: flex;
  align-items: center;
}

#brand_slider .slick-slide {
	box-sizing: border-box;
	margin: 0 35px;
	text-align: center;
}

#brand_slider .slick-list {
	margin: 0 -35px;
}

#brand_slider .slick-slide img {
	width:100%;
	margin: 0 auto;
}

#brand_slider .slick-slide img.small-90 {
	width:90%;
}

#brand_slider .slick-slide img.small-75 {
	width:75%;
}

#brand_slider .slick-slide img.small-50 {
	width:50%;
}

.hp_flex {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items:flex-start;
}

.hp_flex.bottom {
	align-items:flex-end;
	margin: 0 0 2%;
}

.hp_left {
	display: flex;
	flex-flow: row wrap;
	width: 49%;
	position: relative;
}

.hp_left .pic_overlay {
	position: absolute;
	margin: auto;
	z-index: 1;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	color: #fff;
}

a.link_overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(66,94,115,0);
	z-index: 2;
}

a.link_overlay:hover {
	background: rgba(66,94,115,0.3);
}

.hp_right {
	display: flex;
	flex-flow: row wrap;
	width: 49%;
	position: relative;
}

.text_pic {
	flex-flow: row wrap;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.text_pic.padd {
	margin: 0 0 50px;
}

.text_box {
	width:48%;
	text-align: center;
}

.text_box.right {
	order:2;
}

.text_box.small {
	width:20%;
}

.pic {
	width:48%;
}

.pic.large {
	width:62%;
	margin-right: 10%;
}

.pic_overlay {
	position: absolute;
	right: 2%;
	top: 5%;
	z-index: 1;
	width:48%;
	color: #fff;
	text-align: center;
}

.pic_overlay .text_pic {
  justify-content: center;
}

.text_pic p {
	font-size:34px;
	padding: 0;
}

.text_pic p em {
	font-size:40px;
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none;
	letter-spacing: 1px;
}

.text_size_20 {
	font-size:20px!important;
}

.text_size_30 {
	font-size:30px!important;
}

.text_pic p strong {
	font-size:36px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-style: normal;
	line-height: 1em;
	display: block;
	margin: 0 0 -10px;
}

.text_pic p span {
	font-size:30px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 0.8em;
	display: block;
}

.text_pic p span.large {
	font-size:100px;
	line-height: 1em;
}

.text_pic p span.medium {
	font-size:70px;
	line-height: 1em;
}

.text_pic p span.small {
	font-size:22px;
	line-height: 1.3em;
}

.text_pic p span.smallest {
	font-size:20px;
	line-height: 1em;
}


/************************************************ General ************************************************/

.side_slider {
	width:100%;
	display: block;
	position: relative;
}

.flex_container {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items:center;
	margin: 0 0 40px;
	box-sizing: border-box;
}

.flex_container.nomarg {
	margin: 0;
}

.flex_container.value {
	align-items: stretch;
	/*margin: 100px 0;*/
}

/*.flex_container.value.nomarg {
	margin: 100px 0 0;
}*/

.flex_container.grey {
	background:#eceff1;
}

.flex_container.padd {
	padding:0 15%;
}

.flex_container.bottompadd {
	padding:0 15% 50px;
}

.flex_container.valuepadd {
	padding:0 30% 0 15%;
}

.flex_container.center {
	justify-content:center;
}

.flex_left {
	display: flex;
	flex-flow: row wrap;
	width: 48%;
	position: relative;
}

.flex_left.padd,
.flex_right.padd{
	padding:60px 7.5%;
}

.flex_right {
	display: flex;
	flex-flow: row wrap;
	width: 48%;
	position: relative;
}

.flex_left.large,
.flex_right.large {
	width: 58%;
}

.flex_left.small-40,
.flex_right.small-40 {
	width: 40%;
}

.flex_left.large-50,
.flex_right.large-50 {
	width: 58%;
}

.flex_left.large-60,
.flex_right.large-60 {
	width: 60%;
}

.flex_left.large-70,
.flex_right.large-70 {
	width: 70%;
}

.flex_left.large-80,
.flex_right.large-80 {
	width: 80%;
}

.flex_left.small,
.flex_right.small{
	padding:60px 7.5% 60px 0;
	width: 30%;
}

.flex_left.small.nobpadd,
.flex_right.small.nobpadd {
	padding-bottom:0;
}

.flex_right.minus_marg_right{
	margin-right:-5.5%
}

.flex_left.minus_marg_left{
	margin-left:-10.5%
}

.flex_text {
	width:100%;
}

.flex_text.center {
	text-align:center;
}

.flex_text.small-70 {
	width:70%;
	display: flex;
	justify-content: space-between;
}

.values_slider {
	width:100%;
	float: left;
}

.slider-nav {
	width:50%;
	color: #000;
	display: flex;
	justify-content: center;
	margin: 50px auto 80px;
	text-align: center;
	align-items: stretch;
}

.slider-nav div.value_nav {
	width:25%;
	height: 60px;
	font-family: "nocturne-serif", serif;
	color: #415f73;
	line-height: 1.5em;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 20px;
	position: relative;
	display: flex!important;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.slider-nav .slick-slide.slick-current div.value_nav {
	font-size: 36px;
}

.slider-nav .slick-slide.slick-current div.value_nav:after,
.slider-nav .slick-slide.slick-current div.value_nav:before {
	position: absolute;
	width: 40%;
	height: 2px;
	background:#415f73;
	right: -15%;
	content: '';
	top: 50%;
}

.slider-nav .slick-slide.slick-current div.value_nav:before {
	left: -15%;
	right: inherit;
}

.value_number {
	font-size:180px;
	font-family: "nocturne-serif", serif;
	color: #415e72;
	opacity:0.2;
	font-weight: 500;
}

.value_content {
	margin:50px 0 0 4%;
	position: relative;
}

.value_content.bg1:after {
	content: '';
	background: url("../images/courageous-title.png") no-repeat bottom;
	background-size: auto;
	background-size: 100%;
	position: absolute;
	width: 125%;
	min-height: 100%;
	left: 0;
	bottom: 100px;
	z-index: 0;
}

.value_content.bg2:after {
	content: '';
	background: url("../images/integrity-title.png") no-repeat bottom;
	background-size: auto;
	background-size: 100%;
	position: absolute;
	width: 125%;
	min-height: 100%;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.value_image {
	width:37%;
	background-size:cover!important;
}

.value_text {
	padding: 50px 8% 50px 3%;
	display: flex;
	box-sizing: border-box;
	width: 50%;
	margin-right: 13%;
}

p.indent {
	margin-left: 7%;
}

h1.caps,
p.caps {
	font-size:36px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	padding: 0;
	margin: 0 0 20px;
}

h1.caps em,
p.caps em {
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none
}

p.caps.large.line {
	font-size: 64px;
	padding: 0 0 25px;
	line-height: 1em;
	position: relative;
	margin: 0 0 30px;
}

p.caps.large.line.light {
	font-weight:500;
	font-size:40px;
}

p.caps.large.line em {
  font-size: 50px;
}

p.caps.large.line.light em {
  font-size: 36px;
}

p.caps.large.line:after {
	width:70px;
	height: 5px;
	background: #425e73;
	left: 0;
	bottom: 0;
	position: absolute;
	content: '';
}

p.date {
	font-size:14px;
	font-family: "nocturne-serif", serif;
	font-weight: bold;
	font-style: normal;
	padding: 0;
	margin: 15px 0;
}

h2.caps {
	font-size:36px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	padding: 0;
	margin: 0 0 20px;
}

h2.caps em {
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none
}

img.title_pic {
	margin:80px 0 0;
}

.video_surround {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.video_surround iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.full_pic_surround {
	width:100%;
	float: left;
	margin: 0 0 50px;
}

.full_pic_surround.nomarg {
	width:100%;
	float: left;
	margin: 0;
}

.full_pic_surround img {
	width:100%;
}


/************************************************ Eco ************************************************/

main.green {
	width:100%;
	float: left;
	background: #036048;
	color: #fff;
}

.flex_container.flexstart {
  align-items:flex-start;
}

main.green p.caps.large.line::after {
  background: #fff;
}

.text_pic.center {
  justify-content: center;
}

.hero_ecologi {
	width: 100%;
	position: relative;
	height: auto;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: end;
	z-index: -1;
	float: left;
	overflow: hidden;
}

.hero_ecologi .icon {
	width:30%;
	position: absolute;
	top: 20%;
	left: 5%;
}

.hero_ecologi img {
	width:100%;
}

p.caps.large.line.ecomarg {
  margin-top:50px;
}

p.caps.large.line.eco {
  font-size: 40px;
}

p.caps.large.line.eco em {
  font-size: 36px;
}

.flex_left.eco,
.flex_right.eco {
  width: 50%;
}

.stat_area {
	width:100%;
	padding: 0 15%;
	display: flex;
	flex-flow: row nowrap;
	text-align: center;
}

.stat_area.toppadd {
	padding-top: 100px;
	padding-bottom: 100px;
}

.stat_area.grey {
	background: #eceff1;
}

.stat_area img.icon {
	width:65%;
}

.stat_area p.center {
	margin:0 auto;
	width: 100%;
}

.text_pic p.stat_small {
	line-height: 0.7em;
	text-align: center;
}

.text_pic p.stat_small.large {
	width:100%;
}

.text_pic p.stat_small.left {
	text-align: left;
}

.text_pic p.stat_small em {
	font-size: 20px;
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none;
	letter-spacing: 1px;
}

.text_pic p.stat_small.large em {
	font-size: 26px;
}


/************************************************ Timeline ************************************************/

.timeline_title {
	width:100%;
	text-align: center;
	padding: 80px 0 50px;
	display: flex;
	justify-content: center;
	position: sticky;
	top: 0;
}

.timeline_title img {
	width:60%;
}

.timeline_nav {
	width:100%;
	display: flex;
	justify-content: center;
}

.timeline_nav ul {
	width:100%;
	display: flex;
	flex-flow: row nowrap;
	text-align: center;
	justify-content: center;
}

.timeline_nav ul li {
	font-family: "nocturne-serif", serif;
	font-size:30px;
	font-weight: bold;
	color: #415f73;
}

.timeline_nav ul li a {
	color: #415f73;
	opacity: 0.2;
}

.timeline_nav ul li a:hover {
	color: #415f73;
	opacity: 0.9;
	text-decoration: none;
}

.timeline_nav ul li a.active {
	opacity: 1;
}

.timeline_nav ul li:first-child,
.timeline_nav ul li:last-child {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 200;
	font-size:50px;
	line-height: 0.6em;
}

.timeline_nav ul li:first-child a,
.timeline_nav ul li:last-child a {
	opacity: 1;
}

.timeline_nav ul li:first-child a:hover,
.timeline_nav ul li:last-child a:hover {
	opacity: 0.7;
}

.timeline_nav ul li:first-child {
	margin-right:30px;
}

.timeline_nav ul li:last-child {
	margin-left:30px;
}

.timeline_nav ul li:nth-child(3) {
	padding: 0 90px;
	position: relative;
}

.timeline_nav ul li:nth-child(3):before {
	background:#415e72;
	height: 2px;
	width:40px;
	content: '';
	left: 25px;
	top: 50%;
	position: absolute;
}

.timeline_nav ul li:nth-child(3):after {
	background:#415e72;
	height: 2px;
	width:40px;
	content: '';
	right: 25px;
	top: 50%;
	position: absolute;
}

.timeline_container {
	width:100%;
	margin: 120px 0 0;
}

.timeline_flex {
	width:100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 80px;
}

.timeline_flex.grey {
	background:#eceff1;
}

.timeline_flex.grey.padd {
	padding:80px 0;
}

.timeline_flex.grey.paddtoplarge {
	padding-top:130px;
}

.timeline_flex.nomarg {
	margin:0;
}

.timeline_flex_inner.marg {
	margin: 0 0 80px;
}

.timeline_flex.minusmarg {
  margin-top: -150px;
}

.timeline_flex_inner {
	width:70%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	position: relative;
	/*column-gap: 4%;*/
}

.timeline_flex_inner.minusmarg {
	margin-bottom: -100px;
	align-items: end;
}

.timeline_intro {
	position: absolute;
	left: -9%;
}

.timeline_intro h2,
.timeline_text h2 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1em;
	font-size: 42px;
}

.timeline_intro h2 em,
.timeline_text h2 em {
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none;
}

.timeline_text h3 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1em;
	font-size: 100px;
	color: #415e72;
	opacity: 0.2;
}

.timeline_text p {
	text-align: match-parent;
}

.timeline_text {
	width:50%;
}

.timeline_text.padd {
	padding:40px 0 0;
}

.timeline_pic {
	width: 45%;
	padding: 0 5%;
}

.timeline_pic.margbottom {
	margin: 0 0 -160px;
	align-items: flex-end;
	align-content: flex-end;
	display: flex;
}

.timeline_pic img {
  width: 82%;
}
.timeline_pic img.small {
  width: 20%;
}
.timeline_pic img.small-30 {
  width: 30%;
}
.timeline_pic img.small-40 {
  width: 40%;
}
.timeline_pic img.small-50 {
  width: 50%;
}
.timeline_pic img.small-60 {
  width: 60%;
}
.timeline_pic img.large {
  width: 100%;
}
.timeline_pic img.minusmarg {
  margin-top: -70px;
}

.timeline_pic.right,
.timeline_text.right {
	text-align:right;
}

.timeline_pic.left,
.timeline_text.left {
	text-align:left;
}


/************************************************ News ************************************************/

.topline_surround {
	border-top: 2px solid #425e73;
	padding: 100px 5% 0;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
}

.news_surround {
	display: flex;
	flex-flow: row wrap;
	width:100%;
	margin: 80px 0 0;
	column-gap: 3.33%;
}

.news_box {
	width:31%;
	margin: 0 0 70px;
	position: relative;
}

.news_box a img {
	transition: all 0.3s ease-out;
}

.news_box a img:hover {
	opacity:0.8;
}

.news_box p {
	padding: 0;
}

.news_box .btn {
  margin: 30px 0 0;
}


/************************************************ Brands ************************************************/

.brands_subnav {
	position: fixed;
	top: 0;
	margin: 0 1%;
	z-index: 9;
	transition: all 500ms;
	width: 98%;
	height: 0;
	opacity: 0;
	background: #fff;
	padding: 20px 0 0;
}

.brands_subnav.fixed {
	opacity:1;
	height: auto;
	top: 0;
}

.brands_subnav .blue_logo {
	margin: 0 auto 15px;
	width: 0;
	top: -25px;
	opacity: 0;
}

.brands_subnav.fixed .blue_logo {
	margin: 0 auto 15px;
	width: 242px;
	transition: opacity 200ms 200ms,top 200ms 200ms;
	top: 0;
	opacity: 1;
}

.brand_filters {
	position: relative;
	width: 100%;
	background-color:#425d72;
	display: flex;
	align-items: stretch;
	top: -25px;
	opacity: 0;
	transition: opacity 500ms 200ms,top 500ms 200ms;
}

.brands_subnav.fixed .brand_filters {
	transition: opacity 200ms 200ms,top 200ms 200ms;
	top: 0;
	opacity: 1;
	overflow-x: scroll;
}

.brand_filters h5 {
	display:inline-block;
	vertical-align: top;
	background:#e8e8e2;
	color:#425d72;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: normal;
	padding: 12px 20px;
	font-size: 15px;
}

#filters {
	display: flex;
	justify-content: stretch;
}

#filters .button,
#filters button{
	background-color:#425d72;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	border: none;
	display: inline-block;
	height: auto;
	padding: 0 30px;
	text-align: center;
	line-height: 1.5em;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 0;
	cursor: pointer;
	box-sizing: border-box;
	margin: 0;
	font-weight: normal;
	font-size: 13px;
}

.row.brands {
	padding: 20px 5%;
}

.brand_section {
	width: 100%;
	position: relative;
}

.brand_title_surround {
	position: sticky!important;
	/*top: 50%;
	transform: translateY(-50%);*/
	top: 120px!important;
	padding:0;
	text-align: center;
	width: 100%!important;
	transform: scale(1);
	margin-top: 0;
	margin-bottom: 0;
	transition: linear 200ms;
}

.brand_section_title {
	width: 100%!important;
}

.brand_section_title img {
	transform:inherit;
}

.brand_section_title.brand_item:hover img {
  transform:inherit;
}

.brand_grid {
	width: 100%;
	padding: 50px 15%;
	display: flex;
	justify-content: stretch;
	column-gap: 23%;
	box-sizing: border-box;
	z-index: 2;
	position: relative;
	flex-flow: row wrap;
}

.brand_item {
	/*width:18%;*/
	width:14%;
	text-align: center;
	margin-bottom: 100px;
	position: relative;
	transition: linear 200ms;
	cursor: pointer;
}

.gutter-sizer { width: 20%; height: 100px; }

.brand_item a {
	position: absolute;
	width:100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.brand_item img {
transition: linear 200ms;
}

.brand_item:hover img {
  transform: scale(1.1);
}

.brand_item h3 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 26px;
	margin: 10px 0 0;
}

.brand_item p.uppercase {
	font-size:18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0 0 10px;
}

.brand_item p.small {
	font-size:14px;
	letter-spacing: 1px;
	padding: 0;
}

/************************************************ Brand Modal ************************************************/

.brandmodal {
  display: none;
}
.brandmodal {
	padding: 50px 5% !important;
	width: 100%;
	height: 100%;
	background: #000;
	background-size: cover!important;
}
.brandmodal.jawbox1bg {
	background:url("../images/brands/jawbox-bg.jpg") no-repeat center;
}
.brandmodal.jawbox2bg {
	background:url("../images/brands/jawbox2-bg.jpg") no-repeat center;
}
.brandmodal.jawbox3bg {
	background:url("../images/brands/jawbox3-bg.jpg") no-repeat center;
}
.brandmodal.jawbox4bg {
	background:url("../images/brands/jawbox4-bg.jpg") no-repeat center;
}
.brandmodal.ginato1bg {
	background:url("../images/brands/ginato1-bg.jpg") no-repeat center;
}
.brandmodal.ginato2bg {
	background:url("../images/brands/ginato2-bg.jpg") no-repeat center;
}
.brandmodal.ginato3bg {
	background:url("../images/brands/ginato3-bg.jpg") no-repeat center;
}
.brandmodal.ginato4bg {
	background:url("../images/brands/ginato4-bg.jpg") no-repeat center;
}
.brandmodal.ukiyo1bg {
	background:url("../images/brands/ukiyo1-bg.jpg") no-repeat center;
}
.brandmodal.ukiyo2bg {
	background:url("../images/brands/ukiyo2-bg.jpg") no-repeat center;
}
.brandmodal.ukiyo3bg {
	background:url("../images/brands/ukiyo3-bg.jpg") no-repeat center;
}
.brandmodal.kirker1bg {
	background:url("../images/brands/kirker1-bg.jpg") no-repeat center;
}
.brandmodal.bowsaw1bg {
	background:url("../images/brands/bowsaw1-bg.jpg") no-repeat center;
}
.brandmodal.bowsaw2bg {
	background:url("../images/brands/bowsaw2-bg.jpg") no-repeat center;
}
.brandmodal.bornirish1bg {
	background:url("../images/brands/bornirish1-bg.jpg") no-repeat center;
}
.brandmodal.chinnery1bg {
	background:url("../images/brands/chinnery1-bg.jpg") no-repeat center;
}
.brandmodal.kadoo1bg {
	background:url("../images/brands/kadoo1-bg.jpg") no-repeat center;
}
.brandmodal.kadoo2bg {
	background:url("../images/brands/kadoo2-bg.jpg") no-repeat center;
}
.brandmodal.kadoo3bg {
	background:url("../images/brands/kadoo3-bg.jpg") no-repeat center;
}
.brandmodal.kadoo4bg {
	background:url("../images/brands/kadoo4-bg.jpg") no-repeat center;
}
.brandmodal.kadoo5bg {
	background:url("../images/brands/kadoo5-bg.jpg") no-repeat center;
}
.brandmodal.kadoo6bg {
	background:url("../images/brands/kadoo6-bg.jpg") no-repeat center;
}
.brandmodal.highball1bg {
	background:url("../images/brands/highball1-bg.jpg") no-repeat center;
}
.brandmodal.highball2bg {
	background:url("../images/brands/highball2-bg.jpg") no-repeat center;
}
.brandmodal.highball3bg {
	background:url("../images/brands/highball3-bg.jpg") no-repeat center;
}
.brandmodal.redbonny1bg {
	background:url("../images/brands/redbonny1-bg.jpg") no-repeat center;
}
.brandmodal.peddlers1bg {
	background:url("../images/brands/peddlers1-bg.jpg") no-repeat center;
}
.brandmodal.peddlers2bg {
	background:url("../images/brands/peddlers2-bg.jpg") no-repeat center;
}
.brandmodal.peddlers3bg {
	background:url("../images/brands/peddlers3-bg.jpg") no-repeat center;
}
.brandmodal.condesa1bg {
	background:url("../images/brands/condesa1-bg.jpg") no-repeat center;
}
.brandmodal.condesa2bg {
	background:url("../images/brands/condesa2-bg.jpg") no-repeat center;
}
.brandmodal.heavensdoor1bg {
	background:url("../images/brands/heavensdoor1-bg.jpg") no-repeat center;
}
.brandmodal.heavensdoor2bg {
	background:url("../images/brands/heavensdoor2-bg.jpg") no-repeat center;
}
.brandmodal.heavensdoor3bg {
	background:url("../images/brands/heavensdoor3-bg.jpg") no-repeat center;
}
.brandmodal.gunpowdergin1bg {
	background:url("../images/brands/gunpowdergin1-bg.jpg") no-repeat center;
}
.brandmodal.gunpowdergin2bg {
	background:url("../images/brands/gunpowdergin2-bg.jpg") no-repeat center;
}
.brandmodal.gunpowdergin3bg {
	background:url("../images/brands/gunpowdergin3-bg.jpg") no-repeat center;
}

.modal_logo {
	width:210px;
	position: absolute;
	top: 30px;
	right: 3%;
}
.brand_surround {
	width:100%;
	padding: 0;
}
.brand_content_left {
	width:40%;
	float: left;
	margin: 80px 0;
}
.brand_content_right {
	width:28%;
	float: left;
	position: relative;
	margin: 100px 0 0;
	transition: linear 500ms;
	opacity: 0;
}
.fancybox-slide--current .brand_content_right {
	width:30%;
	opacity: 1;
	margin: 50px 0 0;
}
.brand_content_left img {
	margin:0 0 30px;
	width:160px; 
}
.brandmodal .no-gutters > .col,
.brandmodal .no-gutters > [class*=col-] {
  padding: 0;
}
.brandmodal .bottle-image {
  position: absolute;
  object-fit: cover;
  object-position: top;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.brandmodal .brandmodal-header,
.brandmodal .brandmodal-body {
  padding: 0 3rem;
}
.brandmodal .brandmodal-header {
  background-color: #fcc046;
  border: none;
  border-radius: 0;
  color: #121212;
  display: block;
}
.brandmodal .brandmodal-header * {
  margin: 0;
}
.brandmodal .brandmodal-body {
	color: #fff;
}
.brandmodal .brandmodal-body.dark {
	color: #000;
}

.brandmodal .brandmodal-body p.large {
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 22px;
	line-height: 1.3em;
}

.brandmodal .brandmodal-body p {
	font-size: 16px;
}

.brandmodal .fancybox-button[data-fancybox-close] {
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	top: 25px;
	padding: 0 10%;
}

.brandmodal .fancybox-button[data-fancybox-close] svg {
	display: none;
}

.brandmodal .fancybox-button[data-fancybox-close]:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	content: '‹ Back to Portfolio';
	top: 0;
	color: #fff;
	font-weight: normal;
	font-size:14px;
	letter-spacing: 1px;
}

.brandmodal.olesmokybg1 .fancybox-button[data-fancybox-close]:before,
.brandmodal.fluerebg1 .fancybox-button[data-fancybox-close]:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	content: '‹ Back to Portfolio';
	top: 0;
	color: #000;
	font-weight: normal;
	font-size:14px;
	letter-spacing: 1px;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.brand_multiple {
	width:100%;
	display: flex;
	flex-flow: row wrap;
	margin:0 0 30px;
	float: left; 
}

.brand_multiple.margtop {
	margin:100px 0 30px;
}

.brand_multiple img {
	width:100%;
}

.brandmodal .btn {
	color: #fff;
	background: none;
	font-size: 13px;
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-family: "stolzl", Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	border: 1px solid #fff;
	padding: 12px 30px;
	margin: 15px 0 0;
}

.brandmodal .btn:hover {
	color: #425e73;
	background: #fff;
	text-decoration: none;
}

.brandmodal .dark .btn {
	color: #000;
	border: 1px solid #000;
}

.brandmodal .dark .btn:hover {
	color: #fff;
	background: #000;
	text-decoration: none;
}


/************************************************ People Modal ************************************************/


.modal {
  display: none;
}
.team_member_surround {
	width:100%;
	padding: 0;
}
.modal_left {
	width:50%;
	float: left;
}
.modal_right {
	width:50%;
	float: left;
	position: relative;
}
.modal .no-gutters > .col,
.modal .no-gutters > [class*=col-] {
  padding: 0;
}
.modal.team-member {
  padding: 0 !important;
  width: 90%;
  max-width: 1200px;
}
.modal.team-member .team-image {
  position: relative;
  object-fit: cover;
  object-position: top;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.modal.team-member .modal-header,
.modal.team-member .modal-body {
  padding: 3rem;
}
.modal.team-member .modal-header h3 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 50px;
	line-height: 1em;
}
.modal.team-member .modal-header h3 em {
  font-family: "adobe-text-pro", serif;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
	font-size: 36px;
}
.modal.team-member .modal-header {
  background-color: #425e73;
  border: none;
  border-radius: 0;
  color: #fff;
  display: block;
}
.modal.team-member .modal-header * {
  margin: 0;
}
.modal.team-member .modal-body {
  background-color: #fff;
}

.fancybox-button[data-fancybox-close] {
  width: 60px;
  height: 60px;
}

@media only screen and (max-width: 667px) {
  .modal.team-member .modal-header,
.modal.team-member .modal-body {
    padding: 1.5rem;
  }
}
.popup {
  display: none;
  width: 50%;
  max-width: 600px;
}

@media only screen and (max-width: 1024px) {
  .popup {
    max-width: none;
    width: 90%;
  }
}

/************************************************ Contact ************************************************/


.contact_section {
	background:#eceff1;
	position:relative;
	float:left;
	width:100%;
	margin:0;	
}

.contact_section .brand_section_inner {
	padding:50px 8% 50px 0;	
	margin: 0;
}

.contact_section_inner {
	float:left;
	width:100%;
	padding:50px 5% 80px;
	box-sizing:border-box;
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
}

.contact_left {
	order:1;
	width:48%;
	margin:0;
	position:relative;
	left:0;	
}

.contact_text {
	order:2;
	width:44%;
	margin:0;
	position:relative;
	padding-left:8%;
}

.contact_titles {
	width:100%;
	float:left;	
}

.contact_titles h3 {
	text-transform:uppercase;
	letter-spacing:1px;
	font-size:50px;
	font-weight:500;
	color:#000;
	margin:0 0 20px;
}

.contact_titles h4 {
	text-transform:uppercase;
	letter-spacing:3px;
	font-size:32px;
	font-weight:500;
	color:#91795d;
}

.contact_titles h5 {
	width:100%;
	float:left;
	font-size:36px;
	box-sizing:border-box;
	margin:25px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
}

.contact_titles h5 em {
	font-family: "adobe-text-pro", serif;
	font-weight: 600;
	font-style: italic;
	text-transform: none;
	font-size: 36px;
}

.contact_columns {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	width:100%;
	float:left;
	margin:60px 0 0;
	order:4;
}


/************************************************ Form Elements and General Styling ************************************************/

.general_content {
	width:90%;
	float:left;
	margin: 0 5% 70px;
}

.general_content h1,
.general_content h2,
.general_content h3,
.general_content h4 {
	font-size:20px;
	margin: 0 0 25px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.general_content p {
	font-size:16px;
	padding: 0 0 25px;
}

.general_content ul li {
	width:95%;
	float:left;
	line-height:1.5em;
	font-size:16px;
	list-style-type:disc;
	margin-left:20px;
	font-weight: 200;
	font-family: "stolzl", Arial, Helvetica, sans-serif;
}

.general_content ul {
	width:100%;
	float:left;
	margin:0 0 30px;
	font-family: "stolzl", Arial, Helvetica, sans-serif;
}

.general_content h3 {
	padding:0;
	margin: 0 0 10px;
	font-size:26px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }
  tr:nth-child(odd) {
	background:#f4f4f4;  
  }


/************************************************ Contact Form Elements ************************************************/


.form_item {
    display: inline-block;
    margin:0;
    vertical-align: top;
    width: 100%;
}

.form_item label,
.form_item_message label{
   display:block;
   font-size:16px;
   margin:0 0 7px;
}

.form_item input {
    border:1px solid #dadada;
	box-sizing: border-box;
    float: left;
    font-size: 16px;
    height: 45px;
    margin: 0 0 20px;
    padding: 12px 0 10px 10px;
    width: 100%;
	border-radius:3px;
}

.form_item_message textarea {
	font-size: 16px;
	border:1px solid #dadada;
	height:120px;
	width:100%;
	padding: 12px 0 10px 10px;
	box-sizing: border-box;
	border-radius:3px;
	margin:0 0 20px;
}

.form_item.select {
	width:100%;
	position:relative;
}

.form_item.select select {
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;/* remove default arrow */
	width:100%;
	height:60px;
	border:2px solid #eaf0f2;
	border-radius:3px;
	box-sizing:border-box;
	font-size:16px;
	padding:8px 15px 8px 15px;
	position:relative;
	box-shadow:none;
	background:url(../images/downarrow.png) no-repeat center right #fff;
	background-size:30px;
}

/* Customize the label (the container) */
.form_item .labelcontainer {
  display: inline-block;
  position: relative;
  margin-left: -22px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  padding-bottom:0;
  margin:0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form_item .labelcontainer label.error {
    margin: 5px 0 0 36px;
}

/* Hide the browser's default checkbox */
.labelcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: auto;
    padding: 0;
    margin: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #4b6d50;
  border:none;
  border-radius:3px;
}

/* On mouse-over, add a grey background color */
.labelcontainer:hover input ~ .checkmark {
  background-color: #4b6d50;
}

/* When the checkbox is checked, add a blue background */
.labelcontainer input:checked ~ .checkmark {
  background-color: #f6e2a3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.labelcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.labelcontainer .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #464e78;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 

.form_item input:focus,
.form_item_message textarea:focus {
	border:1px solid #7bcef2!important;
}

.form_item label.warning,
.form_item_message label.warning {
	color:#F00;	
}

.submit_surround {
	width:100%;
	float:left;
}

input.submit {
	cursor:pointer;
	color: #425e73;
	background: none;
	font-size: 18px;
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	border: 1px solid #425e73;
	padding: 7px 30px;
	margin: 15px 0 0;
	height: auto;
	border-radius:0;
	line-height: 1em;
}

input.submit:hover {
	color: #fff;
	background: #425e73;
	text-decoration: none;
}

.form_submit {
	float:left;
	width:100%;
}

/************************************************ Drinks Slider ************************************************/

#brands .drinks_slider {
	display:none;
}

.drinks_slider {
	width: 100%;
	float: left;
	padding: 0 8%;
	box-sizing: border-box;
	margin-bottom: -50px;
	transition: all 0.3s ease-out;
}

.drinks_slider .slide img {
	transform:scale(0.95);
	transition: all 0.3s ease-out;
}

.drinks_slider .slide img:hover {
	transform:scale(1);
	transition: all 0.3s ease-out;
}


/************************************************ Footer ************************************************/

footer {
	width:100%;
	float:left;
	background:#425e73;
	padding:200px 5% 80px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer_logo {
	width:22%;
	float:left;
	margin:0 0 50px;
}

.footer_logo img {
	width:100%;
	float:left;
	transition: all 0.3s ease-out;
}

.footer_logo a:hover img {
	opacity:0.7;
}

.footer_content {
	width:50%;
	float:right;
	display:flex;
	justify-content:flex-start;
	flex-wrap:no-wrap;
	margin:0 0 20px 10%;
}

.f_col1 {
	width:48%;
	padding:0 3% 0 0;
	box-sizing:border-box;	
}

.f_col1.last {
	padding:0;	
}

.f_col1 p {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	padding: 0 0 8px;	
}

.f_col1 ul {
	width:100%;
	float:left;
	margin:0 0 30px;
}

.f_col1 ul li {
	width:100%;
	float:left;
	line-height:1.7em;
}

.f_col1 ul li a {
	width:100%;
	float:left;
	margin:0 0 10px;
	font-size:12px;
	color:#fff;
	font-weight:300;
	letter-spacing:1px;
	text-transform: uppercase;
}

.f_col1 ul li a strong {
	font-weight:bold;
}

.f_col1 ul li a:hover {
	text-decoration:none;
	color:#fff;
	opacity:0.7;
}

.footer_partner_box {
	width:100%;
	float:left;
	margin:0 0 50px;	
}

.footer_partner_box img {
	width:250px;
	float:left;	
}

.footer_bottom {
	width:100%;
	float:left;
	text-align:center;
	color:#fff;
	line-height:1.5em;
	text-transform:uppercase;
	font-size:11px;	
	letter-spacing: 1px;
	padding: 50px 0 0;
}

.footer_bottom a {
	text-decoration:underline;
	color: #fff;
}

.footer_bottom a:hover {
	text-decoration:none;
	color: #fff;
}


/************************************************ Responsive ************************************************/

@media only screen and (max-width: 1300px) {

.colour_box .text p {
    font-size: 26px;
}
	
}

@media only screen and (max-width: 1200px) {
	
header.page_header #logo {
	margin: -8px 2% 0;
	flex-basis: 500px;
}

.flex_text.small-70 {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.value_text {
	padding: 50px 0% 50px 3%;
	margin-right: 10%;
}

.slider-nav {
	width: 80%;
	margin: 0 auto 50px;
}
	
.text_pic p span.large {
  font-size: 80px;
  line-height: 1em;
}
	
.contact_columns div {
	width:30%;
}
	
}

@media only screen and (max-width: 1100px) {
	
.brand_grid {
  width: 100%;
  padding: 20px 5%;
}
	
.brand_item {
  width: 18%;
margin-bottom: 50px;
}
	
.gutter-sizer {
  width: 20%;
  height: 50px;
}

}

@media only screen and (max-width: 1023px) {

.row {
    width: 100%;
    float: left;
    padding: 0 5%;
    box-sizing: border-box;
}
	
.row.padd {
  padding: 50px 5%;
}
	
.row.toppadd {
  padding: 180px 5% 0;
}
	
.row_inner {
	width: 100%;
	min-width: 0;
	float: left;
	margin: 0;
}
	
img.title_pic {
  margin: 30px 0 0;
}
	
header.page_header #logo {
  margin: -8px auto 0;
  flex-basis: 280px;
}

/* Mobile Nav */

#brands a.openmenu.fixed {
  display:none;
}	
	
a.openmenu {
  position: fixed;
  right: 5%;
  font-size: 22px;
  color: #fff;
  z-index: 100;
  top: 42px;
  display: block;
}

a.openmenu.fixed {
	position:fixed;
	right:5%;
	font-size:22px;
	color:#fff;
	z-index:100;
	top:17px;
}

/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 30px;
  height: 45px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #e8e8e2;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.openstate span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.openstate span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.openstate span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Menu style */
.overlay .nav_surround {
	width:100%;
	text-align:center;
	float:left;
	padding:0 5% 20px;
	height:100%;
	overflow-y:auto;
	box-sizing:border-box;
}
	
.overlay #mob_logo {
	width:250px;
	margin: 50px auto;
}	

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-family: "nocturne-serif", serif;
	font-weight: 700;
	font-style: normal;
	width:100%;
}

.overlay ul li {
	display: block;
	/*height: 20%;
	height: calc(100% / 5);*/
	line-height:1.5em;
	font-size:28px;
	width:100%;
	float:left;
	margin: 0 0 10px;
}

.overlay ul li ul {
	display: none;
}

.overlay ul li a {
	display: block;
	color: #e8e8e2;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	float:left;
	width:100%;
}

.overlay ul li ul li {
	font-size:18px;
	font-family: "stolzl", Arial, Helvetica, sans-serif;
	font-weight: 200;
	letter-spacing: 2px;
}

.overlay ul li a:hover,
.overlay ul li a:focus,
#story .overlay ul li a.storynav,
#whiskey .overlay ul li a.whiskeynav,
#drinks .overlay ul li a.drinksnav,
#limited_edition .overlay ul li a.limitednav,
#workofart .overlay ul li a.workofartnav,
#contact .overlay ul li a.contactnav,
.overlay ul li ul li a.selected {
	color: #e8e8e2;
	text-decoration:underline;
}
	
header .header_side {
	display: none;
}
	
h1.hp_title {
  padding: 0;
}
	
.hp_flex {
  flex-flow:wrap;
}
.pic {
  width: 100%;
}
	
.hp_padd_bottom {
	margin-bottom:40px;
}
.hp_padd_top {
	margin-bottom:40px;
}
.hp_nopadd {
	margin-bottom: 0!important;
}
.text_box.left.order2 {
  order: 2;
}
.text_pic.padd.mobnopadd {
  margin: 0;
}
	
.hp_left,
.hp_right {
  width: 100%;
	margin: 0 0 50px;
}
	
.pic.large {
  width: 62%;
  margin-right: 0;
}
	
.text_box.small {
  width: 30%;
}
	
.timeline_flex_inner {
  width: 90%;
}
	
.hero_ecologi .icon {
  width: 35%;
  position: absolute;
  top: 23%;
  left: 2%;
}
	
.flex_container.padd {
  padding: 0 5%;
}
	
p.caps.large.line {
  font-size: 54px;
}
	
.flex_container.flexstart {
	flex-flow: row wrap;
}	

.flex_left.padd, .flex_right.padd {
  padding: 40px 5.5% 0;
}
	
.flex_left.small.nobpadd, .flex_right.small.nobpadd {
  padding-bottom: 0;
  width: 100%;
}	
	
.flex_container.flexstart .flex_right {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  position: relative;
	margin: 50px 0 0;
}
	
.flex_left.small, .flex_right.small {
  padding: 60px 7.5% 60px 0;
  width: 100%;
}
	
.flex_container.bottompadd {
  padding: 0 5%;
}
	
#kirkerwhiskey h1.caps, #kirkerwhiskey p.caps {
  font-size: 25px;
}
	
h1.caps, p.caps {
  font-size: 32px;
}
	
.slider-nav {
  width: 90%;
  margin: 0 auto 50px;
}
	
.flex_container.grey {
  background: #eceff1;
  padding-bottom: 30px;
}
	
.text_box.left {
  width: 100%;
	text-align: center;
}
	
.text_box.right {
  order: 2;
	width: 100%;
	text-align: center;
}
	
.stat_area {
  width: 100%;
  padding: 50px 5%;
  display: flex;
  flex-flow: row wrap;
  text-align: center;
	justify-content: center;
}
	
.stat_area img.icon {
  width: 30%;
}
	
.brand_item h3 {
  font-size: 20px;
}
.brand_item p.uppercase {
  font-size: 15px;
}
.brand_item p.small {
  font-size: 12px;
}
	
.brandmodal .brandmodal-header, .brandmodal .brandmodal-body {
  padding: 0 3rem 0 0;
}
	
.brand_content_left {
  width: 55%;
  float: left;
  margin: 80px 0;
}
	
.brand_content_right {
  width: 34%;
}
	
.fancybox-slide--current .brand_content_right {
  width: 40%;
  opacity: 1;
  margin: 50px 0 0;
}
	
.brandmodal .fancybox-button[data-fancybox-close] {
  width: auto;
  height: auto;
  position: absolute;
  left: 5%;
}
	
.news_box {
  width: 48%;
  margin: 0 0 70px;
  position: relative;
}
	
.news_surround {
  margin: 50px 0 0;
  column-gap: 4%;
}

	
footer {
  padding: 120px 5% 40px;
}

.footer_logo {
  width: 40%;
  float: left;
  margin: 0 0 50px;
}
	
.footer_content {
  width: 100%;
  float: right;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 auto 20px;
  text-align: center;
}	
	
.footer_bottom {
  padding: 0;
}
	
}

@media handheld, only screen and (max-width: 767px) {

.general_columns {
    justify-content: space-between;
    flex-wrap: wrap;
}

.general_columns .col1 {
	width:50%;
	box-sizing:border-box;
	padding:0 5% 3em 0;	
}	
	
footer {
    padding: 80px 5% 80px;
}
	
}

/************************************************ Mobile ************************************************/

@media handheld, only screen and (max-width: 600px) {
	
.mob_show {
	width:100%;
	display: block!important;
	margin: 0 0 40px;
}
	
.mob_hide {
	display: none!important;
}
	
.modal.team-member {
  padding: 0 !important;
  width: 100%;
  max-width: 1200px;
}
	
.contact_titles h5 {
  margin: 35px 0 15px;
}
	
.contact_titles h5 br {
  display:none;
}
	
.timeline_container .mob_show {
	margin: 10px 0 20px;
}
	
.mob_show.team {
	margin: 0 0 10px;
}
	
img.title_pic {
  margin: 0;
}
	
.row.toppadd {
  padding: 120px 5% 0;
}
	
h1.hp_title {
  font-size: 31px;
}

header.page_header #logo {
  margin: -7px 0 0 -20px;
  flex-basis: 220px;
}	
	
header.page_header {
  position: fixed;
  top: 0;
}
	
header.page_header > .header_wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  margin: 0;
  display: flex;
  justify-content: center;
}
	
a.openmenu {
  top: 17px;
}
	
.overlay ul li {
  font-size: 25px;
}
	
.overlay ul li ul li {
  font-size: 16px;
}
	
.hero_image img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
	
.pic {
  width: 100%;
}
	
.hp_left .pic_overlay {
  position: absolute;
  margin: auto;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  color: #fff;
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}
	
h3.hp_title {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "nocturne-serif", serif;
  font-weight: 700;
  font-style: normal;
  padding: 0;
  margin: 0;
}
	
.text_box.left {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
	
.text_box.small {
  width: 100%;
  margin: 0 0 30px;
}
	
.pic.large {
  width: 100%;
  margin-right: 0;
}
	
.flex_container {
  flex-flow: row wrap;
}
	
.flex_left,
.flex_right {
  width: 100%;
}

.timeline_nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 5%;
  box-sizing: border-box;
}	
	
.timeline_nav ul li:nth-child(3) {
  padding: 0 40px;
  position: relative;
}
	
.timeline_nav ul li:nth-child(3)::before {
  background: #415e72;
  height: 2px;
  width: 15px;
  content: '';
  left: 13px;
  top: 50%;
  position: absolute;
}
	
.timeline_nav ul li:nth-child(3)::after {
  background: #415e72;
  height: 2px;
  width: 15px;
  content: '';
  right: 13px;
  top: 50%;
  position: absolute;
}
	
.timeline_title {
  width: 100%;
  text-align: center;
  padding: 50px 0 35px;
  display: flex;
  justify-content: center;
}	
	
.timeline_title img {
  width: 90%;
}
	
.timeline_nav ul li {
  font-size: 20px;
}
	
.timeline_nav ul li:first-child, .timeline_nav ul li:last-child {
 display:none;
}
	
.timeline_container {
  width: 100%;
  margin: 60px 0 0;
}
	
.timeline_intro {
  position: relative;
  left: 0;
  margin: 0 0 30px;
}
.timeline_text h2 {
  font-size: 30px;
}
	
.timeline_flex {
  margin: 0 0 30px;
}
.timeline_flex.grey.padd {
  padding: 40px 0;
}
	
.timeline_flex_inner {
  width: 90%;
  flex-flow: row wrap;
}
	
.timeline_pic {
  width: 100%;
  padding: 0 5%;
  display: none;
}
	
.timeline_text {
  width: 100%;
}
	
.timeline_pic.right, .timeline_text.right {
  text-align: left;
}
	
p.caps.large.line {
  font-size: 42px;
}
p.caps.large.line em {
  font-size: 36px;
}
	
/*.flex_left.small, .flex_right.small {
  padding: 30px 7.5% 30px 0;
  width: 100%;
}*/
	
.flex_left.small, .flex_right.small {
  padding: 30px 0 0;
  width: 100%;
}
	
.row.lesspadd {
  padding: 0 5% 50px;
}
	
p.caps.large.line.light {
  font-weight: 500;
  font-size: 36px;
}
	
.slider-nav {
  width: 100%;
  margin: 0 auto 50px;
}
	
.flex_container.valuepadd {
  padding: 0;
}	
	
.flex_text.small-70 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
	
.value_content {
  margin: 0;
  position: relative;
}
	
.value_number {
  font-size: 90px;
}
	
.value_image {
  width: 100%;
  background-size: cover !important;
  height: 200px;
}
	
.value_text {
  padding: 50px 3% 50px 3%;
  margin-right: 10%;
  flex-flow: row wrap;
	width:100%;
}

.value_content.bg1::after,
.value_content.bg2::after {
    width: 100%;
}
	
.topline_surround {
  padding: 50px 5% 0;
}
	
.news_box {
  width: 100%;
  margin: 0 0 40px;
  position: relative;
}
	
p.caps.large.line {
  font-size: 42px;
  word-break: break-word;
}
	
.flex_left.eco, .flex_right.eco {
  width: 100%;
	margin: 0!important;
}
	
.hero_ecologi img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
	
.hero_ecologi .icon {
  width: 70%;
  position: absolute;
  top: 23%;
  left: 5%;
  height: auto;
}
	
.hero_ecologi .icon img {
  height: auto;
}
	
.flex_left.large-50, .flex_right.large-50 {
  width: 100%;
}
	
.flex_left.small-40, .flex_right.small-40 {
  width: 100%;
}
	
.contact_left {
  width: 100%;
}
	
.contact_text {
  order: 2;
  width: 100%;
  margin: 0;
  position: relative;
  padding-left: 0;
}
	
.contact_columns {
  margin: 30px 0 0;
}
	
.contact_columns div {
  width: 100%;
}
	
.contact_section_inner {
  padding: 50px 5% 30px;
}
	
.row.bottompadd {
  padding: 0 5% 50px;
}
	
h1.caps, p.caps {
  font-size: 32px;
}
	
#kirkerwhiskey h1.caps, #kirkerwhiskey p.caps {
  font-size: 25px;
}
	
.mob_bottom_padd {
		
}

#brand_slider .slick-slide {
  margin: 0 25px;
}
#brand_slider .slick-list {
	margin: 0 -25px;
}
	
.modal_logo {
  display: none;
}
	
.brand_item {
  width: 40%;
  margin-bottom: 30px;
}
	
.brand_surround {
  width: 100%;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
justify-content: center;
}
	
.brand_content_left {
  width: 100%;
  float: left;
  margin: 30px 0;
  order: 2;
	text-align: center;
	padding: 0;
}	
.brandmodal .bottle-image {
  position: relative;
}
.fancybox-slide--current .brand_content_right {
  width: 50%;
  opacity: 1;
  margin: 50px 0 0;
}
.brand_content_right {
  width: 40%;
  margin: 70px 0 0;
}
.brandmodal .brandmodal-header, .brandmodal .brandmodal-body {
  padding: 0;
}
	
.gutter-sizer {
  width: 10%;
  height: 30px;
}
	
.general_intro {
    padding: 20px 10%;
}

.general_intro h1 {
    font-size: 30px;
	margin: 0;
}

.general_intro h2 {
    font-size: 17px;
}
	
.general_text {
    order: 2;
    width: 100%;
    margin: 0;
    position: relative;
    padding-left: 0;
}

.general_columns {
    margin:20px 0 0;
}

.general_columns .col1 {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 2em 5%;
}

.general_section .kg_box_logo {
    width: 200px;
    float: none;
    margin: 50px auto 0;
}

.general_left {
    order: 1;
    width: 100%;
    margin: 0 0 30px;
    position: relative;
    left: 0;
}

.general_section .general_text::before {
	display:none;	
}
	
.header_btn.mob {
	display:none;
}	
	
.team ul li {
    width: 48%;
    margin: 0 4% 4% 0;
}
.team ul li:nth-child(2n),
.team ul li:nth-child(4n) {
    margin: 0 0 4% 0;
}

.team_member_surround {
    width: 100%;
    padding: 0;
    display: flex;
    flex-flow: wrap;
}
.modal_left {
    width: 100%;
    float: left;
    order: 2;
}
.modal_right {
    width: 100%;
    float: left;
    position: relative;
    order: 1;
	line-height:0;
}
.modal.team-member .team-image {
    position: relative;
}

footer {
    padding: 100px 5% 30px;
}

.footer_logo {
    margin: 0 auto 30px;
	width: 250px;
}

.footer_content {
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
}

.f_col1 {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

}

@media handheld, only screen and (max-width: 350px) {
#logo {
    /*width: 176px;*/
    float: left;
    padding: 15px 0;
}
}

/* ========================================== */
/* ! Provide higher res assets for iPhone 4   */
/* ========================================== */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 


}