* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: #0b1931;
  font-family: 'Roboto', sans-serif;
}

.res {
  display: none;
}

#wrapper {
  width: 100%;
  background-color: white;
  background-image: url('../images/backgroundNumbers.png');
  background-position: bottom;
  background-repeat: repeat-x;
  padding-bottom: 100px;
}

header {
  z-index: 3;
  position: relative;
  min-height: 110px;
  border-bottom: 6px solid rgb(7, 16, 33);
  background-color: #0b1931;
  background-image: url('../images/bluemeshbackground.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1120px;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.25);
  color: white;
  padding: 25px 10px 0px 10px;
  width: 100%;
}

#headerRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1020px;
  width: 100%;
  margin: 0px auto;
}

#headerLogo {
  height: 85px;
  cursor: pointer;
}

#saLogo {
  margin: 20px 10px 0px 0px;
}

#tnLogo {
  width: 350px;
  margin: 30px auto 5px auto;
}

#saLogo:hover {
  opacity: 0.7;
}

.textBox {
  padding: 10px 40px 40px 40px;
  margin: 20px -20px 0px -20px;
  background-color: aliceblue;
  border: 2px solid rgb(196, 218, 237);
}

#menu {
  height: 35px;
  margin-right: 15px;
}

.resNav {
  display: none;
  width: 100%;
  text-align: right;
}

#resNavContent {
  display: none;
  z-index: 2;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(11, 25, 49, 0.83);
  background-blend-mode: multiply;
  text-align: center;
  margin-top: 65px;
  padding-bottom: 20px;
}

.resNavTitle {
  color: rgb(140, 195, 255);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.1em;
  line-height: 100%;
  background-color: #0b1931;
  padding: 15px;
}

.resNavText {
  text-decoration: none;
  letter-spacing: 1px;
  display: block;
  color: white;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 100%;
  width: 100%;
  padding: 15px;
}

.resNavText:hover {
  font-weight: 400;
  background-color: #0b1931;
  color: rgb(140, 195, 255);
}
/*  Nav Styling   */

nav {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-block-end: 0em;
  padding-inline-start: 0px;
}

nav li {
  display: inline;
}

nav li a {
  padding: 10px 20px 15px 20px;
  height: auto;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  z-index: 3;
}

nav li a:hover {
  color: rgb(140, 195, 255);
}

/*  Nav Dropdown Styling   */

li a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  text-decoration: none;
}

li a:hover,
.dropdown:hover .dropbtn {
  text-align: center;
}

li.dropdown {
  display: inline-block;
  transition: all 0.3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  width: inherit;
  padding-top: 0px;
  background-color: rgba(11, 25, 49, 0.83);
  background-blend-mode: multiply;
  border-top: 0px;
  z-index: 3;
}

.dropdown-content a {
  height: 48px;
  line-height: 48px;
  color: white;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0px 14px;
}

.dropdown-content a:hover {
  background-color: #0b1931;
  background-blend-mode: multiply;
  background-image: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.pageContent {
  max-width: 1020px;
  width: 100%;
  margin: 0px auto 20px auto;
}

.titleText {
  color: #1e2649;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 3.4em;
  letter-spacing: 0px;
  line-height: 100%;
}

.pageText {
  color: #464646;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 170%;
}

.pageText a {
  color: rgb(38, 47, 87);
  text-decoration: none;
}

.pageText a:hover {
  color: rgb(140, 195, 255);
}

.smallText {
  color: #464646;
  font-weight: 300;
  line-height: 150%;
  font-size: 0.8em;
}

.smallText p {
  font-size: 1.2em;
  text-align: left;
}

.pageTitle {
  display: block;
  width: 100%;
  background-color: #1e2649;
  color: white;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 3.8em;
  letter-spacing: 0px;
  padding: 15px;
  line-height: 100%;
  margin: 0px 0px 10px 0px;
  border-bottom: 8px solid rgb(237, 237, 237);
}

.pageHeader {
  display: block;
  width: 100%;
  color: #1e2649;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 2em;
  line-height: 1.1em;
  margin: 20px 0px 8px 0px;
}

.pageRow {
  width: 100%;
  background-color: rgb(237, 237, 237);
  padding: 15px 0px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

.col {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}

.col2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 0px 30px;
}

.productImg {
  width: 100%;
}

.productImg2 {
  width: 90%;
  margin: 0px auto;
}

.productImg:hover {
  opacity: 0.5;
  cursor: pointer;
}

.productImg2:hover {
  opacity: 0.5;
  cursor: pointer;
}

.productText {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 0.95em;
  line-height: 125%;
}

.productText a {
  cursor: pointer;
  font-size: 1.5em;
  font-weight: 400;
  color: rgb(38, 47, 87);
  text-decoration: none;
}

.productText a:hover {
  color: rgb(140, 195, 255);
}

.instructions {
  margin: 15px;
  line-height: 170%;
  color: #464646;
  font-size: 1.15em;
  font-weight: 300;
}

.instructions p {
  margin: 10px;
}

.orderLink {
  text-decoration: none;
  padding: 15px 25px;
  color: white;
  border: 1px solid rgb(131, 1, 1);
  background-color: rgb(206, 2, 2);
  border-radius: 30px;
  font-size: 1.3em;
  margin: 0px auto 20px auto;
}

.orderLink:hover {
  border: 1px solid rgb(206, 2, 2);
  background-color: rgb(131, 1, 1);
}

footer {
  z-index: 3;
  position: relative;
  font-family: 'Oswald', sans-serif;
  min-height: 127px;
  border-top: 6px solid #0b1931;
  background-color: #0b1931;
  background-image: url('../images/bluemeshbackground.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1020px;
  color: white;
  width: 100%;
  padding: 0px 20px 20px 20px;
}

.footerRow {
  max-width: 1000px;
  width: 100%;
  margin: 0px auto;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}

.footerCol {
  display: flex;
  flex-direction: column;
  line-height: 175%;
}

.footerTitle {
  font-weight: 400;
  font-size: 1em;
  color: #6ca9dc;
  text-transform: uppercase;
}

.footerText {
  font-weight: 100;
  font-size: 0.92em;
}

.footerText a {
  color: white;
  text-decoration: none;
}

.footerText a:hover {
  color: #6ca9dc;
  cursor: pointer;
}

.footerLarge {
  font-weight: 400;
  font-size: 1.3em;
  line-height: 125%;
}

.footerRed {
  color: red;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 2em;
  margin: 8px 0px;
}

.footerSmall {
  font-weight: 200;
  font-size: 0.85em;
  line-height: 145%;
}

#copyrightText {
  text-align: center;
  color: #6ca9dc;
  font-size: 0.8em;
  line-height: 140%;
}

#closeout {
  max-width: 625px;
}

.saleRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1020px;
  width: 100%;
  margin: 0px auto;
}

.saleCol {
  display: flex;
  flex-direction: column;
  padding: 0px 10px;
}

.saleLink {
  display: block;
  margin: 10px 0px 0px 0px;
}

@media only screen and (max-width: 950px) {
  header {
    padding: 13px 0px 7px 0px;
    min-height: 60px;
    border-bottom: 2px solid rgb(7, 16, 33);
  }

  #headerRow {
    position: relative;
    max-width: 950px;
    width: 100%;
  }

  #headerLogo {
    margin-left: 15px;
    height: 40px;
  }

  nav {
    display: none;
  }

  .resNav {
    display: block;
  }

  #resNavContent {
    display: block;
  }

  footer {
    border-top: 2px solid #0b1931;
  }

  .footerRow {
    flex-direction: column;
    justify-content: center;
  }

  .footerCol {
    display: none;
    width: 100%;
  }

  .col {
    padding: 10px 0px;
  }

  .col2 {
    width: 100%;
  }

  #tnLogo {
    width: 250px;
  }

  .titleText {
    font-size: 3.8em;
  }

  .pageContent {
    padding: 0px 15px;
  }

  .pageHeader {
    font-size: 2em;
    text-align: center;
  }

  .saleRow {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
  }

  .saleCol {
    padding: 0px 5px;
  }

  #closeout {
    width: 100%;
  }
}
