@font-face {
    font-family: 'red-hat-display-light';
    src: url('../fonts/red-hat-display-light.woff2') format('woff2'),
        url('../fonts/red-hat-display-light.woff') format('woff'),
        url('../fonts/red-hat-display-light.svg#red-hat-display-light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:'red-hat-display-reg';
    src: url('../fonts/red-hat-display-regular.eot');
	src: url('../fonts/red-hat-display-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/red-hat-display-regular.woff2') format('woff2'),
		url('../fonts/red-hat-display-regular.woff') format('woff'),
		url('../fonts/red-hat-display-regular.svg#red-hat-display-reg') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2212;
}

@font-face {
    font-family:'red-hat-display-bold';
    src: url('../fonts/red-hat-display-bold.eot');
	src: url('../fonts/red-hat-display-bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/red-hat-display-bold.woff2') format('woff2'),
		url('../fonts/red-hat-display-bold.woff') format('woff'),
		url('../fonts/red-hat-display-bold.svg#red-hat-display-bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2212;
}

@font-face {
    font-family: 'scotch-text-roman';
    src: url('../fonts/ScotchText-Roman.eot');
    src: url('../fonts/ScotchText-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ScotchText-Roman.woff2') format('woff2'),
        url('../fonts/ScotchText-Roman.woff') format('woff'),
        url('../fonts/ScotchText-Roman.svg#ScotchText-Roman') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
	scroll-behavior: smooth;
	height:100%;
}

body {
	margin:0;
	padding:0;
	font-family:'red-hat-display-reg';
	font-size:1rem;
	color:#707070;
	height:100%;
}

p {
	margin:10px 0;
}

strong {
	font-family:'red-hat-display-bold';
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-family:'red-hat-display-bold';
	font-weight: normal;
}

header, section, main, footer {
	display: flex;
	padding:25px 5%;
	width:90%;
}

.footer {
	color:#FFF;
	flex-wrap:wrap;
	background:#5C6576;
	justify-content: space-between;
}

.sm {
	width:20%
}

.med {
	width:20%;
}

.lrg {
	width:30%;
}

.full-width {
	width:100%;
}

.flex-row {
	display: flex;
	justify-content: space-between;
}

.block-full-width {
    flex-direction: column;
    width: 70%;
    padding: 25px 15%;
}

.flex-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* HEADER */

.header {
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
	background:#FFF;
	height:80px;
	padding:15px 5%;
	z-index: 10;
	transition:all 0.3s ease-in-out;
}

.on-scroll {
    position: sticky;
	height:40px;
    top: 0;
}

.form-container {
    padding: 50px 5%;
    width: 40%;
    position: relative;
    z-index: 1;
}

.contact-us-form {
    background: #F8F8F8;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 30px 5px #ccc;
}

.site-logo {
	width:200px;
	height:80px;
	margin:0;
	transition:all 0.3s ease-in-out;
}

.scroll-logo {
	width:200px;
	height:40px;
	margin:0;
}

.nav-block {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav-item {
	margin:0 25px;
}

.nav-link {
    border-bottom: 2px solid #FFF;
    text-decoration: none;
    padding-bottom: 5px;
	color:#5C6576;
}

.active-link {
	border-bottom: 2px solid #A75346;
}

.nav-item:first-child {
	margin:0 25px 0 0;
}

.nav-item:last-child {
	margin:0 0 0 25px;
}

.elite-foods-logo {
	width:100%;
	height:100%;
	background:url("../images/elite-food-partners-logo.jpg") center left no-repeat;
	background-size:contain;
	display: block;
	text-indent:-9999px;
}

.menu-icon {
	position:absolute;
	display: none;
	right:5%;
	top:50%;
	transform:translate(-50%, 0);
}

/* HERO */

.hero {
	height:60%;
	display: flex;
	background:#CCCCCC;
	align-items: center;
	position:relative;
}

.pages {
    height: 30%;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    background: rgba(92,101,118,0.8);
    padding: 50px;
    display: flex;
    flex-direction: column;
    color: #FFF;
	width:30%;
	border-radius: 4px;
    height: fit-content;
	position: relative;
    z-index: 1;
}

.hero-title {
	margin:0;
	font-weight: normal;
	font-family: 'scotch-text-roman';
	font-size:2.5rem;
}

.hero-text:last-child {
	margin-bottom:0;
}

/* HEADINGS */

.heading {
	font-family: 'scotch-text-roman';
    font-weight: normal;
	margin:20px 0;
	color:#5C6576;
	font-size:2rem;
}

.heading:first-child {
	margin:0 0 20px 0;
}

/* TEXT */

.para {
	margin:20px 0;
}

.para:first-child {
	margin:0 0 20px 0;
}

.para:last-child {
	margin:20px 0 0 0;
}

/* BUTTONS */

.btn {
	display: inline-block;
	padding:15px 25px;
	background:#FFF;
	text-decoration: none;
	color:#000000;
	font-family:'red-hat-display-bold';
	font-weight: normal;
}

.blue-btn {
	background:#5C6576;
	color:#FFF;
}

.red-btn {
	background:#A75346;
	color:#FFF;
}

/* PRODUCTS */

.products {
    flex-direction: column;
}

.product-categories {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.product-item {
    width: 23%;
    margin: 15px 0;
    overflow: hidden;
}

.product-item:after {
  content: "";
  display: block;
  padding-bottom: 0;
}

.product-image-container {
    height: 250px;
    background: #CCC;
	position: relative;
}

.product-title {
	background:#A75346;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding:15px 0;
	color:#FFF;
	border-radius:0 0 4px 4px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-link {
    color: inherit;
    text-decoration: none;
	position: relative;
}

.image-block {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.image-text-block {
    flex-direction: row;
    flex-wrap: wrap;
	position:relative;
	padding: 50px 5%;
}

.background-panel {
	position:absolute;
	top:0;
	bottom:0;
	width:80%;
}

.pos-left {
	left:0;
	right:unset;
	margin:0 auto 0 0;
}

.pos-right {
	right:0;
	left:unset;
	margin:0 0 0 auto;
}

.lt-blue {
	background:rgba(92, 101, 118, 0.2); 
}

.lt-red {
	background:rgba(167, 83, 70, 0.2); 
}

.text-container {
    width: 50%;
	padding:50px 0;
	position: relative;
	z-index: 1;
}

.image-container {
    width: 45%;
	margin-right:5%;
	background:#CCC;
	position: relative;
	z-index: 1;
}

.reversed {
    flex-direction: row-reverse;
}

.rev-img {
	margin-left:5%;
	margin-right: unset;
}

.text-block-heading {
    font-size: 2rem;
    margin: 0 0 25px 0;
	font-family: 'scotch-text-roman';
}

.more-products {
    height: 100%;
    padding: 0 10%;
    font-size: 2rem;
    text-align: center;
	background:#5C6576;
	flex-direction: column;
}

.arrow-icon {
    width: 40px;
    height: 40px;
	margin-top:25px;
}

.sub-footer-links {
    width: 100%;
    list-style-type: none;
    margin: 50px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.sub-footer-nav-block-links {
    flex-direction: column;
	width:100%;
	padding:50px 0;
}

.sub-footer-title {
    padding: 20px 0;
    text-align: center;
	font-family: 'scotch-text-roman';
	font-size:1.25rem;
	color:#FFF;
}

.sub-footer-heading {
    font-size: 2rem;
    margin: 0 0 25px 0;
    font-family: 'scotch-text-roman';
}

.sub-footer-link {
    text-decoration: none;
}

.sub-footer-item {
    width: 32.5%;
}

.footer-heading {
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
	font-size: 1.25vw;
	margin: 0 0 25px 0;
	font-family: 'scotch-text-roman';
}

.sub-footer-content {
	width:80%;
	padding:0 10%;
}

.footer-link-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-item {
    line-height: 2.5vh;
}

.footer-link {
    color: #FFF;
    text-decoration: none;
}

.footer {
	padding:50px 5%;
}

.form-field {
    background: #FFF;
    color: #5C6576;
    padding: 15px 5%;
    border: 0;
    width: 70%;
	font-family:'red-hat-display-reg';
}

.form-field-full {
    background: #FFF;
    color: #5C6576;
    padding: 15px 5%;
    border: 0;
	font-size: 1rem;
    width: 90%;
	margin:10px 0;
	font-family:'red-hat-display-reg';
}

.form-field-full:first-child {
    margin-top:0;
}

.form-field-full:last-child {
    margin-bottom:20px;
}

.submit-btn {
    width: 20%;
    padding: 15px 5%;
    border: none;
    background: #A75346;
    color: #FFF;
	font-family:'red-hat-display-reg';
}

.submit-btn-contact-form {
    width: 50%;
    padding: 15px 5%;
    border: none;
	font-size: 1rem;
    background: #A75346;
    color: #FFF;
	font-family:'red-hat-display-reg';
}

.fuse-link {
	color:#FFF;
	text-decoration: none;
}

.form-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.socials {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.social-link {
    width: 35px;
    height: 35px;
    display: block;
    text-indent: -9999px;
}

.fb {
	background:url("../images/facebook-icon.svg") center center no-repeat;
	background-size:contain;
}

.tw {
	background:url("../images/twitter-icon.svg") center center no-repeat;
	background-size:contain;
}

.ln {
	background:url("../images/linkedin-icon.svg") center center no-repeat;
	background-size:contain;
}

.blue-bkgd {
	background:#5C6576;
}

.red-bkgd {
	background:#A75346;
}
