@font-face {
    font-family: 'decurion_regularregular';
    src: url('../fonts/decurion_regular-webfont.woff2') format('woff2'),
         url('../fonts/decurion_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*** START - Global ***/
html {
	font-size: 8px;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 2rem;
	margin: 0;
	padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	/*font-family: 'decurion_regularregular';*/
	font-family: 'Montserrat', sans-serif;
}

h2 {
	text-transform: uppercase;
    font-size: 8rem;
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
}

h3 {
	text-transform: uppercase;
    font-size: 6rem;
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
}

p {
	line-height: 1.8em;
}
/*** END - Global ***/

/*** START - Nav ***/
.section-menu {
	background: #2d261f;
	display: flex;
}

.nav-menu {
	display: flex;
	list-style-type: none;
	width: 100%;
	margin:0;
	padding: 0;
}

.nav-menu li {
	display: flex;
    flex-direction: column;
    flex: 4;
    text-align: center;
}

.nav-menu li a {
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 1px;
    padding: 4rem 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.nav-menu li a:hover {
	background: #522937;
}
/*** END - Nav ***/

/*** START - Containers ***/
.section {
	display: flex;
}

.section-min-height {
	min-height: 64vh;
}

.fullsize-container {
	height: 80vh;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.column {
	display: flex;
	flex-direction: column;
}

.column.column-3 {
	flex: 3;
}

.column.column-4 {
	flex: 4;
}

.column.column-5 {
	flex: 5;
}

.column.column-6 {
	flex: 6;
}

.column.column-7 {
	flex: 7;
}

.column.column-8 {
	flex: 8;
}

.column.column-9 {
	flex: 9;
}

.column-single {
	flex-basis: 100%;
	flex: 1;
}

.column-double {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 2;
}

.column-spacing {
	padding: 8rem;
	justify-content: center;
}

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

.row-wrapper {
	max-width: 1080px;
	margin: 0 auto;
}

.fullwidth.row {
	width: 100%;
}

.column-padding {
	padding: 10rem 6rem;
}

.cta-row {
	min-height: 24vh;
	padding: 8rem;
}

.text-container {
	padding: 8rem;
}

.image {
	width: 100%;
}

.fullwidth-image {
	width: 100%;
}
/*** END - Containers ***/

/*** START - Nicotine Warning ***/
.nicotine-warning {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    font-size: 4rem;
    font-family: Helvetica, Arial, sans-serif;
    height: 20vh;
    color: #ffffff;
    background: #000000;
    font-weight: 500;
    padding: 2rem;
}
/*** END - Nicotine Warning ***/

/*** START - Hero ***/
.hero {
	text-align: center;
    color: #202120;
    /*height: 60vh;
    background: url(../images/bearclaw-header.jpg);*/
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-overlay {
	background: rgba(33, 29, 29, 0.9);
}

.logo-container {
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}

.logo {
	display: block;
	margin: 0 auto;
    width: 240px;
}

.column-bg-image {
	background: url('../images/flavor-all-flavors.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
/*** END - Hero ***/

/*** START - Buttons ***/
.cta-button-container {
	margin: 0 auto;
}

.button {
	font-family: 'Inter', sans-serif;
	display: block;
    font-size: 3rem;
    padding: 3rem 4rem;
    margin: 3rem 0 0;
    background: #FFB500;
    color: #211D1D;
	text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 1rem;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.24);
}

/* Sweep To Right */
.hvr-sweep-to-right {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFD770;
	border-radius: 1rem;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #211D1D;
  border-radius: 1rem;
}

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*** END - Buttons ***/

/*** START - Background images ***/
.flavor-bg-apple {
	background: url(../images/flavor-apple-attack.jpg);
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.flavor-bg-straw-beary {
	background: url(../images/flavor-straw-beary.jpg);
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobile-image {
	display: none;
	width: 100%;
}
/*** END - Background Images ***/

/*** START - CTAs ***/
.cta-section h3 {
	font-size: 8rem;
	line-height: 150%;
	letter-spacing: 2px;
	margin: 2rem 0;
}

.dark-section {
	background: #2b2624;
	color: #ffffff;
}

.maroon-section {
	background: #522937;
	color: #ffffff;
}

.image-bg-container {
	min-height: 40vh;
}
/*** END - CTAs ***/

/*** START - Mobile ***/
@media screen and (max-width: 1000px) {
	.nicotine-warning span {
		font-size: 3rem;
	}

	.row {
		flex-direction: column;
	}

	.cta-row {
		padding: 4rem;
	}

	.column-spacing {
		padding: 4rem;
	}

	.cta-section h3 {
	    margin: 0 0 2rem 0;
	}

	.cta-button-container {
	    margin: 0;
	}

	.column-reverse {
		flex-direction: column-reverse;
	}

	/*** nav ***/
	.nav-menu {
		flex-direction: column;
	}

	.nav-menu li a {
		font-size: 3rem;
		padding: 3rem;
	}

	/*** type ***/
	h2 {
	    font-size: 5rem;
	}

	.cta-section h3 {
	    font-size: 4rem;
	}

	/*** column images ***/
	.mobile-image {
		display: block;
		width: 100%;
	}

	.flavor-bg-apple {
		background: none;
		padding: 0;
	}

	.flavor-bg-straw-beary {
		background: none;
		padding: 0;
	}

	.image-bg-container {
	    min-height: auto;
	}

	.column-bg-image {
		background: none;
		padding: 0;
	}
}
/*** END - Mobile ***/
