@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

/* --------------------------
		GENERAL STYLES
-------------------------- */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font: 16px/22px 'Open Sans', Helvetica, sans-serif;
	color: #4a4a4a;
}

h1, h2, h3, h4 {
	font-family: 'Montserrat Alternates';
}

h2, h3 {
	text-transform: uppercase;
}

h1 {
	font-weight: 300;
	font-size: 49px;
	line-height: 54px;
	color: #373737;
}

h2 {
	font-size: 30px;
	line-height: 30px;
}

h3 {
	font-size: 27px;
	line-height: 30px;
}

a {
	text-decoration: none;
	color: #ba1022;
}

a:hover {
	text-decoration: underline;
	opacity: .8;
}

.container {
	width: 960px;
	margin: 0 auto;
}

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

.txt-white {
	color: white;
}

.txt-red {
	color: #ba1022;
}

/* Calculations based on: columns 60px each and gutters 20px each*/
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 {
	margin-right: 20px;
}

.col-3 {
	width: 220px;
}

.col-4 {
	width: 300px;
}

.col-9 {
	width: 700px;
}

/* --------------------------
		HEADER & NAV
-------------------------- */
nav ul {
	list-style: none;
	padding: 0;
	flex-wrap: nowrap;
}

nav ul li {
	text-transform: uppercase;
	font-size: 12px;
}

nav ul li + li {
	margin-left: 20px;
}

nav ul li a {
	padding: 2px 4px;
	color: #706f6f;
}

nav ul li a:hover {
	background: #c90c20;
	color: white;
}

/* --------------------------
		HOME PAGE
-------------------------- */
#hero {
	background: url("../images/hero.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	height: 640px;
	padding-top: 75px;
}

#hero span {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
	font-size: 34px;
	padding-right: 50px;
}

#row2, #row3, #row4, #row5, #row6 {
	padding: 65px 0;
}

#row2 {
	background: #636363;
	color: white;
}

#row2 h2 {
	text-align: center;
}

#row3 {
	background: url("../images/product_background.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: white;
}

#row3 .container {
	width: 90%;
}

#row3 ul {
	width: 23%;
}

#row3 h3 {
	margin-left: -20px;
}

#row4 h3, #row5 h3 {
	text-align: center;
}

#row4 p:first-child {
	margin-top: 0;
}

#row5 {
	background: url("../images/test-background.jpg")no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: white;
}

footer {
	background: black;
	color: white;
	font-size: 12px;
	padding: 30px 0;
	text-align: center;
}