@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: 3.063rem;
	line-height: 1.1;
	color: #373737;
}

h2 {
	font-size: 1.875rem;
	line-height: 1.4;
}

h3 {
	font-size: 1.688rem;
	line-height: 1.5;
}

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

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

.container {
	width: 80%;
	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: 1.25rem;
}

.col-3 {
	width: 23.4%;
}

.col-4 {
	width: 31.9%;
}

.col-9 {
	width: 74.5%;
}

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

nav ul li {
	text-transform: uppercase;
	font-size: 0.75rem;
}

nav ul li + li {
	margin-left: 1.25rem;
}

nav ul li a {
	padding: 0.125rem 0.25rem;
	color: #706f6f;
}

nav ul li a:hover {
	background: #c90c20;
	color: white;
}
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #706f6f;
   align-self: flex-end;
}

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

#hero span {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem;
	font-size: 2.125rem;
	padding-right: 3.125rem;
}

#row2, #row3, #row4, #row5, #row6 {
	padding: 4.0625rem 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: -1.25rem;
}

#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: 0.75rem;
	padding: 1.875rem 0;
	text-align: center;
}



@media (max-width: 48rem) {

 
  .hamburger {
    display: block;
  }


  #pageHeader {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    display: none !important;
    width: 100%;
    flex-direction: column;
    margin-top: 1rem;
  }

  #menu-toggle:checked + .hamburger + ul {
    display: flex !important; 
  }

  nav ul li {
    margin: 0;
  }

  nav ul li + li {
    margin-left: 0;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
  }
}