:root {
  --main-color-dark-gray: #23242f;
  --main-color-org: #e65109;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
text-decoration: none;
}

a:link { color: var(--main-color-org); }
a:visited { color: var(--main-color-org); }
a:hover { color: var(--main-color-dark-gray); }

ul {
margin-block-start: 0;
margin-block-end: 0;
padding-inline-start: 0;
}

html {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  height: 100%;
  margin: 0;
}

body.sib-form {
padding: 0 !important;
}

/* TYPOGRAPHY */
p {
font-size: 3vmin;
line-height: 1.5;
font-weight: 400;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2.4em;
  line-height: 1.2;
  margin-bottom: 3%;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: 5.9vw;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
}

h3 {
font-size: 4.9vw;
line-height: 1.1;
font-weight: 700;
color: #ffffff;
text-align: center;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased ;
}

h4 {
font-size: 1em;
line-height: 1.1;
font-weight: 900;
color: #ffffff;
text-align: center;
}

h5 {
font-size: .8em;
line-height: 1.1;
font-weight: 700;
color: #ffffff;
text-align: center;
}

::-webkit-input-placeholder {
font-family: "Raleway", sans-serif;
color:lightslategray;
font-size: 13px;
}
::-moz-placeholder {
font-family: "Raleway", sans-serif;
color: lightslategray;
font-size: 13px;
}
:-ms-input-placeholder {
font-family: "Raleway", sans-serif;
color: lightslategray;
font-size: 13px;
}
::placeholder {
font-family: "Raleway", sans-serif;
color: lightslategray;
font-size: 13px;
}

/* IMAGES */
img {
display: block;
border: 0;
max-width: 100%;
height: auto;
}

.txt-heavy {
  font-weight: 900;
}

.txt-bld {
  font-weight: 600;
}

.txt-lt {
  font-weight: 300;
}

.no-marg {
  margin: 0;
}

/********************* NAVIGATION *********************/

header {
position: fixed;
height: 105px;
top: 0;
background: #ffffff;
z-index: 899;
width: 100%;
}

.shad {
box-shadow: 0 8px 42px 0 rgba(0,0,0,.3);
}

.fh {
  height: 100vh;
  }
  
  #toggle {
    position: absolute;
    right: 1.5em;
    top: .7em;
    z-index: 999;
    width: 2em;
    height: 2em;
    cursor: pointer;
    float: right;
    transition: all 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  
  #toggle .span {
    height: 3px;
    background: var(--main-color-org);
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
    margin: 5px auto;
  }
  
  #toggle.on #bar-top {
    transform: rotate(45deg) translateX(2px) translateY(4px);
  }
  #toggle.on #bar-mid {
    opacity: 0;
  }
  #toggle.on #bar-bot {
    transform: rotate(-45deg) translateX(8px) translateY(-10px);
  }
  
  #overlay {
    display:flex;
    position: absolute;
    top: 0;
    background: var(--main-color-dark-gray);
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease-out;
    justify-content: center;
    z-index: 1;
  }
  
  #overlay #mobile-nav {
    display: flex;
    height: 50px;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2em;
  }
  
  #overlay #mobile-nav li {
    display: block;
    text-align: center;
    padding: 20px 0;
    margin:0 0 -50px 0; 
    font-size: 3em;
    min-height: 3em;
    font-weight: 700;
    transition: all 0.2s ease-out;
  }
  
  #overlay.active #mobile-nav li a{
    visibility: visible;
    font-size: 7vw;
    color: var(--main-color-org);
    text-transform: uppercase;
    opacity: 0.99;
  }
  
  #overlay.active {
    visibility: visible;
    opacity: 0.99;
  }
  
  @media(max-width: 768px) {
    header {
      height: 50px;
    }
  
    .hero,
    .hero-work-container,
    .hero-trainer {
      margin-top: -55px;
    }
  
    #toggle {
      visibility: visible;
      opacity: 1;
    }
  
    nav #menu {
      display: none;
    }
  }
  
  @media(min-width: 768px) {
    #overlay, 
    #overlay #mobile-nav li a {
      visibility: hidden !important;
    }       
  }
  
  .logo span {
  font-size: 1em;
  text-transform: uppercase;
  color: var(--main-color-dark-gray);
  }
  
  @media(max-width: 400px) {
  .logo span {
  font-size: .7em;
  }
  
  #toggle {
    right: 1em;
  }
  }
  
  .tag-int {
  font-weight: 900;
  }
  
  .tag-tech {
  font-weight: 300;
  
  }
  
  .navbar {
  font-size: 1.2em;
  padding: .5em 0;
  }
  
  .main-nav {
  /* text-align: center;
  position: relative; */
  list-style-type: none;
  display: none;
  }
  
  .nav-item,
  .footer-nav-item {
  text-transform: uppercase;
  }
  
  .nav-item,
  .logo {
  margin-left: 1em;
  text-decoration: none;
  color: var(--main-color-dark-gray);
  }
  
  .active {
  display: block;
  }
  
  .navbar-toggle {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  color: var(--main-color-dark-gray);
  font-size: 24px;
  }
  
  @media screen and (min-width: 768px) {
  
    #overlay, 
    #overlay #mobile-nav li a {
      visibility: hidden !important;
    }
  
    .fh {
      height: 105px;
    }
  
    .navbar {
      display: flex;
      justify-content: space-between;
      padding: 1.5em 0;
      height: 100%;
      align-items: center;
    }
  
    .main-nav {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
    }
  
    .main-nav li {
      font-size: .8em;
      margin: 0;
    }
  
    .nav-links{
      margin-left: 30px;
    }
  
    .logo {
      margin-top: 0;
    }
  
    .navbar-toggle {
      display: none;
    }
  
    .nav-links:hover {
      color: var(--main-color-org);
    }
  
    li > a.nav-item {
      color: var(--main-color-dark-gray);
      text-decoration: none;
      margin: 0px 10px;
      padding: 10px 10px;
      position: relative;
      z-index: 0;
      cursor: pointer;
      backface-visibility:hidden
    }
  
    li > a.nav-item::before {
      content: '';
      position: absolute;
      width: 80%;
      height: 1px;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0px;
      background: var(--main-color-org);
      opacity: .8;
      transition: all 0.1s ease-out;
    }
  
    li > a.nav-item:hover::before
    {
        height: 7px;
    }
  }

/********************* HERO *********************/
.push {
margin-bottom: 105px;
}

.hero,
.hero-trainer {
position: relative;

}

.hero img,
.hero-trainer img {
display: block;
min-width: 100%;
max-width: 100%;
height: auto;
}

.hero-txt h2 {
color: #ffa100;
}

.hero-txt,
.hero-trainer-txt {
padding: 2rem 1.5rem;
margin-bottom: 1em;
}

.hero-trainer-txt p {
font-size: 2.2em;
font-weight: 300;
line-height: 1.1em;
text-align: center;
}

.hero-trainer-txt h1 {
font-size: 2.2em;
margin: 0;
}

.hero-trainer-txt h1::first-letter {
  text-transform: lowercase;
}

.hero-trainer-txt p {
color: var(--main-color-dark-gray);
}

@media screen and (min-width: 767px) {
.hero-txt,
.hero-trainer-txt {
  position: absolute;
  top: 40%;
  left: 75%;
  transform: translate(-50%, -50%);

  width: 40%;
  padding: 0 .5rem;
  }

  .hero-txt p,
  .hero-trainer-txt p,
  .hero-trainer-txt h1 {
    color: #ffffff;
    margin-top: 1.5vh;
    text-align: left;
    font-size: 2em;
  }
}

@media screen and (min-width: 1000px) {
  .hero-txt,
  .hero-trainer-txt {
    left: 75%;
    padding: 0 .5rem;
  }
  
    .hero-txt p,
    .hero-trainer-txt p,
    .hero-trainer-txt h1 {
      font-size: 2.4em;
  }
}

@media screen and (min-width: 1200px) {
    .hero-txt p,
    .hero-trainer-txt p,
    .hero-trainer-txt h1 {
      font-size: 2.8em;
  }
}

@media screen and (min-width: 1400px) {
  .hero-txt p,
  .hero-trainer-txt p,
  .hero-trainer-txt h1 {
    font-size: 3.2em;
}
}


span.line {
display: inline-block;
}


/*************** TRAINER INTRO ******************/
.trainer-intro-hd {
  margin-top: 3em;
 }

.trainer-intro img,
.trainer-splash img  {
margin: 0 auto;
}

.trainer-intro h1 {
margin: 0;
font-size: 2.8em;
}

@media (min-width: 1200px) {
  .trainer-intro-hd h1 {
    font-size: 2.8em;
    }
  }

.trainer-intro-container {
background-image: url(../images/sprocket-mobile.png);
background-repeat: no-repeat;
background-position: bottom right;
margin-bottom: -1px;
}

@media (min-width: 760px) {
  .trainer-intro-container {
    background-image: url(../images/sprocket-med.jpg);
  }
}


.trainer-intro-hd p {
font-size: 1.6em;
line-height: 2em;
}

.trainer-intro-hd p {
margin-top: 1.4em;
}

.trainer-intro p:last-child {
padding-bottom: 6em;
}

@media (max-width: 1023px) {
.trainer-intro-hd p {
  font-size: 1.4em;
  }
}

@media (max-width: 767px) {
.trainer-intro-hd p {
  font-size: 1.2em;
}
.trainer-intro-hd {
  margin-top: 0;
 }
}

/************* TRAINER COURSES ******************/
.trainer-courses-container {
/* padding-top: 1.1em; */
background-image: url(../images/tile-hex-gray-trans-sm.png), linear-gradient(-188deg, rgba(15,15,20,1) 0%, rgba(15,15,20,1) 66%, rgba(112,53,26,1) 81%, rgba(255,96,0,1) 100%);
background-repeat: repeat;
/* border-top: 1.5em solid #d25a20; */
border-bottom: 1.5em solid #d25a20;
}

.trainer-courses {
  padding: 0 3vw;
  padding-bottom: 3em;
  }

.trainer-courses a {
margin: 0;
}

.trainer-courses-container h1,
.trainer-features h1 {
font-size: 2.8em;
margin: .8em 0;
color: #FFFFFF;
word-spacing: -0.15em;
}

.trainer-courses-container h1 {
  font-weight: 200;

}

.trainer-courses-container h1::first-letter {
  text-transform: lowercase;
}

.trainer-courses-container h1 span {
  font-weight: 900;
}

.trainer-courses a,
.trainer-courses p {
color: #ffffff;
display: block;
font-size: 1.2em;
font-weight: 600;
line-height: 1.2em;
margin-bottom: 1.5em;
}

.trainer-courses a:hover,
.trainer-course-list a:hover {
  color: #ef6f32 !important;
}

.trainer-courses i {
border: solid var(--main-color-org);
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
margin-left: .3em;
}

.right-arrow {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg)
}

.trainer-courses p:last-child {
padding-bottom: 2em;
}


/************* TRAINER FEATURES ******************/
.trainer-features,
.trainer-courses {
display: flex;
margin: 1em;
}

.trainer-features-container h1 {
padding-top: .8em;
font-size: 2.8em;
}

.trainer-feature-list,
.trainer-course-list {
flex: 1; /*grow*/
margin: 0 1em;
}

.trainer-features li,
.trainer-courses a,
.trainer-courses p {
font-size: 1em;
margin-bottom: 1.4em;
}

@media (max-width: 1200px) {
.trainer-features li,
.trainer-courses a,
.trainer-courses p {
  font-size: 1em;
}

}

@media (max-width: 767px) {
.trainer-features,
.trainer-courses {
  flex-direction: column;
}

.trainer-features li {
  font-size: 1.2em;
}
}

/**************** TRAINER FORM ******************/

#sib-container {
  /* max-width:80%; */
  margin: 0 auto;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  }
  
  @media (min-width: 960px) {
    #sib-container  {
      max-width:80%;
    }
    }
    
  
  @media (max-width: 414px) {
  #sib-container  {
    padding: 1.4em;
  }
  }
  
  #sib-container h1 {
  color: var(--main-color-org);
  font-size: 1.2em;
  }
  
  #sib-container p {
  font-size: 1em;
  text-align: left;
  margin-bottom: 1em;
  }

.btn-submit {
display: table;
background-color: var(--main-color-org);
border: none;
color: #ffffff;
padding: 1em;
margin: 1em 0 1em 0;
}

.btn-submit:hover {
  background-color: var(--main-color-dark-gray);
  transition: background-color .25s ease-in-out;
}

.input--hidden {
display: none; /* make sure form works after this */
}


/********************* ABOUT *********************/
.about,
.trainer-features {
margin-top: 1%;
padding: 0 3vw;
margin-bottom: -1px;
}

.trainer-intro-hd {
padding: 0 7vw;
}

.about p:last-child::after
.trainer-intro-hd.about p:last-child::after {
content: "";
display: block;
margin-top: 4%;
width: 100px;
height: 7px;
background-color: var(--main-color-org);
}

@media (max-width: 768px) {
.about > p
.trainer-intro-hd > p {
  font-size: 1em;
}
}

/********************* FEATURED *********************/
.featured-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
/* grid-auto-rows: 400px; */
}

.featured-txt p {
text-align: left;
font-size: 3vw;
color: #ffffff;
padding: 5%;
}

.featured {
margin-top: 5%;
}

.featured-container figure {
position: relative;
overflow: hidden;
background: #ff5000;
text-align: center;
cursor: pointer;
}

.featured-container figure img {
position: relative;
display: block;
min-height: 100%;
max-width: 100%;
opacity: 0.8;
}

.featured-container figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.featured-container figure figcaption::before,
.featured-container figure figcaption::after {
pointer-events: none;
}

.featured-container figure figcaption,
.featured-container figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.featured-container figure figcaption > a {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}

.featured-container figure h4 {
opacity: 0;
word-spacing: -0.15em;
font-weight: 300;
-webkit-transition: opacity 0.55s, -webkit-transform 0.55s;
transition: opacity 0.55s, transform 0.55s;
}

@media (max-width: 480px) {
figure.effect-fade h4 {
  font-size: .6em;
}
}

.featured-container figure h4 span {
font-weight: 900;
}

.featured-container figure h4,
.featured-container figure p {
margin: 0;
}

.featured-container figure p {
letter-spacing: 1px;
font-size: 68.5%;
}

figure.effect-fade {
background: #ff5000;
}

figure.effect-fade img {
opacity: 0.9;
-webkit-transition: opacity 0.35s;
transition: opacity 0.35s;
}

figure.effect-fade:hover img {
opacity: 0.5;
}

figure.effect-fade:hover h4 {
opacity: 1;
}

figure.effect-fade figcaption::before {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10px;
background: #ff5000;
content: '';
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0);
}

figure.effect-fade h4 {
position: absolute;
bottom: 0;
left: 0;
padding: 1em 1.5em;
width: 100%;
text-align: left;
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}

figure.effect-fade h4 i {
font-style: normal;
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}

figure.effect-fade figcaption::before,
figure.effect-fade h2 {
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
}

figure.effect-fade:hover figcaption::before,
figure.effect-fade:hover h2,
figure.effect-fade:hover h2 i {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}

.itm-01 {
position: relative;
grid-column: 1 / span 2;
grid-row: 1 / span 1;
}

.itm-02 {
position: relative;
grid-column: 3 / span 1;
grid-row: 1 / span 1;
}

.itm-03 {
position: relative;
grid-column: 1 / span 1;
grid-row: 2 / span 1;
}

.itm-04 {
position: relative;
grid-column: 2 / span 1;
grid-row: 2 / span 1;
}

.itm-05 {
position: relative;
grid-column: 3 / span 1;
grid-row: 2 / span 1;
}

.itm-06 {
position: relative;
grid-column: 1 / span 1;
grid-row: 3 / span 1;
}

.itm-07 {
display: flex;
align-items: center;
justify-content: center;
grid-column: 2 / span 2;
grid-row: 3 / span 1;
background-color: var(--main-color-org);
}

.itm-08 {
position: relative;
grid-column: 1 / span 1;
grid-row: 4 / span 1;
}

.itm-09 {
position: relative;
grid-column: 2 / span 1;
grid-row: 4 / span 1;
}

.itm-10 {
position: relative;
grid-column: 3 / span 1;
grid-row: 4 / span 2;
}

.itm-11 {
display: flex;
align-items: center;
justify-content: center;
grid-column: 1 / span 1;
grid-row: 5 / span 1;
background-color: #7462bb;
}

.itm-12 {
position: relative;
grid-column: 2 / span 1;
grid-row: 5 / span 1;
}

.itm-13 {
position: relative;
grid-column: 1 / span 1;
grid-row: 6 / span 1;
}

.itm-14 {
position: relative;
grid-column: 2 / span 1;
grid-row: 6 / span 1;
}

.itm-15 {
display: flex;
align-items: center;
justify-content: center;
grid-column: 3 / span 1;
grid-row: 6  / span 1;
background-color: #28b4a8;
}

@media (max-width: 640px) {
.featured-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-auto-rows: 400px; */
}

.itm-01 {
  position: relative;
  grid-column: 1 / span 3;
  grid-row: 1 / span 1;
}

/* ROW 2 */
.itm-02 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}

.itm-03 {
  position: relative;
  grid-column: 2 / span 3;
  grid-row: 2 / span 1;
}

/* ROW 3 */
.itm-04 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}

.itm-05 {
  position: relative;
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}

 /* ROW 4 */
 .itm-07 {
  display: none;
}

/* ROW 5 */
.itm-06 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 5 / span 1;
}

.itm-08 {
  position: relative;
  grid-column: 2 / span 4;
  grid-row: 5 / span 1;
}

/* ROW 6 */
.itm-09 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 5 / span 1;
}

.itm-10 {
  position: relative;
  grid-column: 2 / span 4;
  grid-row: 6 / span 2;
}

/* ROW 7 */
.itm-11 {
  display: none;
}

.itm-12 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 6 / span 1;
}

/* ROW 8 */
.itm-13 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 7 / span 1;
}

.itm-14 {
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 8 / span 1;
}

.itm-15 {
display: flex;
align-items: center;
justify-content: center;
grid-column: 2 / span 1;
grid-row: 8 / span 1;
background-color: var(--main-color-org);
}
}

/********************* SERVICES *********************/

.services {
margin-top: 5%;
width: 100%;
}

.bucket-container {
display: flex;
width: 100%;
text-align: center;
}


.bucket {
flex: 1;
margin: 0 1.2em;
}

.bucket p {
font-size: 1em;
text-align: left;
}

.bucket-container .bucket img {
margin: 0 auto;
}

.bucket h3 {
color: var(--main-color-org);
font-size: 1.5em;
font-weight: 300;
text-transform: uppercase;
margin: .8em 0 .4em 0;
}

.bucket h3 span {
font-weight: 900;
}

a.bucket-btn {
display:inline-block;
padding:0.35em 1.2em;
border:0.1em solid var(--main-color-org);
margin:1.5em 0.3em 0.3em 0;
border-radius:0.12em;
box-sizing: border-box;
text-decoration:none;
font-family:'Raleyway', sans-serif;
font-weight:700;
text-transform: uppercase;
color: var(--main-color-dark-gray);
text-align:center;
transition: all 0.3s;
cursor: pointer;

}

a.bucket-btn:hover{
  color: #ffffff;
  background-color:var(--main-color-org);
}

.bucket-btn span {
color: var(--main-color-org);
}

.bucket-btn:hover span {
color: #ffffff;
}

.full-services {
margin: 0 auto;
margin-top: 3%;
text-align: center;
}

.full-services p {
font-weight: 400;
}

.full-services a {
text-transform: uppercase;
color: var(--main-color-org);
border: 1px solid var(--main-color-dark-gray)
}

.full-services a:hover {
background: var(--main-color-dark-gray);
}

.full-services a::after {
content: '\00276F';
}

.full-services a:hover::after {
color: #ffffff;
}

@media(max-width: 600px) {
.bucket-container {
  display: flex;
  flex-direction: column;
}
}

/********************* NEW REVENUE *********************/
.products {
padding: 5vw 15vw;
margin-top: 4em;
background-color: var(--main-color-org);
color: #ffffff;
}

.products h2 {
text-align: left;
}

.products p {
font-size: 1.8vw;
line-height: 1.7em;
}

section.products > p > a {
color: #ffffff;
font-weight: 700;
text-transform: uppercase;
}

section.products > p > a:hover {
color: var(--main-color-dark-gray);
}

.products h2:nth-of-type(1) {
font-weight: 200;
}

.products h2:nth-of-type(2) {
text-transform: uppercase;
}



/********************* PARTNERS *********************/
.partners {
color: #ffffff;
padding: 2vw 15vw;
background-color: var(--main-color-dark-gray);
}

.partners span {
color: var(--main-color-org);
font-weight: 700;
}

.partners p {
font-size: 1.8vw;
}

@media(max-width: 320px) {
section.products > p,
section.partners > p {
  font-size: .8em;
}
section.products,
section.partners {
padding: 5vw 8vw;
}

.products h2 {
  font-size: 1.9em;
}
}

@media(max-width: 768px) {
section.products > p,
section.partners > p {
  font-size: 1em;
}
section.products {
padding: 7vw 10vw;
}
}

/********************* CONTACT *********************/
.connect {
margin: 5% 0;
}

.connect-container {
display: flex;
margin: 0 2em;
}

.connect-content {
flex: 1;
}

.connect-form {  
  flex: 1;
  margin: 0 2em;
}

.connect-form label {
margin: .25em 0;
display: block;
text-transform: uppercase;
font-size: 1em;
font-weight: 700;

}

.connect-form input,
.connect-form textarea {
width: 100%;
margin: 5px 10px 5px 0;
padding: 10px;
background-color: #fff;
border: 1px solid #ddd;
}

.connect-form textarea {
height: 10em;
}

.connect-form button {
padding: 10px 20px;
margin-top: 2em;
background-color: var(--main-color-org);
border: 1px solid #ddd;
color: white;
cursor: pointer;
text-transform: uppercase;
}

.connect-form button:hover {
background-color:var(--main-color-dark-gray);
}

@media(max-width:768px) {
.connect-content p {
  font-size: 1em;
}

.connect-container {
  flex-direction: column;
}

.connect-container > .connect-content {
  width: 100%;
}

.connect-container > .connect-form {
  width: 100%;
  margin: 1em auto;
  padding: 0;
}
}

/********************* FOOTER *********************/

footer {
position: relative;
/* max-height: 12em; */
background: var(--main-color-dark-gray);
/* margin-top: 2em; */
}

.footer-navbar {
font-weight: 700;
height: 100%;
padding: 2em;
display: flex;
flex-wrap: wrap;
}

.footer-about {
flex: 1;
}

.footer-about h5 {
text-align: left;
}

.footer-about p {
color: #ffffff;
font-size: .8em;
margin-top: .8em;
}

.footer-about span {
color: var(--main-color-org);
text-transform: uppercase;
}

.footer-nav {

flex: 1;
height: 100%;
/* flex-direction: column; */
}

.footer-nav li {
padding-left: 2em;
list-style-type: none;
}

a.footer-nav-item {
font-size: .8em;
color: var(--main-color-org);
}

.copyright {
display: flex;
flex: 2;
justify-content: center;
align-items: center;
}

.copyright p {
font-weight: 400;
font-size: .6em;
text-align: left;
color: #ffffff;
text-transform: uppercase;
letter-spacing: .2em;
}

@media(max-width:768px) {
.copyright p {
  padding-top: 2em;
}
.footer-about,
.footer-nav {
  flex: 1 50%;
}
.copyright {
  margin-top: 1em;
  border-top: 1px solid var(--main-color-org);
  flex: 1 100%;
}
}

@media(max-width:320px) {
.copyright p {
  font-size: .5em;
  letter-spacing: .1em;
}

.footer-about p {
  font-size: .6em
}
}

/********************* WORK *********************/

/***************** WORK HEADER *****************/
.hero-work-container {
position: relative;
width: 100%;
max-height: 600px;
display: flex;
}

.hero-work-container h1 {
color: var(--main-color-org);
font-size: 11vw;
}

.hero-work-container p {
font-size: 3.5vw;
font-weight: 200;
line-height: 1.1;
}

.hero-work {
position: absolute;
display: flex;
align-self: center;
}

.hero-work-hd {
flex: 1;
justify-content: right;
text-transform: uppercase;
padding-left: 8vw;
padding-top: 1.4vw;
}

.hero-work-tag {
flex: 2;
color: #ffffff;
padding-right: 3vwem;
padding-left: 1.4em;
padding-top: 1.2vw;
}

@media (max-width: 786px) {
/* .hero-work-container p {
  font-size: 3vw;
}

.hero-work-tag {
  padding-right: 3em;
  margin-top: 2.6vw;
} */
}


/********************* WORK TITLE *********************/
.work-proj-ttl {
padding: 8vw 0 0 0;
/* background-color: var(--main-color-org); */
}

.work-proj-ttl,
.work-proj-ttl h2 {
color: #000000;
text-transform: uppercase;
text-align: center;
font-size: 5vmin;
font-weight: 200;
word-spacing: -0.15em;
}

.work-details {
flex: 1;

}

.work-details h3 {
color: var(--main-color-dark-gray);
font-weight: 900;
text-transform: uppercase;
font-size: 1.5em;
text-align: left;
margin-bottom: .4em;
}

.work-proj-ttl h2 span,
.work-details span {
font-weight: 800;
}

.work-content-txt {
font-size: 1em;
line-height: 1.8;
font-weight: 400;
}

@media (max-width: 800px) {
.work-content-txt {
  font-size: .9em;
}
}

.separator {
position: relative;
margin: 0 auto;
}

.details-container {
display: flex;
background-image: url(../images/bg-sprocket-lg.png);
background-repeat: no-repeat;
background-position: center;
background-size: 50%;
padding: 2% 5%;
}

.work-details p {
padding-right: 1.5em;
}


/* .details {
padding: 0 7vw;
} */

.gear a {
display: inline-block;
position: relative;
}

.gear a:before,
.gear a:after {
content: "";
position: absolute;
border-bottom: 1px solid gray;
top: 50%;
width: 3em;
}

.gear a:before {
right: 100%;
margin-right: 7px;
}
.gear a:after {
left: 100%;
margin-left: 7px;
}

/********************* SCREENSHOTS *********************/


.trainer-screenshots-content h1 {
color: #ffffff;
background-color: #000000; 
margin: 0;
box-shadow: 0 0 .2em #000000;
}

.trainer-screenshots-lead {
width: 80%;
padding: 1em 5em 2em 5em;
color: var(--main-color-dark-gray);
/* color: #ffffff; */
/* background: #000000; */
text-align: left;
}

.trainer-screenshots {
margin: 0 auto;
padding: 5% 0;
background: url(../images/tile-hex-dark-gray.png);
margin-top: 3em;
/* margin-bottom: 3em; */
border-top: 22px solid var(--main-color-org);
border-bottom: 22px solid var(--main-color-org);
}

.trainer-screenshots h1,
.screenshots p {
color: #ef6f32;
font-size: 2.8em;
}

.trainer-screenshots h1 {
margin-bottom: 0;
}

.trainer-screenshots span {
color: var(--main-color-org);
}

.trainer-screenshots p {
color: #ffffff;
font-size: 1.1em;
padding: 0 2em;
max-width: 90%;
margin: 0 auto;
}

@media (min-width: 960px) {
  .trainer-screenshots p {
    max-width: 80%;
  }
}

.single-item {
margin: 0 auto;
width: 480px;
}

.single-item {
border: 2px solid var(--main-color-org);
box-shadow: 0 8px 5vw 0 rgba(0,0,0,.5);
}

.demo {
display: flex;
justify-content: center;
align-items: center;
padding: 5% 5%;
background-image: url(../images/bg-angle-brackets.png);
background-repeat: no-repeat;
background-position: left;
background-size: 40%;
background-color: var(--main-color-org);
}

.demo-txt h1 {
text-align: left;
margin: 0;
}

.demo-txt p {
color: #ffffff;
font-size: 1.3em;
font-weight: 200;
}

.demo-txt {
flex: 1;
}

.demo-vid {
margin-left: 2em;
flex: 2;
}

@media (max-width: 800px) {
  .demo,
  .form-success {
    flex-direction: column;
    background-size: 86%;
  }

  #sib-container {
    max-width: 80%;
  }


    .contact-form-container {
      flex-basis: 80%;
    }
  

  .demo-txt p,
  .contact-txt p {
    margin-bottom: 1em;
  }

  .demo-txt p,
  .demo-txt h1,
  .contact-txt p,
.contact-txt h1 {
    text-align: center;
  }

}

@media (max-width: 520px) {

  #sib-container {
    max-width: 90%;
  }

}