/* =====  Unified Navigation  ===== */

.top-navigation,
.header {
  font-family: "Proxima Nova Soft", "proxima-nova-soft", "Helvetica", sans-serif;
  line-height: 1.4;
}

.top-navigation {
  position: relative;
  font-size: 13px;
  color: #808F93;
  color: rgba(255, 255, 255, 0.9);
  background: #002027;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.container { margin: 0 auto; max-width: 860px; }

.top-navigation .container,
.header .container {
  position:relative;
  width: 100%;  
}

.header .container { overflow: visible; }

.home .container { max-width: 940px; overflow: visible; }

.top-nav-list {
  padding: 0;
  margin:0;
  float:right;
}

.top-nav-list li { display: inline-block; }
.top-nav-list li a { 
  display: block;
  padding: .75em 1em .6em;
  color: #808F93;
  color: rgba(255, 255, 255, 0.5);
}

.top-nav-list li a:hover {
  text-decoration: underline;
  color: #FFF;
}

.header {
  position: relative;
  display: block;
  width: 100%;
  background: #005F74;
  background-image: -o-linear-gradient(-89deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
  background-image: -moz-linear-gradient(-89deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
  background-image: -ms-linear-gradient(-89deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
  background-image: linear-gradient(-179deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.powersupply-logo {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 272px;
  height: 50px;
  background-image: url("../../../../assets/powersupply-header.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
only screen and (-o-min-device-pixel-ratio: 13/10),
only screen and (min-resolution: 120dpi) {
  .powersupply-logo {
    background-image: url("../../../../assets/powersupply-header-2x.jpg");
    background-size: 272px 50px;
  }
}  

@media (max-width: 30em) {
  .powersupply-logo {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin:1em auto;
  }
}        

.primary-navigation {
  margin: 0;
  padding:0;
  text-align: right;
  font-size: .95em;
}

.primary-navigation li {
  display: inline-block;
}

.primary-navigation a.nav-item {
  display: block;
  color: #FFF;
  padding: 1.2em 1em;
  font-family: "Proxima Nova Soft", "proxima-nova-soft", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: background-color 0.12s ease-in-out;
  -moz-transition: background-color 0.12s ease-in-out;
  -o-transition: background-color 0.12s ease-in-out;
  transition: background-color 0.12s ease-in-out;
}

.primary-navigation a.nav-item:hover, 
.primary-navigation a.nav-item.active {
  text-decoration: none;
  background-color: #003E4B;
  -webkit-transition: background-color 0.1s ease-in-out;
  -moz-transition: background-color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
}

.primary-navigation .caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000;
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-left: 4px solid rgba(0, 0, 0, 0);
  content: "";
  font-weight: 600;
  margin-top: 8px;
  margin-left: .3em;
  border-top: 4px solid #FFF;
}

.more-menu {
  position: absolute;
  top: 4.2em;
  right: .5em;
  z-index: 105;
  display: block;
  width: 100%;
  /* max-width: 566px; */
  max-width: 446px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  text-align: left;
  color: #595555;
}

.more-menu:after {
  content: "";
  position: absolute;
  top: -12px;
  right: 1em;
  z-index: 106;
  width: 0;
  height: 0;
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  border-bottom: 12px solid #FFF;
}

.more-menu:before {
  content: "";
  position: absolute;
  top: -13px;
  right: 1em;
  z-index: 105;
  width: 0;
  height: 0;
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  border-bottom: 12px solid rgba(0, 0, 0, 0.2);
}

.fourth-column {
  width: 21%;
  float: left;
  margin: 0 3% 0 0;
}

.third-column {
  width: 30%;
  float: left;
  margin: 0 3% 0 0;
}

.more-menu h4 {
  padding-left: 1em;
  font-size: .9em;
  margin-bottom: .5em;
  text-transform: uppercase;
  color: #333131;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.more-menu ul {
  padding:0;
  padding-left: 1em;
  margin: 0;
  padding-bottom: .75em;
}

.more-menu li {
  display: block;
  line-height: 1.6;
}

.more-menu li > a {
  display: block;
  color: #0089A7;
}

.more-menu li > a:hover {
  text-decoration: underline;
  color:#F49333;
}

.hover-dropdown-container {
  position: relative;
}

.dropdown-nav {
  display: none;
  position:absolute;
  top:3em;
  right:.5em;
  z-index:5;
  width:96%;
  max-width:180px;
  padding-top:1.2em;
}

.dropdown-nav ul {
  position:relative;
  margin:0;
  padding:.5em 1em .75em;
  background-color:white;
  border:1px solid rgba(0,0,0,.2);
  box-shadow:0 1px 2px rgba(0,0,0,.2);
  border-radius:3px;
  text-align: left;
  color:inherit;
}

.dropdown-nav li { display:block; line-height:1.6; }
.dropdown-nav li a { display:block; color:#0089A7; }
.dropdown-nav li a:hover { color:#F49333; text-decoration: underline; }

.dropdown-nav ul:before {
  content: "";
  position:absolute;
  top:-13px;
  right:1em;
  z-index:5;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid rgba(0,0,0,.2);
}

.dropdown-nav ul:after {
  content: "";
  position:absolute;
  top:-12px;
  right:1em;
  z-index:6;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
}

.hover-dropdown-container:hover .dropdown-nav { display:block; }

@media (max-width: 30em) {
  .primary-navigation > li { 
    display:block; 
    text-align: center;
    position: relative;
  }

  .primary-navigation > li > a { padding:.5em; }

  .more-menu {
    left:1em;
    width:92%;
    text-align: center; 
  }

  .more-menu:after { right:50%; }
  .more-menu:before { right:50%; }

  .fourth-column, .third-column {
    display:block;
    width:92%;
    margin:.5em auto;
    float:none;
  }

  .dropdown-nav ul { display:none; }
}


/* =====  Hero Shot  ===== */

.home-hero {
  position: relative;
  display: block;
  background-color:rgba(0,0,0,.1);
  width:100%;
  height:400px;
  background-image: url("../../../../power-supply/rainbow-hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

.home-hero .container { position:relative ;}

.home-hero h1 {
  position: absolute;
  top:3em;
  left:0;
  display: block;
  width:394px;
  height:153px;
  background-image: url("../../../../power-supply/hero-text.png");
  background-repeat: no-repeat;
  background-position: center center;
  margin:0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.home-hero p {
  position: absolute;
  top:4em;
  right: 0;
  display: block;
  max-width: 410px;
  padding: 1em;
  text-align: right;
  font-size: 1.8em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFF;
  background-color: rgba(51, 32, 12, 0.65);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

@media (max-width: 30em) {
  .home-hero h1 {
    position:relative;
    top:0;
    left:0;
    margin:2em auto .5em;
    width:295px;
    height:115px;
    background-size: 295px 115px;
  }
  .home-hero p {
    position: relative;
    top:0;
    right:0;
    font-size:1.4em;
    margin:0 auto;
    text-align: right;
  }
}

/* =====  How It Works  ===== */


.home-how-it-works {
  position: relative;
  display: block;
  width:100%;
  height:auto;
  text-align: center;
  background-color:rgba(0,0,0,.1);
  background-image: url("../../../../power-supply/bg-cutting-board.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

.home-how-it-works h3 {
  position:relative;
  top:-1.2em;
  display:inline-block;
  padding: .5em 2em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color:white;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  margin:0 auto;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  background: #fe4e0d; /* Old browsers */
  background: -moz-linear-gradient(left, #fe4e0d 0%, #ef6355 23%, #ff831d 50%, #f58357 75%, #ff9734 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#fe4e0d), color-stop(23%,#ef6355), color-stop(50%,#ff831d), color-stop(75%,#f58357), color-stop(100%,#ff9734)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #fe4e0d 0%,#ef6355 23%,#ff831d 50%,#f58357 75%,#ff9734 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #fe4e0d 0%,#ef6355 23%,#ff831d 50%,#f58357 75%,#ff9734 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #fe4e0d 0%,#ef6355 23%,#ff831d 50%,#f58357 75%,#ff9734 100%); /* IE10+ */
  background: linear-gradient(to right, #fe4e0d 0%,#ef6355 23%,#ff831d 50%,#f58357 75%,#ff9734 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe4e0d', endColorstr='#ff9734',GradientType=1 ); /* IE6-9 */
}

@media (max-width: 30em) {

  .home-how-it-works {
    background-image: url("../../../../power-supply/bg-cutting-board-vertical.jpg");
  }

  .home-how-it-works h3 {
    max-width:50%;
  }
}

.home-how-it-works ul {
  list-style:none;
  margin:0;
  padding:0;
  display:block;
}

.home-how-it-works ul li {
  display:block;
  width:23%;
  padding-right:2%;
  float:left;
  margin-top:-1em;
  margin-bottom:1em;
}

.how-graphic {
  position:relative;
  left:0;
  top:0;
  display:block;
  width:100%;
  max-width:150px;
  height:130px;
  background-repeat: no-repeat;
  background-position: center center;
  margin:0 auto;
}

.home-how-it-works li a {
  color:inherit; 
  font-weight:bold; 
  text-decoration:underline;
}

.home-how-it-works li a:hover {
  color:white;
  text-shadow:0 1px 0px rgba(0,0,0,.3);
}

.how-01 { background-image: url("../../../../power-supply/how-01.png");}
.how-02 { background-image: url("../../../../power-supply/how-02.png");}
.how-03 { background-image: url("../../../../power-supply/how-03.png");}
.how-04 { background-image: url("../../../../power-supply/how-04.png");}

@media (min-width: 80em) {
  .how-graphic {  }
}

@media (max-width: 30em) {
  .how-graphic {
    width: 100px;
    height: 85px;
    background-size: 100px 85px;
  }

  .home-how-it-works ul li {
    width:75%;
    margin:.5em auto;
    float:none;
    padding:2% 0;
  }

  .home-how-it-works ul li p {
    margin:0 auto;
    max-width:210px;
  }
  
  .dc-floater {
    display:none;
  }
}

/* =====  Utils  ===== */

.container:before, 
.container:after {
  display: table;
  content: "";
  line-height: 0;
}

.container:after {
  clear: both;
}

.hidden { display: none; }

.clearfix { *zoom: 1; }

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}

.clearfix:after { clear: both; }