/*** Variable Setup ***/
:root {
    --red-color: #BE0008;
	--ff-pd-r: 'ProzaDisplay-Regular';
	--ff-pd-b: 'ProzaDisplay-Bold';
	--fw-l: 300;
    --fw-r: 400;
    --fw-b: 700;
}
/*** Variable Setup ***/

*, *::before, *::after{
    box-sizing: border-box;
}
*:focus{
    outline: none !important;
    box-sizing: none !important;
}
/*** Basic Setup ***/
html{
    line-height: normal;
    scroll-behavior: smooth;
}


body {
    color: var(--blue-color);
    font-family: var(--ff-pd-r);
    line-height: normal;
	font-size: 16px;
}
h1 {
}
h2 {	
}
h3 {
}
h4 {
}
h5 {
}
h6 {}
p {
	font-weight: var(--fw-l);
}
a{
	color: var(--blue-color);
}
a:hover, a:focus {
    text-decoration: none;
	color: var(--red-color);
}
body button:focus{
    outline: none;
}
img {
    max-width: 100%;
}
.h-100vh{
	height: 100vh;
}

/*** Home Page ***/
.section-main{
	background-image: url('../img/WFM_LP_Desktop_BG_warm.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-main h1{
	color: var(--red-color);	
    font-weight: bold;
	font-size: 2em;
	margin-bottom: 20px;
}
.amazon-link {
    display: inline-block;
    width: 80px;
}
.btn-red{
	background-color: var(--red-color);
	color: #fff;
	border-radius: 50px;
	padding: 0.5em 1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-right: 1em;
	font-size: .9em;
}
.btn-red:hover, .btn-red:focus{
	background-color: #000;
	color: #fff;
}
.header {
    top: 0;
    z-index: 1;
    width: 100%;
    left: 0;
}
.header .logo {
    width: 240px;
    margin: 1.6em 0 0 1.6em;
    display: inline-block;
}
.logo.desk{
		display: inline-block;
	}
	.logo.mobile{
		display: none;
	}
.about_txt{
	max-width: 400px;
}
.about-img {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -300px;
}
.imgbadge{
	position: absolute;
	right: 3em;
	width: 160px;
	top: 3em;
}
.links{
	display: flex;
	align-items: center;
}

.footer_links {
    position: absolute;
    bottom: 0;
    z-index: 9;
    width: 100%;
    border-top: 1px solid #fff;
}
.footer_links p{
	padding: 1em;
margin: 0;
}
.footer_links ul {
    padding: 1em 0 0 1.6em;
	text-align: right;
}
.footer_links ul li{
	display: inline-block;
}
.footer_links ul li a{color: #000;position: relative;padding-left: 3em;text-transform: uppercase;font-size: .9em;}
.footer_links ul li a:hover{
	color: var(--red-color);
}

/*** Home Page ***/

/*** Legal Page ***/
.legal-page {
	padding: 10em 0;
}
