/* 
  Simco Website Stylesheet
  Design & Markup by Dustin Ketterman
  6/18/2019
*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,700,700i&display=swap");
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
  Definitions
*/
/* 
  Text Styles 
*/
h1, h2, h3, h4, h5, h6, p, q, td, tr, span, small, b, i, a, textarea, li {
  font-family: "Source Sans Pro", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1em;
  margin: 0em;
}

p, q, td, tr, span, small, b, i, a {
  line-height: 1.2em;
  margin: 0.2em;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

span, i, b {
  margin: 0;
  padding: 0;
}

@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }
}
/*
  General Styles
*/
body {
  padding: 0;
  margin: 0;
}

header {
  text-align: center;
  background: url(images/bg2.png) center 20%/cover, url(images/bg-small.jpg) center 20%/cover;
  color: white;
  min-height: 30vh;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header h1 {
  font-size: 80px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
header h2 {
  font-weight: 400;
  line-height: 1.1em;
  margin: 0.3em;
}
@media (max-width: 500px) {
  header h1 {
    font-size: 54px;
  }
}

main {
  background: radial-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0.5)), url(images/waves.jpg) center center/cover fixed;
}

.textSection {
  padding: 20vh 0;
}
.textSection h3 {
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: 300;
  color: #002aa8;
  text-align: center;
}
.textSection p {
  color: #3a3a3a;
  font-size: 20px;
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4em;
}
@media (max-width: 600px) {
  .textSection h3 {
    font-size: 36px;
  }
  .textSection p {
    font-size: 16px;
  }
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.splitList {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 10vh;
  position: relative;
}
.splitList li {
  font-size: 20px;
  color: #3a3a3a;
  font-weight: 300;
  list-style: none;
}
.splitList li:nth-of-type(odd) {
  text-align: left;
  width: 60%;
}
.splitList li:nth-of-type(even) {
  text-align: right;
  width: 40%;
}
.splitList:after, .splitList:before {
  content: "";
  display: block;
  width: 4px;
  border-radius: 2px;
  height: 5em;
  background: #002aa8;
  position: absolute;
  top: -0.2em;
  left: 60%;
  transform: rotate(20deg);
}
.splitList:before {
  left: calc(60% + 10px);
}
@media (max-width: 900px) {
  .splitList li:nth-of-type(odd), .splitList li:nth-of-type(even) {
    text-align: center;
    width: 100%;
  }
  .splitList li:nth-of-type(odd) {
    order: 1;
  }
  .splitList li:nth-of-type(even) {
    order: 2;
  }
  .splitList:after, .splitList:before {
    display: none;
  }
}

/*
  Nav Styles
*/
nav {
  background: white;
  width: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  z-index: 10000;
}
nav ul {
  display: flex;
  justify-content: space-evenly;
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
}
nav ul li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 20%;
}
nav ul li #navMobile {
  width: 0;
  display: none;
}
nav ul li a {
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 700;
  line-height: 70px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  width: 100%;
}
nav ul li a:hover {
  background: #e6e6e6;
}
nav ul li a img {
  display: block;
  margin: 0 auto;
  max-height: 70px;
}
@media (orientation: portrait) and (max-width: 600px) {
  nav ul {
    flex-wrap: wrap;
    height: 70px;
  }
  nav ul li:nth-of-type(1), nav ul li:nth-of-type(2) {
    width: 50%;
    background: white;
    border: 1px solid white;
  }
  nav ul li:nth-of-type(1) img, nav ul li:nth-of-type(2) img {
    margin: 0;
  }
  nav ul li #navMobile {
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid #BFBFBF;
    position: absolute;
    right: 5px;
    background: white;
    cursor: pointer;
  }
  nav ul li #navMobile:after, nav ul li #navMobile:before {
    content: "";
    display: block;
    position: absolute;
    height: 11px;
    border-top: 2px solid #3a3a3a;
    border-bottom: 2px solid #3a3a3a;
    width: 26px;
    left: 16px;
    transition: 0.2s ease-in-out;
  }
  nav ul li #navMobile:before {
    top: 20px;
    transform-origin: bottom center;
  }
  nav ul li #navMobile:after {
    top: 29px;
    transform-origin: top center;
  }
  nav ul li.navLink {
    background: #3a3a3a;
    width: 25%;
    position: relative;
    top: -72px;
    z-index: -1;
    border: 1px solid #3a3a3a;
    transition: 0.2s ease-in-out;
  }
  nav ul li.navLink a {
    color: white;
  }
  nav ul li.navLink a:hover {
    background: #3a3a3a;
  }
  nav ul.opened li #navMobile:before, nav ul.opened li #navMobile:after {
    width: 30px;
    left: 14px;
  }
  nav ul.opened li #navMobile:before {
    border-top: 2px solid transparent;
    transform: rotate(45deg);
  }
  nav ul.opened li #navMobile:after {
    border-bottom: 2px solid transparent;
    transform: rotate(-45deg);
  }
  nav ul.opened li.navLink {
    top: 0;
  }
}

/*
  Home Page Styles
*/
#homePage header {
  background: url(images/bg.jpg) center 20%/cover, url(images/bg-small.jpg) center 20%/cover;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: row;
  align-items: center;
}
#homePage header div {
  margin: 0 auto;
}
#homePage header img {
  margin-top: -70px;
  width: 900px;
  max-width: 85%;
}
#homePage header #downArrow {
  display: block;
  width: 0;
  position: absolute;
  left: 50%;
  bottom: 20px;
}
#homePage header #downArrow:before, #homePage header #downArrow:after {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  width: 60px;
  background: white;
  border-radius: 3px;
  bottom: 0;
}
#homePage header #downArrow:before {
  right: -1px;
  transform: rotate(35deg);
  transform-origin: right;
}
#homePage header #downArrow:after {
  left: -1px;
  transform: rotate(-35deg);
  transform-origin: left;
}
@media (max-width: 600px) {
  #homePage header #downArrow:before, #homePage header #downArrow:after {
    width: 40px;
  }
}
#homePage main {
  width: 100%;
  padding: 40px 0;
}
#homePage main .grid {
  margin: 0 auto;
  width: 1300px;
  max-width: 95%;
  grid-template-columns: auto minmax(300px, 50%) auto;
  grid-template-rows: auto auto auto auto auto;
  row-gap: 60px;
  column-gap: 20px;
  justify-content: center;
  align-items: center;
}
#homePage main .grid h1 {
  text-align: center;
  grid-area: 1/1/2/4;
  color: #002aa8;
  width: max-content;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
}
#homePage main .grid h1:after, #homePage main .grid h1:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #3a3a3a;
  position: absolute;
}
#homePage main .grid h1:before {
  left: 1px;
  bottom: 0;
}
#homePage main .grid h1:after {
  left: -1px;
  bottom: -7px;
}
#homePage main .grid .dText {
  margin-top: -15px;
  position: relative;
}
#homePage main .grid .dText:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 60px;
  background: #002aa8;
  top: 60%;
}
#homePage main .grid .dText h3 {
  color: #3a3a3a;
  border-bottom: 2px solid #002aa8;
  padding: 0 6px;
  padding-bottom: 3px;
}
#homePage main .grid .dText p {
  margin: 0;
  padding-top: 5px;
  line-height: 1.2em;
  font-size: 18px;
  padding-left: 25px;
  text-indent: -15px;
}
#homePage main .grid .dText p:last-of-type {
  padding-bottom: 3px;
}
#homePage main .grid .dText.dLeft {
  grid-column: 1/2;
}
#homePage main .grid .dText.dLeft p {
  border-right: 2px solid #002aa8;
  text-align: right;
  padding-right: 10px;
}
#homePage main .grid .dText.dLeft:after {
  left: 100%;
}
#homePage main .grid .dText.dRight {
  grid-column: 3/4;
  grid-row: 3/4;
}
#homePage main .grid .dText.dRight p {
  border-left: 2px solid #002aa8;
}
#homePage main .grid .dText.dRight:after {
  right: 100%;
}
#homePage main .grid .dImage {
  grid-column: 2/3;
}
#homePage main .grid .dImage img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #homePage main .grid .dText.dLeft, #homePage main .grid .dText.dRight {
    grid-column: 1/2;
  }
  #homePage main .grid .dText.dLeft p, #homePage main .grid .dText.dRight p {
    border-right: 2px solid #002aa8;
    text-align: right;
    padding-right: 10px;
    border-left: none;
  }
  #homePage main .grid .dText.dLeft:after, #homePage main .grid .dText.dRight:after {
    left: 100%;
    right: auto;
    width: 30px;
  }
}
@media (max-width: 600px) {
  #homePage main .grid .dImage {
    position: relative;
    grid-column: 1/4;
    grid-row: 2/3;
  }
  #homePage main .grid .dImage img {
    width: 400px;
    max-width: 70%;
  }
  #homePage main .grid .dImage.dTop {
    top: 30px;
  }
  #homePage main .grid .dImage.dBottom {
    top: -30px;
  }
  #homePage main .grid .dText.dLeft, #homePage main .grid .dText.dRight {
    grid-column: 1/4;
  }
  #homePage main .grid .dText.dLeft h3, #homePage main .grid .dText.dRight h3 {
    text-align: center;
    width: max-content;
    margin: 0 auto;
    padding: 0 10px;
  }
  #homePage main .grid .dText.dLeft p, #homePage main .grid .dText.dRight p {
    text-align: center;
    border-right: none;
  }
  #homePage main .grid .dText.dLeft:after, #homePage main .grid .dText.dRight:after {
    display: none;
  }
}

/*
  Products Styles
*/
#productsPage header i {
  font-weight: 300;
}
#productsPage .textSection {
  padding-top: 14vh;
  overflow-x: hidden;
}
#productsPage .textSection b, #productsPage .textSection i {
  display: block;
  line-height: 1em;
  position: relative;
}
#productsPage .textSection i:first-of-type {
  left: -2.4em;
}
#productsPage .textSection i:last-of-type {
  left: 2.4em;
}
#productsPage .splitList {
  width: 800px;
  max-width: 95%;
}
#productsPage .splitList li {
  font-weight: 700;
  font-style: italic;
}
#productsPage .splitList:after, #productsPage .splitList:before {
  height: 8.5em;
}
#productsPage .splitList:after {
  left: 57%;
}
#productsPage .splitList:before {
  left: calc(57% + 10px);
}
#productsPage #products {
  background: #3a3a3a;
  padding: 20px;
  padding-right: 10px;
}
#productsPage #products .grid {
  margin: 0 auto;
  max-width: 1500px;
  grid-template-columns: repeat(4, calc(25% - 10px));
  grid-template-rows: repeat(4, auto);
  column-gap: 10px;
  row-gap: 0;
  justify-items: stretch;
  align-items: stretch;
}
#productsPage #products h2 {
  font-weight: 300;
  font-size: 60px;
}
#productsPage #products .pCell {
  background: linear-gradient(rgba(100, 100, 100, 0.5), rgba(100, 100, 100, 0));
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  color: white;
  font-weight: 300;
  padding: 10px;
}
#productsPage #products .pTitle {
  grid-row: 1/2;
  padding: 30px 10px;
}
#productsPage #products .pImg {
  padding: 30px 20px;
  grid-row: 2/3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
}
#productsPage #products .pImg h3 {
  font-size: 5vw;
}
#productsPage #products .pImg img {
  max-width: 100%;
}
#productsPage #products .pText {
  grid-row: 3/4;
  font-size: 20px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-items: center;
  align-content: stretch;
}
#productsPage #products .pText p {
  width: 100%;
  border-color: white;
  border-width: 2px;
  border-style: solid;
  margin: 0;
  padding: 20px 10px;
  position: relative;
}
#productsPage #products .pText p:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
}
#productsPage #products .pText p:first-of-type:before {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  position: absolute;
  left: calc(50% - (40px / 2));
  top: -20px;
  border-bottom: 20px solid white;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
#productsPage #products .pText p:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: none;
  padding-top: 0;
}
#productsPage #products .pDetails {
  grid-row: 4/5;
  grid-column: 1/5;
  margin: 0 5vw;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  margin-top: 20px;
}
#productsPage #products .pSingle {
  grid-column: 1/3;
}
#productsPage #products .pDouble {
  grid-column: 3/5;
}
#productsPage #products .bubble {
  color: #a0c6e8;
  font-weight: bold;
}
#productsPage #products .reflective {
  color: #BFBFBF;
  font-weight: bold;
}
#productsPage #products .white {
  color: white;
  font-weight: bold;
}
#productsPage #products #asterisk {
  font-size: 50px;
  line-height: 10px;
  margin: 0;
  margin-right: 10px;
  position: relative;
  top: 0.4em;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 800px) {
  #productsPage .textSection i:first-of-type, #productsPage .textSection i:last-of-type {
    left: 0;
  }
  #productsPage #products .pSingle, #productsPage #products .pDouble {
    grid-column: 1/5;
  }
  #productsPage #products .pDouble {
    grid-row: 4/5;
  }
  #productsPage #products .pText, #productsPage #products .pImg {
    grid-column: span 2;
  }
  #productsPage #products .pImg h3 {
    font-size: 10vw;
  }
  #productsPage #products .rbbx.pImg {
    grid-row: 5/6;
  }
  #productsPage #products .rbbx.pText {
    grid-row: 6/7;
  }
  #productsPage #products .pDetails {
    grid-row: 7/8;
  }
}
@media (max-width: 440px) {
  #productsPage #products .grid {
    display: block;
  }
  #productsPage #products h2 {
    font-size: 42px;
  }
  #productsPage #products .pImg h3 {
    font-size: 20vw;
  }
  #productsPage #products .pImg img {
    width: 80%;
  }
}

/*
  Applications Styles
*/
#applicationsPage main {
  overflow-x: hidden;
}
#applicationsPage #uses {
  background: #002aa8;
  align-content: center;
  justify-items: stretch;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
}
#applicationsPage #uses ul, #applicationsPage #uses #barnPic {
  width: 400px;
}
#applicationsPage #uses ul {
  padding: 0;
  color: white;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  list-style: none;
  line-height: 1.4em;
}
#applicationsPage #uses ul li:last-of-type {
  padding-left: 20%;
  font-weight: 700;
}
#applicationsPage #uses #barnPic {
  transform: skew(-30deg);
  overflow: hidden;
  border: 10px solid #3a3a3a;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: stretch;
  margin: -10px 0;
}
#applicationsPage #uses #barnPic img {
  max-height: 300px;
  transform: skew(30deg) scale(1.7);
  position: relative;
  left: 1%;
  top: -30px;
}
@media (max-width: 850px) {
  #applicationsPage #uses ul {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  #applicationsPage #uses ul li {
    width: 300px;
    text-align: center;
  }
  #applicationsPage #uses ul li:last-of-type {
    padding-left: 0;
    width: 100%;
  }
  #applicationsPage #uses #barnPic {
    display: none;
  }
}

/*
  Contact Styles
*/
#contactPage header h1 {
  font-weight: 300;
}
#contactPage header h1 i {
  font-weight: 700;
}
#contactPage main {
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  padding: 10vh 0;
}
#contactPage main .flex {
  width: 1100px;
  max-width: 100%;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 0 auto;
}
#contactPage #contactInfo, #contactPage #contactForm {
  margin: 10px;
}
#contactPage #contactInfo {
  text-align: center;
  max-width: 95%;
}
#contactPage #contactInfo h3 {
  font-weight: 300;
  color: #002aa8;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-size: 54px;
}
#contactPage #contactInfo h3:after {
  content: "";
  display: block;
  position: absolute;
  left: -8%;
  bottom: 0;
  width: 116%;
  height: 2px;
  background: #3a3a3a;
}
#contactPage #contactInfo p {
  font-weight: 700;
  color: #3a3a3a;
  font-size: 22px;
}
#contactPage #contactInfo p:last-of-type {
  margin-top: 1.2em;
}
#contactPage #contactForm {
  background: #3a3a3a;
  color: white;
  border-radius: 10px;
  padding: 16px 13px;
  width: 400px;
  max-width: 90%;
}
#contactPage #contactForm h4 {
  text-align: center;
  position: relative;
  padding-bottom: 9px;
  font-style: italic;
  font-size: 48px;
}
#contactPage #contactForm h4:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  border-top: 5px double #a0c6e8;
}
#contactPage #contactForm input, #contactPage #contactForm textarea, #contactPage #contactForm button {
  display: block;
  width: 100%;
  border: none;
  margin: 11px 0;
  padding: 10px;
  font-size: 20px;
}
#contactPage #contactForm button {
  color: white;
  font-style: italic;
  font-weight: 700;
  background: #002aa8;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}
@media (max-width: 500px) {
  #contactPage #contactInfo p {
    font-size: 16px;
  }
  #contactPage #contactInfo h3 {
    font-size: 42px;
  }
  #contactPage #contactForm h4 {
    font-size: 36px;
  }
  #contactPage #contactForm input, #contactPage #contactForm textarea, #contactPage #contactForm button {
    font-size: 16px;
  }
}

/*
  Footer Styles
*/
footer {
  width: 100%;
  background: #3a3a3a;
  border-top: 30px solid #002aa8;
}
footer #footerInfo {
  padding-top: 40px;
  padding-bottom: 50px;
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
footer #footerInfo p {
  margin: 0;
  line-height: 1.6em;
  color: white;
}
footer #footerInfo .footerContact {
  margin-top: -1em;
}
footer #footerInfo .footerContact:nth-of-type(2) {
  text-align: left;
}
footer #footerInfo .footerContact:nth-of-type(3) {
  text-align: center;
}
footer #footerInfo .footerContact:nth-of-type(4) {
  text-align: right;
}
footer #footerInfo #footerLogo {
  width: 100%;
  position: relative;
}
footer #footerInfo #footerLogo img {
  display: block;
  max-height: 60px;
  margin: 0 auto;
}
footer #footerInfo #footerLogo:before, footer #footerInfo #footerLogo:after {
  content: "";
  position: absolute;
  width: calc(50% - 65px);
  height: 1px;
  top: 29px;
  background: white;
}
footer #footerInfo #footerLogo:before {
  left: -5px;
}
footer #footerInfo #footerLogo:after {
  right: -5px;
}
footer #footerCredits {
  background: white;
  color: #3a3a3a;
  text-align: center;
  padding: 15px 0;
}
footer #footerCredits small {
  line-height: 1.1em;
}
footer #footerCredits a {
  color: #3a3a3a;
  text-decoration: none;
  border-bottom: 1px dotted #002aa8;
}
footer #footerCredits a:hover {
  border-bottom: 1px solid #002aa8;
}
@media (max-width: 600px) {
  footer #footerInfo .footerContact:nth-of-type(3) {
    width: 100%;
    order: 5;
    margin-top: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
