/*
note: it does not appear that main.scss is still being used and that main.css is being edited directly
rgentile 3/7/17
*/
/*! normalize.css v1.1.2 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
body {
  margin: 0;
}
a:focus {
  outline: none !important;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: .83em;
  margin: 1.67em 0;
}
h6 {
  font-size: .67em;
  margin: 2.33em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
p,
pre {
  margin: 1em 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace,serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: '';
  content: none;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
form {
  margin: 0;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Animate.css */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -vendor-animation-delay: 2s;
}
.animated.infinite,
.animated-frame.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.longer-ani {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 23%, 0);
    transform: translate3d(0, 23%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 23%, 0);
    transform: translate3d(0, 23%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated-frame {
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -vendor-animation-delay: 2s;
}
@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
  25% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
}
@keyframes upDown {
  0% {
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
  25% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
}
.upDown {
  -webkit-animation-name: upDown;
  animation-name: upDown;
}
@-webkit-keyframes leftRight {
  0% {
    -webkit-transform: translate3d(5%, 0%, 0);
    transform: translate3d(5%, 0%, 0);
  }
  25% {
    -webkit-transform: translate3d(5%, 0%, 0);
    transform: translate3d(5%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(5%, 0%, 0);
    transform: translate3d(5%, 0%, 0);
  }
}
@keyframes leftRight {
  0% {
    -webkit-transform: translate3d(5%, 0%, 0);
    transform: translate3d(5%, 0%, 0);
  }
  25% {
    -webkit-transform: translate3d(5%, 0%, 0);
    transform: translate3d(5%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(5%, 0%, 0);
    transform: translate3d(5%, 0%, 0);
  }
}
.leftRight {
  -webkit-animation-name: leftRight;
  animation-name: leftRight;
}
@-webkit-keyframes rightLeft {
  0% {
    -webkit-transform: translate3d(-5%, 0%, 0);
    transform: translate3d(-5%, 0%, 0);
  }
  25% {
    -webkit-transform: translate3d(-5%, 0%, 0);
    transform: translate3d(-5%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5%, 0%, 0);
    transform: translate3d(-5%, 0%, 0);
  }
}
@keyframes rightLeft {
  0% {
    -webkit-transform: translate3d(-5%, 0%, 0);
    transform: translate3d(-5%, 0%, 0);
  }
  25% {
    -webkit-transform: translate3d(-5%, 0%, 0);
    transform: translate3d(-5%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5%, 0%, 0);
    transform: translate3d(-5%, 0%, 0);
  }
}
.rightLeft {
  -webkit-animation-name: rightLeft;
  animation-name: rightLeft;
}
#animated-centerbar {
  z-index: 0;
}
html,
button,
input,
select,
textarea {
  color: #222;
}
body {
  font-size: 1em;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
img {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  display: none !important;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
.visible {
  display: inline-block !important;
}
.clearfix:after,
div.tabBox:after,
section:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix,
html[xmlns] div.tabBox,
section {
  display: block;
}
* html .clearfix,
* html section {
  height: 1%;
}
.clear {
  clear: both;
}
#products-nav .fa {
  color: #00bbde;
}
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links for images, or javascript/internal links
     */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
body,
html {
  min-width: 1050px;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  margin: 0;
  background: #e5e5e5;
}
/* #Typography Styling
================================================== */
h1,
h2,
h3,
h4 {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}
p,
section ul li {
  font-weight: 300;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}
/* #Base Framework Styling
================================================== */
#max-wrapper {
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.wrapper {
  width: 95%;
  padding: 0 2.5%;
  margin: 0 auto;
  max-width: 1450px;
  min-width: 975px;
}
.wide-wrapper {
  width: 98%;
  padding: 0 1%;
  margin: 0 auto;
  max-width: 2000px;
  min-width: 975px;
}
#home-action .wide-wrapper {
  width: 100%;
  padding: 0;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.margin7-left {
  margin-left: 7%;
}
.margin7-right {
  margin-right: 7%;
}
.margin5-left {
  margin-left: 5%;
}
.margin5-right {
  margin-right: 5%;
}
.margin2-left {
  margin-left: 2.5%;
}
.margin2-right {
  margin-right: 2.5%;
}
.padding5-left {
  padding-left: 5%;
}
.padding5-right {
  padding-right: 5%;
}
.padding2-left {
  padding-left: 2.5%;
}
.padding2-right {
  padding-right: 2.5%;
}
.relative {
  position: relative;
}
.z-front {
  z-index: 10;
}
.z-back {
  z-index: 0;
}
/* NON-PADDED CONTAINERS - FOR USE WITH 7% MARGINS */
.full100,
.full75,
.full65,
.full50,
.full30,
.full25 {
  position: relative;
  display: block;
}
.full100 {
  width: 100%;
}
.full75 {
  width: 73.75%;
}
.full70 {
  width: 70%;
}
.full65 {
  width: 65%;
}
.full60 {
  width: 60%;
}
.full55 {
  width: 52.5%;
}
.full50 {
  width: 47.5%;
}
.full45 {
  width: 43%;
}
.full40 {
  width: 40%;
}
.full35 {
  width: 32.5%;
}
.full30 {
  width: 30%;
}
.full27 {
  width: 28.25%;
  text-align: center;
}
.full25 {
  width: 21.25%;
}
.full20 {
  width: 18%;
}
.full7 {
  width: 7.5%;
}
.full5 {
  width: 5%;
}
.input50 {
  width: 45.5%;
}
.arrow-spacer {
  min-height: 350px;
  background: url(../img/arrow-spacer.png) center center no-repeat;
  background-size: 24px 55px;
}
#standing-desk .arrow-spacer {
  min-height: 270px;
}
.grey {
  background: #f5f5f5;
}
.center-all {
  text-align: center;
  margin: 0 auto;
}
.inset-shadow,
.drop-shadow,
.up-shadow {
  position: relative;
  z-index: 9;
}
.inset-shadow {
  -moz-box-shadow: inset 0 -1px 45px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: inset 0 -1px 45px rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 -1px 45px rgba(0, 0, 0, 0.07);
}
.inset-shadow-grey {
  -moz-box-shadow: inset 0 -1px 45px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 -1px 45px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 45px rgba(0, 0, 0, 0.1);
}
.drop-shadow {
  -moz-box-shadow: 0 12px 23px rgba(0, 50, 60, 0.09);
  -webkit-box-shadow: 0 12px 23px rgba(0, 50, 60, 0.09);
  box-shadow: 0 12px 23px rgba(0, 50, 60, 0.09);
}
.up-shadow {
  -moz-box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07);
}
.image img {
  width: 100%;
  height: auto;
}
.image-height img {
  width: auto;
  max-height: 70px;
}
.image-height {
  text-align: center;
}
.absolute {
  position: absolute;
}
.bottom {
  bottom: 0;
}
.top {
  top: 0;
}
.button {
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #00bbde;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .05em;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
.button-outline {
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  border: 2px solid #fff;
}
.border-bottom {
  border-bottom: 1px solid #ddd;
}
.circle {
  width: 100px;
  height: 100px;
  border: 2px solid #ACACAC;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 120px;
}
.text-link {
  font-family: "proxima-nova", helvetica, arial, sans-serif;
  color: #00bbde;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.button-grey {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #bcbcbc;
  display: inline-block;
  color: #666;
  font-weight: 600;
  text-decoration: none;
  font-family: 'proxima-nova', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  box-shadow: 0px 4px 0px #878787;
}
.small {
  padding: 8px 16px;
  font-size: 14px;
}
.medium {
  padding: 13px 25px;
  font-size: 19px;
}
.large {
  padding: 14px 26px;
  font-size: 24px;
}
#button-product-header {
  padding: 8px 18px;
  font-size: 14px;
  float: right;
  margin: 7px 0px 6px 2.5%;
  border-top: none;
}
.bg-white {
  background: #fff;
}
.bg-grey {
  background: #f2f2f2;
}
header {
  width: 100%;
  height: 85px;
  position: fixed;
  z-index: 9999;
  max-width: 2000px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0;
  /*new color background header */
  background: rgba(0, 0, 0, 0.85);
}
#product-header {
  width: 100%;
  height: 49px;
  position: fixed;
  z-index: 9999;
  max-width: 2000px;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  top: 85px;
  left: 0px;
}
.header-background {
  background: rgba(0, 0, 0, 0.85);
}
header .wrapper,
#product-header .wrapper {
  width: 95%;
  padding: 0;
  max-width: 1450px;
  min-width: 975px;
  margin: 0 auto;
}
.product-header-hidden,
.product-onlyheader-hidden,
.button-hidden {
  opacity: 0;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.9);
}
.product-header-hidden-two {
  opacity: 0;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.9);
}
.product-header-visible {
  opacity: 1;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  visibility: visible;
}
.product-header-background {
  background: rgba(0, 0, 0, 0.9);
}
.button-visible {
  opacity: 1;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
#logo {
  position: absolute;
  width: 190px;
  height: 29px;
  top: 25px;
  left: 0;
  background: url(../img/evodesk-logo-white.png) center center no-repeat;
  background-size: 188px 28px;
  z-index: 99999;
  display: block;
}
#header-social ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
#header-social ul li {
  float: left;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  letter-spacing: .09em;
  padding: 7px 10px;
  margin: 0;
}
#header-social ul li a {
  color: #ccc;
  text-decoration: none;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x {
  overflow-x: hidden;
}
section {
  padding: 120px 0 130px;
}
#first {
  padding: 170px 0 130px;
}
.btn-below {
  margin-bottom: 1.75em !important;
}
#header-social {
  position: absolute;
  right: 2.5%;
  top: 30px;
  width: 180px;
  width: 250px;
  display: block;
}
#header-social a {
  display: block;
  float: right;
  padding: 0 5px;
}
#header-social p,
#footer-social p {
  float: left;
  color: #ccc;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  letter-spacing: .09em;
  padding: 5px 10px;
  margin: 0;
}
#banner {
  background: #f5f5f5;
  background: url(../img/banner-bg.jpg) top center fixed no-repeat #0a0a0a;
  height: 545px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
#gaming-desk-wrapper #banner {
  background: url(/img/gaming-space.jpg) top center fixed no-repeat #0a0a0a;
  height: auto;
}
#reviews-page #banner {
  height: auto;
}
#compare-page #banner {
  height: 525px;
}
#compare-banner-image {
  bottom: 0;
  left: 41%;
  height: 85%;
  width: auto;
}
#intro-home {
  padding: 80px 0;
}
#intro-home .full30 {
  text-align: center;
}
.sub-page #banner {
  height: 375px;
  background-position: 230px -200px;
}
#banner-text {
  width: 400px;
  text-align: center;
  z-index: 999;
  position: relative;
}
#reviews-page #banner-text {
  width: 460px;
}
#home-banner {
  bottom: 0;
  left: 37%;
  height: 85%;
  width: auto;
}
#game-banner {
  bottom: 0;
  left: 44%;
  height: 91%;
  width: auto;
}
#home #banner-text {
  padding-top: 180px;
  padding-left: 25px;
}
#gaming-desk-wrapper #banner-text {
  padding: 140px 0 60px 25px;
}
#reviews-page #banner-text {
  padding-top: 180px;
  padding-right: 25px;
  padding-bottom: 120px;
}
#reviews-page-banner {
  right: 53%;
  top: 48px;
  width: 730px;
  height: auto;
}
#contact-page #banner-text {
  padding-top: 175px;
  width: 600px;
}
#banner-text h1,
section > .standard h2,
#explore .full27 h2,
#compare-banner h2 {
  color: #ccc;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .25em;
  margin: 0;
  padding: 0;
}
#gaming-desk-wrapper #banner-text h1 {
  color: #ccc;
  font-size: 17px;
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .15em;
  margin: 0;
  padding: 0;
}
#explore .full27 h2 {
  font-size: 18px;
  letter-spacing: .06em;
  font-weight: 300;
}
#standing-desk #banner-text h1 {
  font-size: 19px;
  letter-spacing: .08em;
}
section > .standard h2 {
  color: #666;
}
section > .standard h2 {
  letter-spacing: .1em;
  padding-bottom: 10px;
  font-size: 16px;
}
#banner-text h3,
section > .standard h3,
#difference .full30 h2,
#finance .full55 h3,
#explore .full27 h3,
#home-action .full30 h2,
#gallery .full30 h2,
#compare-banner h3 {
  font-weight: 300;
  color: #252525;
  font-size: 64px;
  letter-spacing: .09em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
#banner-text h3,
#compare-banner h3 {
  text-shadow: 0px 2px 40px rgba(0, 0, 0, 0.53);
  color: #fff;
  font-family: "europa", "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1.2em;
}
#compare-banner {
  text-align: center;
}
#about #banner,
#options-page #banner {
  height: auto;
}
#only49 {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 188px;
  height: 74px;
}
#about #banner-text,
#options-page #banner-text {
  width: 600px;
  margin: 0 auto;
  float: none;
  margin: 140px auto 90px auto;
}
#about #banner-text h3,
#options-page #banner-text h3 {
  font-size: 60px;
  margin-bottom: 5px;
}
#contact-page #banner-text h1 {
  text-shadow: 0px 2px 40px rgba(0, 0, 0, 0.53);
  color: #fff;
  font-family: "europa", "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .1em;
  font-size: 45px;
}
#standing-desk #banner-text {
  width: 500px;
  margin: 190px 2.5% 0 0;
  float: right;
}
#standing-desk #banner-text h3 {
  font-size: 44px;
  margin-bottom: 5px;
  line-height: 1em;
}
#standing-desk #banner-text h1 {
  margin-bottom: 10px;
}
/* Old Compare Banner

#compare-page #banner-text { margin:160px auto;width: 600px;}
#compare-page #banner-text h3 {font-size:50px;margin-bottom: 5px;}
#compare-page #banner-text h1 {margin-bottom:10px;}
#compare-page #banner { height: 475px;} */
#compare-page #compare-banner {
  width: 450px;
  padding-top: 195px;
  padding-left: 2%;
}
#review-banner {
  bottom: 0;
  left: 46%;
  height: 85%;
  width: auto;
}
#difference .full30 h2,
#finance .full55 h2 {
  font-size: 22px;
  line-height: 1em;
  letter-spacing: .045em;
}
#home-action .full30 h2,
#gallery .full30 h2,
.explore-container h2 {
  font-size: 22px;
  line-height: 1em;
  letter-spacing: .045em;
}
section > .standard h3 {
  font-size: 35px;
  line-height: 1em;
  letter-spacing: .045em;
}
#explore .full27 h3 {
  font-size: 25px;
  line-height: 1.6em;
  letter-spacing: .045em;
  font-weight: 400;
}
section > .standard h3 span {
  color: #00bbde;
}
#banner-text p,
#compare-banner p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 16px;
  color: #fff;
}
.myBox {
  cursor: pointer;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
.myBox:hover {
  opacity: .6;
}
#banner-play {
  background: url(../img/play-button-outline2.png) left center no-repeat;
  background-size: 80px 55px;
  height: 23px;
  padding: 45px 0;
  width: 225px;
  text-align: right;
  display: inline-block;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #252525;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
#banner-play:hover {
  background-size: 100px 69px;
  padding: 45px 10px;
}
#banner-image {
  position: absolute;
  left: 44%;
  bottom: -30px;
  width: 670px;
  height: auto;
}
#standing-desk #banner-image {
  position: absolute;
  left: auto;
  right: 40%;
  bottom: -35px;
  width: 890px;
  height: auto;
}
#banner-oveflow {
  width: 670px;
  height: auto;
  position: absolute;
  top: -72px;
  left: 44%;
}
#home-controller {
  position: absolute;
  top: 0;
  left: 24%;
  width: 1100px;
  height: auto;
}
#home-action {
  padding: 10px 0 60px !important;
}
#gallery,
#reviews {
  padding: 0px !important;
}
#gaming-desk-wrapper #gallery {
  padding-top: 40px !important;
}
#rethink {
  position: absolute;
  right: 50%;
  bottom: 0;
}
#difference {
  padding: 125px 0;
}
#difference .full75 {
  margin-bottom: 35px;
}
#difference .full30 {
  width: 28.25%;
  text-align: center;
}
#difference .full30 p {
  text-align: left;
}
#difference .full30 img {
  margin-bottom: 35px;
}
#difference .full75 h3 {
  margin-bottom: 15px;
}
#difference .text-link {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
  padding: 35px 0 0 0;
}
#lavish .full75 h3,
#gaming-desk-wrapper #lavish .full75 h3 {
  text-transform: none;
  color: #fff;
  margin-bottom: 20px;
  font-size: 38px;
  /*text-shadow: 0px 3px 14px rgba(0, 0, 0, 0.6);*/
  line-height: 1.25em;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}
#lavish .full75 h3 a,
#gaming-desk-wrapper #lavish .full75 h3 a {
  color: #00bbde;
}
#lavish .full75 .twitter-post,
#gaming-desk-wrapper #lavish .full75 .twitter-post {
  color: #D3D3D3;
  font-size: 25px;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  color: #fff;
}
#lavish {
  background: url(../img/power-adjustable-desk-close-up-home.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -moz-box-shadow: inset 0 -1px 135px rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: inset 0 -1px 135px rgba(0, 0, 0, 0.9);
  box-shadow: inset 0 -1px 135px rgba(0, 0, 0, 0.9);
}
#gaming-desk-wrapper #monitor-arm {
  background: url(../img/space-background.jpg) no-repeat center center fixed #000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -moz-box-shadow: inset 0 -1px 135px rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: inset 0 -1px 135px rgba(0, 0, 0, 0.9);
  box-shadow: inset 0 -1px 135px rgba(0, 0, 0, 0.9);
}
#monitor-arm h3,
#monitor-arm p {
  color: #fff;
}
#monitor-arm h4 {
  font-weight: 300;
  color: #999 !important;
}
#lavish .twitter-handle,
#gaming-desk-wrapper #lavish .twitter-handle {
  margin: 0 auto;
  text-align: center;
  font-size: 35px;
  padding: 20px 0 0;
}
#gaming-monitor-arm-image {
  position: absolute;
  height: 86%;
  right: 44%;
  bottom: 0;
  width: auto;
}
#lavish .twitter-post .fa-twitter,
#gaming-desk-wrapper #lavish .twitter-post .fa-twitter {
  color: #55acee;
  margin-right: 5px;
  font-size: 20px;
  font-size: 30px;
}
/* #lavish .full75 span {font-weight: 300;
font-size: 18px;
line-height: 0;color:#ccc;}*/
#lavish .full75 h2,
#gaming-desk-wrapper #lavish .full75 h2 {
  color: #ccc;
  margin-bottom: 0;
}
#lavish .full75 a.text-link,
#gaming-desk-wrapper #lavish .full75 a.text-link {
  margin-bottom: 20px;
}
#lavish-title,
#gaming-desk-wrapper #lavish-title {
  margin-bottom: 25px;
}
#white-evodesk {
  position: absolute;
  top: 75px;
  right: 43%;
}
#lavish .twitter-link {
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
  text-decoration: none;
}
#home-benefits {
  position: absolute;
  bottom: 0;
  left: 45%;
  height: 100%;
  width: auto;
}
#contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
#contact-info h3 {
  font-size: 22px;
  color: #666;
  font-weight: 400;
  margin: 0 0 4px;
}
#contact-info ul li {
  font-size: 18px;
  color: #222;
  font-weight: 300;
  line-height: 1em;
  padding: 3px 0;
}
#contact-info ul li a,
p a {
  color: #00bbde;
  text-decoration: none;
}
#finance {
  background: #333;
  padding: 120px 0 !important;
}
#finance .full55 {
  width: 490px;
}
#signup .full55 {
  width: 715px;
}
#finance .full55 h3,
#signup .full55 h3 {
  color: #fff;
  font-size: 50px;
  line-height: 1em;
}
#signup .full55 h3 {
  font-size: 40px;
  letter-spacing: .05em;
  margin: 10px 0 20px;
  padding: 0;
  font-weight: 300;
  text-transform: uppercase;
}
#finance .full55 h3 span,
#signup .full55 h3 span {
  color: #00bbde;
}
#finance .full55 h2,
#signup .full55 h2 {
  color: #00bbde;
  color: #999;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1em;
  margin-bottom: 10px;
  letter-spacing: .5em;
  margin-top: 0;
  padding-top: 0;
}
#finance .full55 p,
#signup .full55 p {
  color: #fff;
}
#finance-image {
  position: absolute;
  bottom: 20px;
  left: 43%;
}
#signup input[type="email"] {
  /* Style for Rounded Rectangle 3 */
  width: 620px;
  background-color: #2C2C2C;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border: none;
  color: #fff;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  padding: 20px 25px;
}
#signup input[type="email"]:focus {
  outline: none !important;
}
#signup input[type="submit"] {
  border: none;
  padding: 10px 18px;
  position: absolute;
  right: 40px;
  bottom: 15px;
}
#evo-monitor-arms {
  left: 51%;
  width: auto;
  height: 85%;
  bottom: 0;
}
#signup form {
  position: relative;
}
#signup .full55 p {
  font-size: 14px;
  color: #838383;
  font-weight: 300;
}
#signup input::-webkit-input-placeholder {
  color: #abb3ba;
  font-weight: 300;
}
#signup input:-moz-placeholder {
  /* Firefox 18- */
  color: #abb3ba;
  font-weight: 300;
}
#signup input::-moz-placeholder {
  /* Firefox 19+ */
  color: #abb3ba;
  font-weight: 300;
}
#signup input:-ms-input-placeholder {
  color: #abb3ba;
  font-weight: 300;
}
#finance .button {
  color: #333;
}
#explore {
  padding: 80px 0;
}
#power-adjustable-desk {
  background: url(../img/white-evodesk-adjustable-height-desk.jpg) no-repeat #f5f5f5;
  background-position: 80% 45px;
  background-size: 815px 669px;
}
footer {
  background: url(../img/banner-bg.jpg) center bottom no-repeat #0a0a0a;
  padding: 100px 0 135px;
}
ul.footer-nav {
  float: left;
  list-style: none;
  padding-left: 75px;
}
#footer-row1 {
  padding: 0;
}
.footer-nav li.footer-title {
  font-weight: 600;
  font-family: "proxima-nova", helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
  letter-spacing: .2em;
}
.footer-nav li {
  list-style: none;
  font-family: "proxima-nova", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  padding: 3px 0;
}
.footer-nav li a,
.footer-title {
  text-decoration: none;
  color: #fff;
}
#footer-info {
  width: 250px;
  position: absolute;
  right: 2.5%;
  margin-top: 13px;
}
#footer-logo {
  width: 244px;
  height: 36px;
  background: url(../img/footer-logo.png) left center no-repeat;
  background-size: 244px 36px;
}
#footer-info h2 {
  color: #BCBCBC;
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  letter-spacing: .18em;
  font-size: 14px;
  font-weight: 300;
}
#footer-social p {
  padding: 7px 10px 0 0;
}
.copyright {
  color: #666;
  font-size: 10px !important;
  text-transform: uppercase;
}
.copyright a {
  color: #468ba1;
  text-decoration: none;
}
#standing-desk #quick-action {
  padding: 10px 0 60px;
}
#standing-desk #quick-action .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 40px;
  padding: 0;
  text-transform: uppercase;
}
#standing-desk #quick-action .section-title span {
  color: #00bbde;
}
#standing-desk #home-action .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 40px;
  padding: 0;
  text-transform: uppercase;
}
#standing-desk #home-action .section-title span {
  color: #00bbde;
}
#evodesk-evoedge {
  left: 38%;
  height: 100%;
  width: auto;
  bottom: 0;
}
#quick-action .full30 {
  background: #f2f2f2;
  width: 33.3333%;
  height: 185px;
}
#quick-action .action-title {
  width: 100%;
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: .1em;
  font-weight: 300;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
#home-action .action-image,
#gallery .action-image {
  background: #f2f2f2;
  height: 175px;
  width: 100%;
  margin-bottom: 45px;
}
#reviews .full30 {
  background: #f2f2f2;
  margin-bottom: 10px;
}
#home-action .full30,
#gallery .full30,
#reviews .full30 {
  width: 33.3333%;
}
.explore-container {
  width: 31.8333%;
  margin: 0 .75%;
  background: #fff;
}
.row {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  margin-bottom: 2%;
}
.explore-container {
  align-items: stretch;
}
.desktop-images {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
  max-width: 1350px;
}
#explore-desktops,
#explore-frame,
#explore-options {
  padding: 70px 0 0;
}
.explore-intro {
  text-align: center;
  width: 90%;
  padding: 0 5%;
  max-width: 750px;
  margin: 0 auto 15px auto;
}
#explore-options .explore-intro {
  margin-bottom: 65px;
}
.explore-intro h2 {
  margin-top: 10px;
  padding: 0 !important;
  margin: 8px 0 0 !important;
}
.border-padded-wrapper {
  width: 80%;
  padding: 10%;
  text-align: center;
}
.border-padded-wrapper p {
  text-align: left;
}
.explore-container img {
  width: 100%;
  height: auto;
}
.border-wrapper img {
  width: 100%;
  height: auto;
}
.explore-container h2 {
  text-align: center;
  font-weight: 400 !important;
  color: #252525!important;
  letter-spacing: .07em !important;
  padding-bottom: 13px;
  font-size: 20px!important;
}
.explore-container h4 {
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-align: center;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .05em;
  color: #666 !important;
}
#home-action .full30 .text-wrapper,
#gallery .full30 .text-wrapper {
  width: 90%;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}
#reviews .full30 {
  overflow: hidden;
}
#reviews .full30 .quote-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 10% 10%;
  text-align: center;
  position: relative;
  z-index: 9;
}
#reviews .qw-img {
  padding: 6% 10% 6% 10% !important;
}
#reviews .full30 .quote-wrapper p {
  padding: 0;
  margin: 0;
}
#reviews .full30 .quote-wrapper h4 {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin: 25px 0 0 0;
  padding: 0;
}
#reviews .full30 .quote-wrapper h4 .fa {
  color: #00ACED;
}
.review p {
  font-weight: 300;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  line-height: 1.4em;
  font-size: 25px;
  font-style: italic;
}
.review-img {
  width: 100%;
  position: relative;
  z-index: 0;
}
#home-action .full30 h2,
#gallery .full30 h2 {
  font-weight: 400;
}
#home-action .action-title,
#gallery .action-title {
  width: 100%;
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: .1em;
  font-weight: 300;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.padded {
  position: relative;
  border: 5px solid #ffffff;
  border-top: 0;
  border-bottom: 0;
}
.padded {
  position: relative;
  border: 5px solid #ffffff;
  border-top: 0;
  border-bottom: 0;
  height: 100%;
}
#overview-action {
  background: url(../img/overview.jpg) center bottom no-repeat;
  background-size: auto 100%;
}
#watch-action {
  background: url(../img/watch.jpg) center bottom no-repeat;
  background-size: auto 100%;
}
#design-action {
  background: url(../img/design.jpg) center bottom no-repeat;
  background-size: auto 100%;
}
#explore-action {
  background: url(../img/explore-evodesk.jpg) left top no-repeat;
  background-size: auto 112%;
}
#spread-action {
  background: url(../img/standing-desk-news.jpg) center top no-repeat;
  background-size: auto 120%;
}
#hk-action {
  background: url(../img/harman-kardon-integrated-sound-system.jpg) right bottom no-repeat;
  background-size: auto 120%;
}
#hk-logo {
  opacity: .9;
  width: 195px;
  height: auto;
  margin-bottom: 8px;
}
#spread-action .fa {
  font-size: 45px;
  color: #a6a6a6;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
#spread-action .fa:hover {
  color: #3b5998;
}
#spread-action:hover .fa {
  color: #3b5998;
}
.action-image-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 90%;
}
.action-image-text h4 {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin: 0;
  padding: 0;
}
.action-image-text h2 {
  font-size: 16px !important;
  font-weight: 300 !important;
  color: #666 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-transform: none !important;
}
#evo-edge-slate {
  right: 46%;
  height: 100%;
  width: auto;
  bottom: 0;
}
#evodesk-edge-slate-home {
  right: 50%;
  height: 93%;
  bottom: 0;
  width: auto;
}
#home-style {
  height: 100%;
  width: auto;
  right: 30%;
  bottom: 0;
}
#contact-us {
  padding: 70px 0;
}
#main section .wrapper {
  width: 90%;
  min-width: 875px;
  padding: 0 5%;
}
#main section .standard h2 {
  font-size: 18px;
  letter-spacing: .10em;
}
#main section .standard h3 {
  font-size: 35px;
}
#main section ul,
.specs ul,
#frame-specs ul,
#cpu-mount ul,
#standing-mats ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 20px;
}
#main section ul li,
.specs ul li,
#frame-specs ul li,
#cpu-mount ul li,
#standing-mats ul li {
  padding: 15px 0px;
  line-height: 1.3em;
  border-bottom: 1px solid #ddd;
}
.specs ul {
  padding: 0;
}
.specs ul li {
  padding: 20px 0px;
}
.specs ul li:last-of-type {
  border-bottom: none;
}
#tab-0,
#tab-1,
#tab-2,
#tab-3,
#tab-4,
#tab-5 {
  border: 1px solid #ddd;
}
#performance .full30 h3 {
  font-size: 20px !important;
  font-weight: 400;
  text-transform: none;
  line-height: 1.3em;
}
#performance .full30 p {
  font-size: 16px !important;
}
#performance .full30 h3 .fa {
  width: 30px;
  color: #ccc;
  font-size: 1em;
}
#performance .full100 {
  margin: 3.5% 0;
}
#performance .full100:first-of-type {
  margin-top: 0;
}
#performance .full100:last-of-type {
  margin-bottom: 0;
}
#starting-at {
  position: absolute;
  top: 96px;
  right: 2%;
  width: 160px;
  height: auto;
  z-index: 99;
}
#gaming-desk-wrapper #starting-at {
  position: absolute;
  top: 90px;
  right: 2%;
  width: 160px;
  z-index: 999;
  width: 116px;
  height: auto;
}
#banner-image #banner-image-desk {
  width: 100%;
  height: auto;
}
#store-options .full100 {
  padding: 40px 0;
}
#store-options .full100:first-of-type {
  padding: 0 0 40px 0;
}
#store-options .full50 h2 {
  padding-bottom: 10px;
  color: #222;
  font-size: 22px !important;
  text-transform: none !important;
  letter-spacing: 0em !important;
}
#store-options .full50 p {
  margin: 0 0 20px;
  font-size: 17px;
}
#standing-sync {
  right: 45%;
  bottom: 0;
  height: 92%;
  width: auto;
}
#compare-evodesk-banner {
  bottom: 0;
  width: 94%;
  height: auto;
}
#compare-table {
  border-right: 1px solid #ddd;
  border-bottom: none;
  border-left: none;
  border-top: 1px solid #ddd;
  border: 2px solid #ddd;
  border-radius: 7px 7px;
  width: 100%;
}
#compare-table-header {
  border: none;
  width: 100%;
}
.logo-column,
.other-column {
  width: 32%;
  text-align: center !important;
}
.other-column {
  font-size: 25px !important;
  font-weight: 400;
  font-family: "proxima-nova", sans-serif;
  color: #8A8A8A;
}
.table-title {
  width: 25%;
  text-align: left !important;
}
.table-title h1 {
  font-size: 22px !important;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  letter-spacing: .08em;
}
.table-title h1 span {
  color: #00bbde;
}
#table-products,
#table-products tr {
  width: 100%;
}
#compare-body {
  padding: 0 0 60px;
}
#compare-table td,
#compare-table-header td {
  border-bottom: 1px solid #ddd;
}
#table-products {
  margin: 0;
  border: none;
}
#table-products td {
  border-right: none !important;
}
#table-products .product-column {
  font-family: "proxima-nova", sans-serif;
  color: #999;
}
#table-products .product-column img {
  width: 100%;
  height: auto;
}
#compare-table td,
#compare-table-header td {
  padding: 25px 20px;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
}
#compare-table td:last-of-type,
#compare-table-header td:last-of-type {
  border-right: none;
}
.product-column {
  width: 32%;
  text-align: center !important;
}
.hidden-td {
  border-left: 3px solid #fff;
  margin-left: -1px;
  position: relative;
  z-index: 999;
}
.table-feature {
  width: 25%;
  text-align: left !important;
  font-weight: 500;
  font-size: 19px !important;
  background: #f5f5f5;
  font-weight: 400;
}
.logo-column {
  background: #00bbde;
}
.hidden-td {
  width: 25%;
}
#compare-table-wrapper {
  width: 90%;
  margin: 0 auto;
}
#evodesk-product-column {
  width: 41%;
  height: auto;
  right: 37%;
  position: absolute;
  bottom: 0;
}
#other-product-column {
  width: 27%;
  height: auto;
  position: absolute;
  right: 3%;
  bottom: 0;
}
#other-product-column {
  width: 30%;
  height: auto;
  position: absolute;
}
#table-products .hidden-td {
  width: 28%;
}
#compare-header-wrapper {
  width: 100%;
  height: 170px;
  position: relative;
  overflow: hidden;
}
#standing-desk-sync {
  bottom: 0;
  right: 50%;
}
#standing-desk-sync-bottom {
  top: 0;
  right: 50%;
}
#standard-controller {
  height: 100%;
  width: auto;
  top: 0;
  left: 42%;
}
#standing-desk-benefits {
  height: 100%;
  right: 43%;
  top: 0;
  width: auto;
}
#evodesk-desktop {
  height: 98%;
  top: 2%;
  right: 54%;
  width: auto;
}
#future-proof {
  top: 2%;
  left: 50%;
}
#standing-desk-options {
  left: 50%;
  height: 90%;
  bottom: 0;
}
#standing-desk-frame {
  right: 50%;
  bottom: 0;
  height: 93%;
  width: auto;
}
#real-wood {
  left: 53%;
  height: 82%;
  top: 8%;
  width: auto;
}
#evoedge-desktop {
  right: 51%;
  height: 48%;
  width: auto;
  top: 19%;
}
#standing-desk-white {
  left: 46%;
  height: auto;
  top: 14%;
  width: 60%;
}
#standing-desk-speakers {
  right: 47%;
  height: 90%;
  width: auto;
  top: 5%;
}
.specs {
  padding: 100px 0 90px;
}
.specs h3 {
  font-size: 35px;
}
.specs .section-title {
  width: 100%;
  margin-bottom: 35px;
  font-size: 20px;
}
.slicknav_menu {
  display: none;
}
#programmable-controller {
  left: 47%;
  width: 48%;
  height: auto;
  top: 28%;
}
#cable-pass {
  left: 45%;
  bottom: 0;
  height: 90%;
  width: auto;
}
#vanity-cover-smarter {
  right: 53%;
  height: 59%;
  top: 21%;
  width: auto;
}
#evo-keyboard {
  right: 50%;
  height: 93%;
  width: auto;
  bottom: 0;
}
#harman-kardon-sound-system {
  height: 100%;
  width: auto;
  left: 50%;
  bottom: 0;
}
#ergo-pro-desktop {
  right: 53%;
  height: 75%;
  top: 16%;
  width: auto;
}
#gaming-desk-wrapper #ergo-pro-desktop {
  right: 52%;
  height: 98%;
  top: 6%;
  width: auto;
}
#standard-sub-page #banner {
  height: auto;
}
#standard-sub-page #banner-text {
  width: 600px;
  margin: 140px auto 100px auto;
}
#standard-sub-page #banner-text h3 {
  font-size: 40px;
}
#standard-sub-page section {
  padding: 40px 0;
}
#standard-sub-page section h3,
#standard-sub-page section h2 {
  font-size: 25px;
  margin-top: 30px;
  letter-spacing: 0;
  padding-bottom: 0;
  text-transform: none;
  color: #252525;
}
#desk-wrapper {
  width: 100%;
  position: relative;
  margin-top: 425px;
}
#fly-top {
  z-index: 11;
}
#fly-left {
  z-index: 9;
}
#fly-right {
  z-index: 9;
}
#standing-desk-center-frame {
  z-index: 6;
}
#banner-text-wrapper {
  position: absolute;
  width: 100%;
  z-index: 999;
}
#harman-kardon-sound-system-integrated {
  height: 94%;
  width: auto;
  bottom: 0;
  left: 50%;
}
#cable-management-tray {
  right: 55%;
  height: 80%;
  top: 10%;
  width: auto;
}
#cable-management-tray2 {
  left: 55%;
  height: 92%;
  top: 10%;
  width: auto;
}
#financing-standing-desk {
  height: 91%;
  bottom: 0;
  width: auto;
  left: 41%;
}
.label-right {
  top: 19%;
  right: 1.5%;
  z-index: 9000;
}
.label-left {
  top: 3%;
  left: 1.5%;
  z-index: 9000;
}
.table-feature a {
  text-decoration: none;
  color: #222;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
}
.table-feature a:hover {
  color: #00bbde;
}
.table-feature a .fa {
  color: #00bbde;
  font-size: 20px;
  margin-left: 6px;
}
.tab-click .fa {
  color: #B5B5B5;
  font-size: 40px;
}
#signup {
  background: #3e4144;
  padding: 100px 0 90px;
}
/* Gallery Page Hover Animations */
.gallery-image {
  background: #f2f2f2;
  /*height: 400px;*/
  margin-bottom: 10px;
  overflow: hidden;
}
.gallery-image img {
  max-width: none;
  /* width: -webkit-calc(100% + 50px);*/
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: transform 0.75s;
  -webkit-transform: none;
  transform: none;
  z-index: 0;
}
figure:hover > .gallery-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
  transform: scale(1.1, 1.1);
}
figure:hover + .gallery-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
  transform: scale(1.1, 1.1);
}
figure:hover .gallery-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
  transform: scale(1.1, 1.1);
}
#gallery-banner-image-wrapper {
  height: 545px;
}
#gallery-banner-image {
  top: 0;
  width: 80%;
  padding: 0 8%;
  height: auto;
  max-width: 1250px;
}
#gallery-title {
  padding: 40px 0;
}
#gallery-title h2 {
  font-weight: 300;
  color: #252525;
  font-size: 25px;
  letter-spacing: .09em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
#gaming-desk-wrapper #gallery-title h2 {
  font-size: 35px;
}
.gallery-image figure {
  position: absolute;
  float: none;
  overflow: hidden;
  margin: 0;
  width: 100%;
  background: none;
  text-align: center;
  cursor: pointer;
  bottom: 0;
  /* padding-top: 328px;*/
  padding-top: 500px;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  z-index: 9;
}
figure.effect-zoe:hover {
  background: rgba(0, 0, 0, 0.75);
}
.icon-links {
  font-weight: 400;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 30px;
  display: block;
  width: auto;
  float: right;
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.icon-links .fa {
  color: #999;
  padding: 0 3px;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  font-size: 25px;
}
.icon-links li {
  float: left;
  color: #ccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0 3px;
}
.icon-links li:first-of-type {
  padding-top: 4px;
  padding-right: 10px;
}
.icon-links .fa-facebook-square:hover {
  color: #3B5998;
}
.icon-links .fa-twitter:hover {
  color: #00ACED;
}
.icon-links .fa-pinterest:hover {
  color: #CB2027;
}
/*---------------*/
/***** Zoe *****/
/*---------------*/
figure.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  padding: 1em;
  height: 40px;
  background: #000;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  z-index: 2;
  position: relative;
}
figure.effect-zoe h2 {
  float: left;
}
figure.effect-zoe p.icon-links a {
  float: left;
  color: #999;
  font-size: 1.4em;
}
figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
  color: #252d31;
}
figure.effect-zoe p.description {
  position: absolute;
  bottom: 15em;
  left: 0;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-size: 90%;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  -webkit-backface-visibility: hidden;
}
figure.effect-zoe p.description .fa {
  font-size: 39px;
  color: rgba(255, 255, 255, 0.6);
}
figure.effect-zoe h2,
figure.effect-zoe .icon-links li {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
figure.effect-zoe h2 {
  display: inline-block;
}
figure.effect-zoe:hover p.description {
  opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover .icon-links li {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-zoe:hover .icon-links li:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
figure.effect-zoe:hover .icon-links li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
figure.effect-zoe:hover .icon-links li:first-child {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.gall {
  display: block;
  width: 700px;
  height: 700px;
  position: absolute;
  left: 0;
  bottom: 72px;
  z-index: 4;
}
#evo-keyboard {
  right: 49%;
  height: 97%;
  width: auto;
  top: 0;
}
#keyboard-platform {
  padding-bottom: 50px;
}
#posi-loc-img {
  left: 44.5%;
  top: 0;
  height: 100%;
  width: auto;
}
#posi-loc-img2 {
  right: 44.5%;
  top: 0;
  height: 100%;
  width: auto;
}
#cpu-mount-img {
  top: 0;
  height: 87%;
  width: auto;
  right: 35%;
}
.list-section ul {
  list-style: none;
  padding: 0;
}
.list-section ul li {
  margin: 3px 0;
}
.list-section ul li .fa {
  color: #00bbde;
  margin: 0 5px 0 0;
}
#single-right-monitor {
  bottom: -5%;
  left: 51%;
  height: 95%;
  width: auto;
}
#double-left-monitor {
  display: none;
}
#monitor-arms .full45 {
  float: left;
  text-align: left;
}
#treadmill-img {
  left: 52%;
  height: 50%;
  width: auto;
  top: 16%;
}
#standing-desk #banner-text {
  width: 535px;
  margin: 175px auto;
  float: none;
}
#desk-wrapper {
  width: 100%;
  position: relative;
  margin-top: 325px;
}
#banner {
  background-position: center -10px;
}
#banner-text p {
  width: 95%;
  margin: 10px auto;
}
#gaming-desk-wrapper #banner-text h3 {
  font-size: 62px;
}
#gaming-desk-wrapper #banner-text p {
  font-size: 20px;
}
#evodesk-models h2 span {
  font-weight: 400;
  color: #252525;
}
#evodesk-models h2 {
  font-weight: 100;
  color: #999;
  font-size: 40px;
  margin: 0;
  padding: 0;
}
#evodesk-models h2,
#evodesk-models h4,
#evodesk-models p {
  text-align: center;
}
#evodesk-models h4 {
  font-size: 18px;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 200;
  color: #666;
  margin: 0;
  padding: 0;
}
#evodesk-models h3 {
  text-align: center;
  font-weight: 300;
  color: #252525;
  font-size: 34px;
  letter-spacing: .09em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 50px;
}
#configure-link {
  margin-top: 50px;
}
#evodesk-models img {
  width: 86%;
  height: auto;
  margin: 0 4% 0px 10%;
}
#evodesk-standard h3,
#evodesk-studio h3 {
  text-transform: uppercase;
  letter-spacing: .015em;
  margin-bottom: 10px;
}
#evodesk-standard h3 span,
#evodesk-studio h3 span {
  color: #666;
  font-weight: 100;
}
#standard-evodesk-img {
  position: absolute;
  height: auto;
  width: 42%;
  top: 5%;
  right: 53%;
}
#studio-evodesk-img,
#evodesk-pro-img {
  position: absolute;
  height: auto;
  width: 50%;
  bottom: auto;
  top: 0;
  left: 45%;
}
#evodesk-studio {
  padding-top: 70px;
  padding-bottom: 165px;
  overflow: visible;
}
.featured-article-bg-grey {
  background: #3e4144;
  padding: 90px 0 100px;
}
.featured-article-bg-light {
  padding: 90px 0 100px;
  background: #f2f2f2;
}
.featured-article-bg-grey .featured-article {
  text-align: center;
}
.featured-article-bg-grey .featured-article p {
  color: #fff;
}
.featured-article-bg-light .featured-article p {
  color: #333;
}
#reviews .full100 {
  margin: 25px 0;
}
.featured-article-bg-grey .vertical-seperator {
  height: 80%;
  position: absolute;
  display: block;
  width: 1px;
  background: #686c70;
  left: 50%;
  top: 10%;
}
.featured50-logo {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}
.featured50-logo img {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin: 0 auto;
}
#customers-title {
  padding: 30px 0;
}
#customers-title h2 {
  margin: 0;
}
.featured-article p {
  font-size: 18px;
}
.featured-article-bg-light .featured-article p {
  font-size: 22px;
}
#details-logo {
  position: absolute;
  left: 66%;
  width: 23%;
  height: auto;
  top: 90px;
}
#alpha-logo {
  position: absolute;
  left: 66%;
  width: 23%;
  height: auto;
  top: 35px;
}
#psfk-logo {
  position: absolute;
  right: 77%;
  width: auto;
  height: 90%;
  top: 5%;
}
#digital-trends-logo,
#pc-gamer-logo {
  position: relative;
  display: block;
}
#digital-trends-logo img,
#pc-gamer-logo img {
  width: 100%;
  height: auto;
}
#gaming-desk-wrapper #overview h3,
#gaming-desk-wrapper #overview p {
  color: #fff;
}
#gaming-desk-wrapper #overview h2 {
  color: #ddd;
}
#gaming-desk-wrapper #overview {
  background: #3e4144;
  padding: 80px 0;
}
#overview-bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#overview-bullets ul li {
  color: #fff;
  font-weight: 300;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  padding: 10px 0;
  border-bottom: 1px solid #474747;
}
#gaming-desk-wrapper section > .standard h3 {
  font-size: 45px;
  font-weight: 300;
  font-family: "europa", "proxima-nova", Helvetica, Arial, sans-serif;
}
#gaming-desk-wrapper #overview-bullets h3 {
  font-size: 38px;
}
#overview-bullets ul li a {
  color: #fff;
  text-decoration: none;
}
#overview-bullets ul li .fa {
  color: #00bbde;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
#gaming-desk-wrapper p {
  font-size: 22px;
}
#gaming-desk-wrapper #overview #video {
  width: 58%;
}
#gaming-desk-wrapper section > .standard h4 {
  color: #666;
  font-size: 30px;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 200;
  margin: 0;
  padding: 0;
}
#adjustable-frame-image {
  position: absolute;
  right: 55%;
  height: 80%;
  top: 12%;
  width: auto;
}
#evoguard-desktop {
  position: absolute;
  left: 50%;
  height: 93%;
  top: 8%;
  width: auto;
}
#gaming-smart-pass {
  position: absolute;
  left: 43%;
  top: -1%;
  height: 123%;
  width: auto;
}
.gaming-configuration {
  margin: 0 1%;
  text-align: center;
  width: 23%;
}
.gaming-configuration img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
#configurations {
  padding: 80px 0;
}
#configurations .full65 {
  margin-bottom: 55px;
}
#configurations .full65 h3 {
  margin-bottom: 20px;
}
.title-block {
  width: 100%;
  padding: 30px 0;
  text-align: center;
}
.tb-1 {
  background: #5c5c5c;
}
.tb-2 {
  background: #484848;
}
.tb-3 {
  background: #383838;
}
.tb-4 {
  background: #242424;
}
#gaming-desk-wrapper section > .standard .title-block h3 {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
}
#gaming-desk-wrapper section > .standard .title-block h4 {
  color: #ccc;
  font-weight: 300;
  font-size: 20px;
}
#gaming-desk-wrapper section > .standard .features-block {
  background: #fff;
  width: 78%;
  padding: 25px 11%;
  overflow: hidden;
  min-height: 475px;
}
#gaming-desk-wrapper section > .standard .features-block p {
  text-align: left;
  font-size: 14px;
  line-height: 1.5em;
  padding-top: 0;
  min-height: 115px;
  margin-top: 0;
}
#gaming-desk-wrapper section > .standard .features-block ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  text-align: left;
}
#gaming-desk-wrapper section > .standard .features-block ul li {
  padding: 5px 0 5px 15px;
  font-size: 15px;
  position: relative;
  font-weight: 400;
}
#gaming-desk-wrapper section > .standard .features-block ul li a {
  color: #222;
  text-decoration: none;
}
#gaming-desk-wrapper section > .standard .features-block ul li .fa-plus {
  color: #ABABAB;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 11px;
}
#gaming-desk-wrapper section > .standard .features-block ul li .fa-info-circle {
  color: #fff;
  position: absolute;
  display: block;
  left: -40px;
  top: 9px;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  font-size: 13px;
}
#gaming-desk-wrapper section > .standard .features-block ul li:hover .fa-info-circle {
  left: -22px;
  top: 9px;
  color: #00bbde;
}
#gaming-desk-wrapper section > .standard .features-block .button {
  display: block;
  width: 175px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -88px;
  padding: 12px 0;
}
#sustainable-home {
  padding-top: 25px;
}
#great-value {
  padding-bottom: 55px;
}
#wood-desktops {
  height: 88%;
  top: 0px;
  left: 45%;
  width: auto;
}
.disclaimer {
  font-size: 14px;
  color: #7C7C7C;
}
#animated-frame {
  width: 80%;
  height: 275px;
  margin: 0 auto;
  position: relative;
  max-width: 1275px;
}
#animated-frame img {
  width: 100%;
  height: auto;
}
#explore-frame .explore-intro {
  margin-bottom: 35px;
}
#standing-desk #elevate,
#standing-desk #overview {
  padding: 95px 0;
}
#standing-desk #elevate .full35,
#standing-desk #overview .full35 {
  width: 35%;
}
#options-page #banner-text h3 {
  line-height: 1em;
}
#desktop-specifications,
#frame-specifications {
  padding: 60px 0;
}
#desktop-specifications h3,
#frame-specifications h3 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
}
#desktop-specs-img,
#frame-specs-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  max-width: 1100px;
}
#frame-specs-img {
  margin: 0 auto;
}
#standing-mat {
  bottom: 0;
  left: 45%;
  height: 90%;
  width: auto;
}
@media (min-width: 1600px) {
  #watch-action,
  #design-action,
  #overview-action {
    background-size: 100% auto;
  }
}
@media (min-width: 1300px) {
  #animated-frame {
    height: 375px;
  }
  .featured-article p {
    font-size: 19px;
  }
  #compare-banner-image {
    left: 46%;
  }
  #home-action .full30 .text-wrapper,
  #gallery .full30 .text-wrapper {
    width: 80%;
  }
  #home-action .action-image,
  #gallery .action-image {
    height: 245px;
  }
  #gaming-desk-wrapper section > .standard .features-block p {
    font-size: 15px;
  }
  #gaming-desk-wrapper section > .standard .features-block ul li {
    font-size: 16px;
  }
  p {
    font-weight: 300;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6em;
  }
  nav ul li {
    font-size: 15px;
  }
  nav ul li a {
    padding: 30px 30px 25px 30px;
  }
  #home #banner-text {
    padding-top: 255px;
    padding-left: 10px;
  }
  #reviews-page #banner-text {
    padding-top: 255px;
    padding-right: 10px;
    padding-bottom: 165px;
  }
  #gaming-desk-wrapper #banner-text h3 {
    font-size: 78px;
  }
  #gaming-desk-wrapper section > .standard h4 {
    font-size: 34px;
  }
  #gaming-desk-wrapper section > .standard h3 {
    font-size: 55px;
  }
  #gaming-desk-wrapper #overview {
    padding: 120px 0 130px;
  }
  #overview-bullets ul li {
    font-size: 20px;
  }
  #gaming-desk-wrapper #overview-bullets h3 {
    font-size: 45px;
  }
  .sub-page #banner {
    height: 445px;
  }
  #banner-image {
    position: absolute;
    left: 43.75%;
    bottom: -80px;
    width: 900px;
    height: auto;
  }
  #standing-desk #banner-image {
    position: absolute;
    left: auto;
    right: 48.75%;
    bottom: -30px;
    width: 1145px;
    height: auto;
  }
  #standing-desk #banner-text {
    width: 795px;
    margin: 250px 2% 0 0;
  }
  #standing-desk #banner-text {
    width: 745px;
    margin: 220px auto;
    float: none;
  }
  #desk-wrapper {
    width: 100%;
    position: relative;
    margin-top: 425px;
  }
  #standing-desk #banner-text h3 {
    font-size: 65px;
    margin-bottom: 10px;
  }
  #standing-desk #banner-text h1 {
    font-size: 22px;
  }
  #gaming-desk-wrapper #banner-text {
    padding: 200px 0 130px 25px;
  }
  #banner-text {
    width: 500px;
  }
  #reviews-page #banner-text {
    width: 595px;
  }
  #banner-text h1,
  #compare-banner h2 {
    color: #ccc;
    font-size: 24px;
  }
  #gaming-desk-wrapper #banner-text h1 {
    color: #ccc;
    font-size: 17px;
    text-transform: uppercase;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: .15em;
    margin: 0;
    padding: 0;
  }
  #gaming-desk-wrapper #banner-text h1 {
    font-size: 20px;
  }
  #gaming-desk-wrapper #banner-text p {
    font-size: 23px;
  }
  #gaming-desk-wrapper #overview h3 {
    margin-bottom: 20px;
  }
  #banner-oveflow {
    cursor: default;
    left: 43.75%;
    top: -57px;
    width: 900px;
    height: auto;
    position: absolute;
  }
  #banner {
    height: 720px;
  }
  #reviews-page #banner {
    height: auto;
  }
  #compare-page #banner {
    height: 620px;
  }
  #banner-text h3,
  #compare-banner h3 {
    font-size: 82px;
  }
  #banner-text p,
  #compare-banner p {
    font-size: 18px;
  }
  section {
    padding: 140px 0 145px;
  }
  section > .standard h3 {
    font-size: 45px;
  }
  #first {
    padding: 200px 0 165px;
  }
  #lavish .full75 h3 {
    font-size: 43px;
  }
  #home-controller {
    position: absolute;
    top: 0;
    left: 28%;
    width: 1650px;
    height: auto;
  }
  #quick-action .full30 {
    height: 240px;
  }
  #starting-at {
    position: absolute;
    top: 105px;
    right: 2%;
    width: 174px;
    height: auto;
    z-index: 999;
  }
  #gaming-desk-wrapper #starting-at {
    position: absolute;
    top: 105px;
    left: 84%;
    width: 174px;
    height: auto;
    z-index: 999;
  }
  #standing-desk #banner-text h1 {
    letter-spacing: .25em;
  }
  #home #harman-kardon-sound-system {
    left: 47%;
  }
  #evoedge-desktop {
    height: 58%;
  }
  #real-wood {
    left: 51%;
    height: 92%;
    top: 4%;
    width: auto;
  }
  #gaming-desk-wrapper #real-wood {
    left: 56%;
    height: 92%;
    top: 4%;
    width: auto;
  }
  #compare-page #compare-banner {
    width: 600px;
    padding-top: 220px;
    padding-left: 10px;
  }
  #gallery-banner-image-wrapper {
    height: 720px;
  }
  #reviews-page-banner {
    right: 51%;
    top: 48px;
    width: 1040px;
    height: auto;
  }
  #double-left-monitor {
    bottom: 0;
    height: 92%;
    width: auto;
    right: 71%;
    display: block;
  }
  #single-right-monitor {
    bottom: 0;
    left: 71%;
    height: 90%;
    width: auto;
  }
  #monitor-arms .full45 {
    float: none;
    text-align: center;
    margin: 0 auto;
  }
  .explore-container h2 {
    font-size: 22px!important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  header {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
  }
  header .wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #header-social ul {
    margin: 0 !important;
  }
  #product-header {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  #button-product-header {
    margin: 10px 10px 6px 2.5%;
    font-weight: 600;
  }
  #evodesk-models h2 {
    font-size: 24px;
  }
  #evodesk-models h4 {
    font-size: 16px;
  }
  #evodesk-models h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.rw-words span h3 a {
  color: #00bbde;
}
.rw-words span {
  position: absolute;
  opacity: 0;
  overflow: hidden;
  -webkit-animation: rotateWord 32s linear infinite 0s;
  -ms-animation: rotateWord 32s linear infinite 0s;
  animation: rotateWord 32s linear infinite 0s;
  width: 100%;
  left: 0;
}
.rw-words span:nth-child(2) {
  -webkit-animation-delay: 8s;
  -ms-animation-delay: 8s;
  animation-delay: 8s;
}
.rw-words span:nth-child(3) {
  -webkit-animation-delay: 16s;
  -ms-animation-delay: 16s;
  animation-delay: 16s;
}
.rw-words span:nth-child(4) {
  -webkit-animation-delay: 24s;
  -ms-animation-delay: 24s;
  animation-delay: 24s;
}
@-webkit-keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
  }
  3% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  23% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    -ms-transform: translateY(-5px);
  }
  3% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }
  23% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }
  25% {
    opacity: 0;
    -ms-transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  3% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  23% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*-- jShowOff module styles --*/
#features,
#slidingFeatures,
#labelFeatures,
#basicFeatures,
#thumbFeatures {
  position: relative;
  overflow: hidden;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
}
.jshowoff {
  width: 80%;
  margin: 0 10%;
}
.jshowoff div,
.jshowoff img,
.jshowoff {
  position: absolute;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
}
#basicFeatures,
.jshowoff.basicFeatures,
.jshowoff.basicFeatures img,
.jshowoff.basicFeatures div {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.jshowoff h2,
.jshowoff p {
  font-size: 18px;
  padding: 15px 20px 0px;
  margin: 0;
}
.jshowoff p {
  font-size: 13px;
  line-height: 15px;
}
.eddie {
  float: right;
  padding: 15px 20px 15px 20px;
}
.jshowoff p.jshowoff-slidelinks {
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding: 340px 0 0 0;
  width: 130px;
}
.jshowoff-slidelinks a,
.jshowoff-controls a {
  display: inline-block;
  color: #585858 !important;
  padding: 5px 7px 5px;
  margin: 5px 0 0 5px;
  float: left;
  text-decoration: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  outline: none;
  font-size: 1px;
  line-height: 14px;
  border-radius: 40px;
  width: 6px;
  height: 10px;
  background-color: #585858;
}
.jshowoff-slidelinks a:hover,
.jshowoff-controls a:hover {
  color: #fff;
}
.jshowoff-slidelinks a.jshowoff-active,
.jshowoff-slidelinks a.jshowoff-active:hover {
  color: #fff;
  background-color: #fff;
}
p.jshowoff-controls {
  overflow: auto;
  height: 1%;
  padding: 0 0 5px 5px;
  margin: 0;
  -moz-border-radius-bottomleft: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-radius-bottomleft: 6px;
  -moz-border-radius-bottomright: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-radius-bottomright: 6px;
}
.jshowoff-controls a {
  margin: 5px 5px 0 0;
  font-size: 12px;
  line-height: 15px;
  padding: 4px 8px 5px;
}
.jshowoff-pausetext {
  color: #fff;
}
p a {
  color: #21bdf1;
}
/*-- Re-styled Thumbnail Demo --*/
.thumbFeatures p.jshowoff-slidelinks {
  bottom: 0;
  padding: 5px 0 5px 5px;
  right: 113px;
  height: 32px;
}
.thumbFeatures .jshowoff-slidelinks a {
  display: block;
  width: 60px;
  height: 30px;
  background-color: none;
  background-repeat: no-repeat;
  margin: 0 5px 0 0;
  padding: 0;
  text-indent: -10000em;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.thumbFeatures .jshowoff-slidelinks a.jshowoff-active {
  border: 1px solid #fff;
}
.thumbFeatures p.jshowoff-controls {
  background: none;
  height: 38px;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 100px;
  width: 100%;
  z-index: 150;
}
.thumbFeatures .jshowoff-controls a {
  display: block;
  width: 22px;
  height: 38px;
  background: none;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  text-indent: -10000em;
  position: absolute;
}
.thumbFeatures .jshowoff-controls a.jshowoff-play {
  display: none;
}
.jshowoff.thumbFeatures {
  height: 250px;
}
.jshowoff.thumbFeatures div,
.jshowoff.thumbFeatures img,
.jshowoff.thumbFeatures {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
/**
 * bxSlider v4.2.5
 * Copyright 2013-2015 Steven Wanderski
 * Written while drinking Belgian ales and listening to jazz

 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */
/** VARIABLES 
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
  width:100%;
}
.bxslider {
  margin: 0;
  padding: 0;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
/** THEME
===================================*/
.bx-viewport {
  padding-top: 30px !important;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  top: 0px;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../img/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url('../img/controls.png') no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url('../img/controls.png') no-repeat -43px -32px;
}
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url('../img/controls.png') -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url('../img/controls.png') -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}
body,
html,
.wrapper,
header .wrapper,
#product-header .wrapper,
.wide-wrapper {
  min-width: 0;
}
.mobile-only {
  display: none !important;
}
.desktop-only {
  display: block !important;
}
#starting-at2 {
  display: none;
}
/*New Image*/
#standing-desk-sync {
  bottom: -157px;
  right: 50%;
}
#standing-desk-sync-bottom {
  top: -674px;
  right: 50%;
}
#banner {
  padding: 0;
}
#banner-text-wrapper {
  position: relative;
}
#monitor-arms .full45 a {
  display: block;
  width: 100%;
  float: none;
  margin-bottom: 5px;
}
#monitor-arms .full45 {
  width: 46%;
}
.available-in {
  font-size: 14px;
  color: #666;
}
#mobile-monitor {
  display: none;
}
#treadmill {
  padding-top: 20px;
}
#evo-casters {
  top: 0;
  height: 90%;
  width: auto;
  right: 56%;
}
#standing-desk #cpu-mount-img,
#options-page #cpu-mount-img {
  top: 0;
  height: 630px;
  width: auto;
  right: 20%;
}
#cable-pass-mobile {
  display: none;
}
.label-right {
  top: 200px;
  right: 8%;
  z-index: 9000;
}
#driving-force {
  bottom: 0;
  height: 95%;
  width: auto;
  left: 15%;
}
#compare-banner-image {
  bottom: 0;
  left: 46%;
  height: 85%;
  width: auto;
}
#contact-page #banner {
  height: auto;
}
#contact-page #banner-text {
  width: 600px;
  margin: 0 auto;
  float: none;
  margin: 140px auto 90px auto;
  padding: 0;
}
.tab-text-wrapper {
  width: 100% !important;
  height: auto !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tab-text-wrapper a {
  display: inline-block;
  margin-top: 15px;
}
.tab-click {
  position: relative;
}
#manual ul {
  text-align: center;
  padding: 0;
  margin: 0;
}
#manual ul li {
  display: inline;
  padding: 0 7px;
}
#manual ul li a {
  display: inline-block;
}
#manual .text-link {
  width: auto;
}
#downloads-page #difference {
  padding-top: 145px;
}
#downloads-page #difference .full100 {
  margin-bottom: 40px;
}
#gallery-page #banner-text {
  max-width: 600px;
  position: relative;
  text-align: center;
  width: 94%;
  margin: 135px auto 70px;
}
#gallery-banner-image-wrapper {
  position: relative;
  bottom: 0;
  height: 300px;
  display: block;
}
#gallery-page #banner {
  height: auto;
  text-align: center;
}
#gallery-page #banner-text h3 {
  font-size: 70px;
}
#evodesk-models {
  padding: 80px 0;
}
.social-image {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.headroom {
  transition: transform .4s linear !important;
}
.headroom--pinned {
  transform: translateY(0%) !important;
}
.headroom--unpinned {
  transform: translateY(-100%) !important;
}
.specs-wrapper {
  width: 94%;
  padding: 0 20px;
  border: 1px solid #ddd;
  max-width: 750px;
  margin: 0 auto;
  display: block;
  float: none;
}
.specs-downloads {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  display: block;
  float: none;
}
.specs-downloads .full50 {
  border: 1px solid #ddd;
  width: 44.5%;
  padding: 2%;
  text-align: center;
  margin-top: 2%;
}
.specs-downloads .full50:first-of-type {
  margin-right: 1.5%;
}
.specs-downloads .full50 img {
  margin-bottom: 20px;
}
.cd-primary-nav > li > a {
  font-size: 14px;
}
@media (min-width: 2000px) {
  #product-header {
    width: 2000px;
    height: 49px;
    position: fixed;
    z-index: 9999;
    max-width: 2000px;
    -webkit-transition: all .74s;
    -moz-transition: all .74s;
    -ms-transition: all .74s;
    -o-transition: all .74s;
    transition: all .74s;
    top: 85px;
    left: 50%;
    margin: 0 auto 0 -1000px;
  }
}
@media (min-width: 1300px) {
  .cd-primary-nav > li > a {
    font-size: 16px;
  }
  #desk-wrapper {
    width: 1260px;
    position: absolute;
    margin-top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -630px;
    height: 290px;
  }
  #standing-desk #cpu-mount-img,
  #options-page #cpu-mount-img {
    right: 29%;
  }
  #driving-force {
    left: 25%;
  }
  section > .standard h2 {
    letter-spacing: .15em;
    padding-bottom: 13px;
    font-size: 20px;
  }
  #standing-desk-white {
    left: 45%;
    height: 89%;
    top: 4%;
    width: auto;
  }
  #evodesk-pro-img,
  #studio-evodesk-img {
    position: absolute;
    height: 101%;
    width: auto;
    top: auto;
    bottom: 4%;
    left: 45%;
  }
  #standard-evodesk-img {
    position: absolute;
    height: 85%;
    width: auto;
    top: 10%;
    right: 50%;
  }
  #cable-management-tray2 {
    left: 55%;
    height: 96%;
    top: 9%;
    width: auto;
  }
  #gaming-desk-wrapper #starting-at {
    position: absolute;
    top: 96px;
    right: 2%;
    width: 160px;
    height: auto;
    z-index: 999;
  }
}
@media all and (min-width: 900px) and (max-width: 1025px) {
  #header-social ul li {
    padding: 7px 5px;
  }
  #header-social {
    width: 225px;
  }
  nav ul li a {
    padding: 30px 15px 25px 15px;
  }
  #standard-evodesk-img {
    top: 13%;
  }
  #evodesk-pro-img,
  #studio-evodesk-img {
    top: 10%;
  }
  #evodesk-standard {
    padding-bottom: 40px;
  }
  #evodesk-studio {
    padding-bottom: 85px;
  }
  #gaming-desk-wrapper #overview-bullets {
    width: 45%;
  }
  #gaming-desk-wrapper #overview-bullets h3 {
    font-size: 33px;
    margin-bottom: 15px;
  }
  #gaming-desk-wrapper #overview #video {
    width: 54%;
  }
}
@media only screen and (min-width: 736px) and (max-width: 900px) {
  #standard-evodesk-img {
    top: 13%;
  }
  #evodesk-standard {
    padding-bottom: 40px;
  }
  #evodesk-studio {
    padding-bottom: 85px;
  }
  #evodesk-pro-img,
  #studio-evodesk-img {
    position: absolute;
    height: auto;
    width: 50%;
    bottom: auto;
    top: 16%;
    left: 47%;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1300px) {
  #desk-wrapper {
    width: 980px;
    position: absolute;
    margin-top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -490px;
    height: 210px;
  }
}
@media all and (max-width: 1000px) {
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
  header {
    height: 60px;
    position: fixed;
  }
  header .wrapper,
  #product-header .wrapper {
    width: 100%;
    padding: 0;
  }
  #downloads-page #difference {
    padding-top: 105px;
  }
  #reviews-page-banner {
    display: none;
  }
  #reviews-page #banner-text {
    max-width: 460px;
    width: 90%;
    margin: 0 auto;
    float: none;
    margin: 120px auto 100px;
    padding: 0;
  }
  #reviews-page #banner {
    height: auto;
  }
  #button-product-header,
  #product-header {
    display: none;
  }
  #evodesk-models {
    padding: 40px 0;
  }
  .featured-article p {
    font-size: 18px;
  }
  #gaming-desk-wrapper #overview #video {
    width: 80%;
    margin: 0 10% 30px;
    float: none;
  }
  #gaming-desk-wrapper #starting-at {
    display: none;
  }
  #overview-bullets {
    width: 90%;
    min-width: 0;
    float: none;
    margin: 0 5%;
    text-align: center;
  }
  #header-social {
    position: absolute;
    right: 2.5%;
    top: 19px;
  }
  .nav-is-visible #header-social {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  #header-social ul {
    display: none;
  }
}
@media only screen and (min-width: 575px) and (max-width: 1150px) {
  .gaming-configuration {
    width: 46.5%;
    margin-bottom: 20px;
  }
  #gaming-desk-wrapper section > .standard .features-block p {
    font-size: 15px;
  }
  #gaming-desk-wrapper section > .standard .features-block p {
    min-height: 90px;
  }
  #gaming-desk-wrapper section > .standard .features-block {
    min-height: 355px;
  }
}
@media only screen and (min-width: 575px) and (max-width: 737px) {
  #gaming-desk-wrapper section > .standard .features-block {
    min-height: 395px;
  }
  #configurations {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .gaming-configuration {
    width: 97.5%;
    margin-bottom: 20px;
  }
  #gaming-desk-wrapper section > .standard .features-block {
    background: #fff;
    width: 78%;
    padding: 25px 11% 80px;
    min-height: 0;
  }
  #gaming-desk-wrapper section > .standard .features-block p {
    font-size: 16px;
    min-height: 0;
  }
  #configurations {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1000px) {
  #desk-wrapper {
    width: 720px;
    position: absolute;
    margin-top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -360px;
    height: 170px;
  }
  #standing-desk #banner-text {
    margin: 115px auto;
  }
  #standing-desk #banner {
    height: 465px;
  }
  #standing-desk #elevate,
  #standing-desk #overview {
    padding: 60px 0;
  }
  #standing-desk #overview #video {
    width: 80%;
    margin: 0 10%;
    float: none;
    margin-bottom: 30px;
  }
  #standing-desk #elevate #video_elevate {
    width: 80%;
    margin: 0 10%;
    float: none;
    margin-bottom: 30px;
  }
  #standing-desk #overview .full35,
  #keep-it-real .full45,
  #posi-loc .full40,
  #standing-desk #harman-kardon .full50,
  #options-page#harman-kardon .full50,
  #standing-desk #controller .full45,
  #options-page #controller .full45,
  #standing-desk #oversized-grommet .full45,
  #options-page #oversized-grommet .full45 {
    text-align: center;
    margin: 0 10%;
    width: 80%;
  }
  #standing-desk #elevate .full35 {
    text-align: center;
    margin: 0 10%;
    width: 80%;
    float: none;
  }
  #standing-desk #standing-desk-frame,
  #options-page #standing-desk-frame {
    right: 0%;
    bottom: auto;
    top: 20px;
    height: auto;
    width: auto;
    opacity: .05 !important;
  }
  #expandable-frame .full45 {
    text-align: center;
    margin: 0 10%;
    width: 80%;
  }
  section {
    padding: 90px 0;
  }
  #real-wood {
    left: 62%;
  }
  #keep-it-real {
    padding-top: 120px;
  }
  #evoedge-desktop {
    right: auto;
    height: auto;
    width: 82%;
    top: 24%;
    left: 0;
    position: relative;
    margin-top: -9%;
    margin-bottom: 50px;
  }
  #standing-desk-white {
    left: 52%;
  }
  #posi-loc-img2 {
    right: 0;
    top: 0;
    height: auto;
    width: 90%;
    position: relative;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
    display: none;
  }
  #posi-loc-img-mobile {
    width: 96%;
    float: right;
    margin: 0 0 2% 20px;
    height: auto;
    display: block;
  }
  #cable-pass {
    display: none;
  }
  #standing-desk #harman-kardon,
  #options-page #harman-kardon {
    padding-top: 0;
  }
  #standing-desk-speakers {
    right: auto;
    height: auto;
    width: 70%;
    top: 0;
    padding: 0 5%;
    margin: 40px 10% 20px;
    position: relative;
  }
  #programmable-controller {
    left: 0;
    width: 66%;
    height: auto;
    top: 0;
    margin: 0 auto;
    padding: 0px 18%;
    position: relative;
  }
  .label-right {
    top: 13%;
    right: 14%;
    z-index: 9000;
  }
  #evo-keyboard {
    right: 48%;
    height: auto;
    width: 70%;
    top: 0;
  }
  #single-right-monitor {
    left: 60%;
  }
  #evo-casters {
    right: 69%;
  }
  #standing-desk #cpu-mount-img,
  #options-page #cpu-mount-img {
    top: 0;
    height: 41%;
    width: auto;
    right: 17%;
  }
  ul.footer-nav {
    float: left;
    list-style: none;
    padding-left: 75px;
    width: 33%;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .footer-row-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  #footer-info {
    width: 100%;
    position: relative;
    right: 0;
    text-align: center;
    margin: 35px 0;
  }
  footer,
  #signup {
    padding: 70px 0;
  }
  #footer-logo {
    width: 244px;
    height: 36px;
    background: url(../img/footer-logo.png) left center no-repeat;
    background-size: 244px 36px;
    margin: 0 auto;
  }
  #financing-standing-desk {
    display: none;
  }
  #finance {
    padding: 60px 0 !important;
  }
  #finance .full55 {
    width: 490px;
    text-align: center;
    margin: 0 auto;
    float: none;
  }
  #footer-social {
    display: none;
  }
  #cable-pass-mobile {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
  }
  #oversized-grommet {
    padding-top: 0;
  }
  #form {
    width: 100%;
  }
  #contact-us {
    padding: 50px 0;
  }
  #contact-info {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 736px) {
  #compare-page #banner {
    height: auto;
  }
  #banner-text,
  #standing-desk #banner-text,
  #compare-banner {
    width: 90% !important;
    text-align: center;
    padding: 0 !important;
    margin: 90px auto !important;
    float: none;
    max-width: 340px;
    position: relative;
  }
  #standard-sub-page #banner-text,
  #gallery-page #banner-text {
    margin-bottom: 60px !important;
  }
  #compare-banner {
    margin-bottom: 20px !important;
  }
  #standing-desk #banner-text {
    max-width: 490px;
    width: 90%;
    padding: 0 !important;
  }
  #standing-desk #banner-text h1 {
    font-size: 16px;
  }
  #banner {
    height: 475px;
  }
  #banner-text h1 {
    font-size: 15px;
    letter-spacing: .15em;
  }
  #banner-text h3,
  #compare-banner h3 {
    font-size: 43px;
  }
  #compare-banner-image {
    bottom: 0;
    left: 0;
    height: auto;
    width: 94%;
    margin: 0 3%;
    position: relative;
  }
  #gaming-desk-wrapper #gallery-title h2 {
    font-size: 26px;
  }
  #gaming-desk-wrapper #gallery {
    padding-top: 0px !important;
  }
  #gaming-desk-wrapper #ergo-pro-desktop {
    right: auto;
    left: 0;
    height: auto;
    top: 0;
    width: 90%;
  }
  #evoguard-desktop {
    position: relative;
    left: 0;
    height: auto;
    top: 0;
    width: 85%;
    margin-bottom: 20px;
    float: right;
  }
  #adjustable-frame-image {
    position: relative;
    right: 0;
    height: auto;
    top: 0;
    width: 50%;
    margin: 0 25% 25px;
    float: none;
  }
  #game-banner {
    bottom: 0;
    left: 0;
    height: auto;
    width: 90%;
    margin: 0 3% 0 7%;
    position: relative;
  }
  #gaming-desk-wrapper #banner-text p {
    font-size: 17px;
  }
  #gaming-desk-wrapper #banner-text h3 {
    font-size: 55px;
  }
  #gaming-desk-wrapper #banner-text {
    margin: 90px auto 10px !important;
    max-width: 400px;
  }
  #banner-text p,
  #compare-banner p,
  #contact-page #banner-text p {
    font-size: 15px;
    max-width: 300px;
    margin: 10px auto;
    line-height: 1.2em;
  }
  #gaming-desk-wrapper #banner-text p {
    max-width: 400px;
  }
  #about #banner-text p,
  #contact-page #banner-text p,
  #gallery-page #banner-text p,
  #options-page #banner-text p {
    font-size: 15px;
    max-width: 450px;
  }
  #options-page #banner-text p {
    max-width: 400px;
  }
  #gallery-page #banner-text h3 {
    font-size: 50px;
  }
  #about #banner-text,
  #contact-page #banner-text,
  #options-page #banner-text {
    width: 80%;
    max-width: 450px;
    margin-bottom: 60px !important;
  }
  #about #banner-text h3,
  #contact-page #banner-text h1,
  #options-page #banner-text h3 {
    font-size: 37px;
  }
  #standing-desk #banner-text p {
    max-width: none;
  }
  #home-banner {
    bottom: -60px;
    left: 50%;
    height: auto;
    width: 710px;
    margin-left: -315px;
  }
  #banner-play {
    background: url(../img/play-button-outline2.png) left center no-repeat;
    background-size: 80px 55px;
    height: 23px;
    padding: 30px 0;
    width: 80px;
    text-align: right;
    display: inline-block;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #252525;
    color: #fff;
    line-height: 1em;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    -webkit-transition: all .74s;
    -moz-transition: all .74s;
    -ms-transition: all .74s;
    -o-transition: all .74s;
    transition: all .74s;
    font-size: 0;
  }
  #gaming-desk-wrapper #lavish .full75 h3 {
    font-size: 25px;
  }
  #gaming-monitor-arm-image {
    position: relative;
    height: auto;
    right: 0;
    bottom: 0;
    width: 90%;
    margin: 30px 5% 0;
  }
  #gaming-desk-wrapper #monitor-arm {
    padding-bottom: 0 !important;
  }
  #gaming-desk-wrapper #smartpass {
    padding-top: 0 !important;
  }
  #gaming-smart-pass {
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    width: 100%;
    margin-bottom: 30px;
  }
  #standing-desk #banner-text h3 {
    font-size: 36px;
  }
  .arrow-spacer {
    display: none;
  }
  #starting-at {
    display: none;
  }
  #home-action {
    padding: 10px 0 0px !important;
  }
  section {
    padding: 40px 0;
  }
  .full45,
  .full50,
  #lavish-title,
  .full75,
  #difference .full30,
  .full55,
  #finance .full55,
  #signup .full55,
  .full35,
  .full60,
  .full65,
  .full40,
  .full45,
  #monitor-arms .full45,
  .full30 {
    width: 90%;
    min-width: 0;
    float: none;
    margin: 0 5%;
    text-align: center;
  }
  #standing-desk #elevate .full35,
  #standing-desk #overview .full35 {
    width: 90%;
  }
  .vertical-seperator {
    display: none !important;
  }
  .featured-article-bg-grey,
  .featured-article-bg-light {
    padding: 30px 0;
  }
  .featured-article-bg-grey .full45:first-of-type {
    padding-bottom: 20px;
  }
  #standard-sub-page #overview .full30 {
    margin-bottom: 30px;
  }
  #downloads-page #difference .full30 {
    margin: 30px 5%;
  }
  .full45 p,
  .full50 p,
  .full75 p,
  #difference .full30 p,
  .full55 p,
  #finance .full55 p,
  #signup .full55 p,
  .full35 p,
  .full60 p,
  .full40 p,
  .full45 p,
  #monitor-arms .full45 p {
    text-align: left;
  }
  .mobile-text-left {
    text-align: left;
  }
  #finance .full55 h3,
  #signup .full55 h3 {
    font-size: 30px;
  }
  #finance .full55 h2,
  #signup .full55 h2 {
    letter-spacing: .15em;
    font-size: 15px;
  }
  #signup {
    background: #3e4144;
    padding: 40px 0;
  }
  .medium {
    padding: 9px 19px;
    font-size: 15px;
  }
  #difference .full30 img {
    margin-bottom: 15px;
  }
  #difference .text-link {
    font-size: 17px;
    letter-spacing: .1em;
  }
  p,
  section ul li {
    font-size: 15px;
  }
  #home-action .full30 h2,
  #gallery .full30 h2 {
    font-size: 18px;
  }
  #banner-text h1,
  section > .standard h2,
  #explore .full27 h2,
  #compare-banner h2 {
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: 0.05em;
  }
  section > .standard h3 {
    font-size: 25px;
  }
  #standing-desk-benefits {
    height: 100%;
    left: 30px;
    top: 0;
    width: auto;
    opacity: .15 !important;
  }
  #standing-desk-sync {
    bottom: auto;
    right: auto;
    position: relative;
    width: 120%;
    height: auto;
    margin: 0 0 2% -20%;
    padding: 9% 0 0 0;
    background: #f5f5f5;
  }
  #in-sync {
    background: #fff;
  }
  #standard-controller {
    width: 100%;
    height: auto;
    top: 0;
    left: auto;
    position: relative;
  }
  #standing-desk-sync-bottom {
    display: none;
  }
  #budget-minded {
    padding-top: 0;
  }
  .jshowoff {
    width: 90%;
    margin: 0 5%;
  }
  .jshowoff div,
  .jshowoff img,
  .jshowoff {
    position: relative;
  }
  #lavish .full75 h3 {
    font-size: 20px;
  }
  #lavish-title {
    margin: 0 5% 20px;
  }
  .jshowoff p.jshowoff-slidelinks {
    padding: 0;
  }
  #future-proof {
    top: auto;
    left: auto;
    position: relative;
    width: 80%;
    height: auto;
    margin: 0 10% 10px;
  }
  #evodesk-desktop {
    height: auto;
    top: auto;
    right: auto;
    width: 92%;
    position: relative;
    margin-bottom: 30px;
  }
  #wood-desktops {
    position: relative;
    height: auto;
    width: 90%;
    top: 0;
    left: 0;
    float: right;
  }
  #great-value {
    padding-bottom: 5px;
  }
  #harman-kardon-sound-system-integrated {
    height: auto;
    width: 170%;
    bottom: 0;
    left: auto;
    position: relative;
    margin: 40px 0 -15%;
  }
  #difference {
    padding: 50px 0;
  }
  #financing-standing-desk {
    height: auto;
    bottom: 0;
    width: 160%;
    left: auto;
    position: relative;
    margin-bottom: 0;
    margin-top: 40px;
  }
  #finance {
    background: #333;
    padding: 40px 0 0 0 !important;
  }
  #signup input[type="email"] {
    width: 80%;
    background-color: #2C2C2C;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border: none;
    color: #fff;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    padding: 10px 10%;
  }
  #signup input[type="submit"] {
    border: none;
    padding: 10px 18px;
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
  }
  footer {
    background: url(../img/banner-bg.jpg) center bottom fixed no-repeat #0a0a0a;
    padding: 40px 0;
  }
  ul.footer-nav {
    float: none;
    list-style: none;
    text-align: center;
    padding-left: 0;
    margin: 0 0 30px;
  }
  .footer-nav li {
    padding: 0;
  }
  .footer-nav li.footer-title {
    font-size: 17px;
  }
  #footer-info {
    width: 100%;
    position: relative;
    right: auto;
    margin-top: 25px;
    text-align: center;
  }
  #footer-logo {
    width: 200px;
    height: 36px;
    background: url(../img/footer-logo.png) left center no-repeat;
    background-size: 200px auto;
    margin: 0 auto;
  }
  #footer-social {
    display: none;
  }
  #standing-desk-frame {
    right: auto;
    bottom: auto;
    height: auto;
    width: 60%;
    position: relative;
    padding: 0 10%;
    margin: 0 10% 20px 10%;
    border-bottom: 1px solid #ddd;
    float: none;
  }
  #driving-force {
    bottom: 0;
    height: 95%;
    width: auto;
    left: 0;
    right: auto;
    bottom: auto;
    height: auto;
    width: 60%;
    position: relative;
    padding: 0 8% 0 2%;
    margin: 0 15% 20px 15%;
    border-bottom: 1px solid #ddd;
    float: none;
  }
  #real-wood {
    left: auto;
    height: auto;
    top: auto;
    width: 90%;
    position: relative;
    float: right;
    margin-bottom: 10px;
  }
  #video {
    margin-bottom: 20px;
  }
  #evoedge-desktop {
    right: auto;
    height: auto;
    width: 100%;
    top: auto;
    position: relative;
    margin-bottom: 40px;
    margin-left: -11%;
  }
  #standing-desk-white {
    left: auto;
    height: auto;
    top: auto;
    width: 70%;
    position: relative;
    margin: 0 15% 30px;
  }
  #posi-loc-img2,
  #cable-pass {
    display: none;
  }
  #product-header {
    display: none;
  }
  #standing-desk-speakers {
    right: auto;
    height: auto;
    width: 70%;
    top: 0;
    padding: 0 5%;
    margin: 40px 10% 20px;
    position: relative;
  }
  #harman-kardon {
    padding-top: 0;
  }
  #programmable-controller {
    left: auto;
    width: 80%;
    height: auto;
    top: 0;
    margin: 0 auto;
    padding: 0 10%;
    position: relative;
  }
  .label-right {
    top: 20px;
    right: 20px;
    z-index: 9000;
    width: 80px;
    height: auto;
  }
  #keyboard-platform {
    padding: 0 0 30px;
  }
  #evo-keyboard {
    right: auto;
    height: auto;
    width: 90%;
    top: 0;
    position: relative;
    margin-bottom: 20px;
  }
  #standing-desk #harman-kardon-sound-system-integrated,
  #options-page #harman-kardon-sound-system-integrated {
    height: auto;
    width: 80%;
    bottom: auto;
    left: auto;
    position: relative;
    margin: 0px 10% 30px;
    padding: 0;
    border-bottom: 1px solid #ddd;
  }
  #ergo-pro-desktop {
    right: auto;
    height: auto;
    top: auto;
    width: 89%;
    margin-bottom: 10px;
    position: relative;
  }
  #double-left-monitor,
  #single-right-monitor {
    display: none;
  }
  #mobile-monitor {
    display: block;
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: auto;
  }
  #cable-management-tray2 {
    left: auto;
    height: auto;
    top: auto;
    width: 82%;
    margin: 0 0 0 18%;
    position: relative;
    float: right;
  }
  #evo-casters {
    top: 0;
    height: auto;
    width: 60%;
    right: 0;
    position: relative;
    margin: 0 20% 20px 20%;
  }
  #casters {
    padding-top: 0;
  }
  #treadmill-img {
    position: relative;
    left: 0;
    height: auto;
    width: 84%;
    top: 0;
    margin: 0 8% 30px;
    float: none;
  }
  #standing-desk #cpu-mount-img,
  #options-page #cpu-mount-img {
    position: relative;
    top: 0;
    height: auto;
    width: 112%;
    right: 0;
    margin: 0 0 25px 0;
  }
  #standing-mat {
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
  }
  #standing-desk #cpu-mount {
    padding-top: 0;
  }
  #main section ul li,
  .specs ul li,
  #frame-specs ul li,
  #cpu-mount ul li {
    padding: 8px 0px;
    text-align: left;
  }
  .specs ul li {
    padding: 10px 8px;
  }
  .specs-wrapper .text-link {
    font-size: 13px;
    letter-spacing: 0em;
  }
  .text-link {
    font-size: 14px;
  }
  .specs .section-title {
    width: 100%;
    margin-bottom: 35px;
    font-size: 15px;
    text-align: center;
  }
  .specs {
    padding: 40px 0;
  }
  #signup .full55 p,
  #finance .full55 p {
    text-align: center;
  }
  #posi-loc-img-mobile {
    width: 98%;
    float: right;
    margin: 0 0 2% 20px;
    height: auto;
  }
  #cable-pass {
    display: none;
  }
  #cable-pass-mobile {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
  }
  #oversized-grommet {
    padding-top: 0;
  }
  #compare-table-wrapper {
    width: 95%;
  }
  #compare-table td,
  #compare-table-header td {
    padding: 12px 10px;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
  }
  .table-feature {
    font-weight: 600 !important;
  }
  .table-feature a .fa {
    display: none;
  }
  #compare-table td,
  #compare-table-header td {
    padding: 12px 7px;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
  }
  .table-feature {
    width: auto;
    text-align: left !important;
    font-weight: 500;
    font-size: 13px !important;
    background: #f5f5f5;
    font-weight: 400;
  }
  .fa-check-circle,
  .fa-times-circle-o {
    font-size: 25px !important;
  }
  .table-title h1 {
    font-size: 16px !important;
  }
  .table-title {
    padding-right: 7% !important;
  }
  .logo-column img {
    width: 95%;
    height: auto;
  }
  .other-column {
    font-size: 18px !important;
  }
  #contact-us {
    padding: 40px 0;
  }
  #contact-info {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .tabs div h2 {
    color: #666;
    font-size: 17px;
    font-weight: 400;
    padding: 10px 0 10px;
  }
  .tabs div ul li {
    font-size: 13px;
    padding: 2px 0;
  }
  div.tabContainer,
  div.tabContainer2 {
    background: #fff;
    padding-top: 35px;
  }
  #downloads-page #difference .full100 {
    margin-bottom: 0px;
  }
  #gallery-title h2 {
    line-height: 1em;
    font-size: 19px;
  }
  #gallery-title {
    padding: 40px 0 20px;
  }
  #evodesk-pro-img,
  #standard-evodesk-img,
  #studio-evodesk-img {
    position: relative;
    height: auto;
    width: 80%;
    top: 0;
    right: auto;
    left: auto;
    margin: 0 10%;
  }
  #evodesk-studio {
    padding-top: 0;
    padding-bottom: 45px;
  }
  #details-logo,
  #psfk-logo,
  #alpha-logo {
    position: relative;
    left: 0;
    width: 280px;
    margin: 0 auto 40px;
    height: auto;
    top: 0;
    float: none;
    display: block;
  }
  .review p {
    font-size: 19px;
  }
  #reviews .full30 .quote-wrapper h4 {
    font-size: 20px;
    margin: 5px 0 0 0;
  }
}
@media only screen and (min-width: 736px) and (max-width: 900px) {
  #gaming-desk-wrapper #banner-text h1 {
    font-size: 16px;
  }
  #gaming-desk-wrapper #banner-text h3 {
    font-size: 55px;
  }
  #gaming-desk-wrapper #banner-text p {
    font-size: 17px;
  }
  #gaming-desk-wrapper #banner-text {
    padding: 120px 0 30px 0;
  }
}
@media only screen and (min-width: 300px) and (max-width: 420px) {
  #gaming-desk-wrapper #banner-text h3 {
    font-size: 40px;
  }
  #gaming-desk-wrapper #banner-text h1 {
    font-size: 14px;
    letter-spacing: 0em;
  }
  #gaming-desk-wrapper #banner-text p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 575px) {
  #gaming-desk-wrapper section > .standard h3 {
    font-size: 34px;
  }
  #gaming-desk-wrapper section > .standard h4 {
    font-size: 22px;
  }
  #gaming-desk-wrapper p {
    font-size: 15px;
  }
  #configurations {
    padding: 80px 0;
  }
  #configurations .full65 {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 736px) {
  #home-action .full30,
  #gallery .full30,
  #reviews .full30 {
    width: 100%;
  }
  #gallery-page #gallery .full30,
  #reviews-page .full30,
  #gaming-desk-wrapper #gallery .full30 {
    width: 90%;
  }
  #home-action .full30 .text-wrapper,
  #gallery .full30 .text-wrapper {
    padding: 0 5% 8%;
  }
  #home-action .action-image,
  #gallery .action-image {
    height: 140px;
    margin-bottom: 25px;
    padding: 0;
    float: left;
    width: 32%;
  }
  #home-action .full30 .text-wrapper,
  #gallery .full30 .text-wrapper {
    width: 65%;
    float: right;
    padding: 15px 0 0 0;
  }
  #home #home-action .full30 .text-wrapper {
    width: 55%;
    float: left;
    padding: 0 0 0 3%;
  }
  #home-action .full30 .text-wrapper,
  #gallery .full30 .text-wrapper {
    text-align: left;
  }
  #explore-action {
    background: url(../img/explore-evodesk.jpg) right top no-repeat;
    background-size: auto 150%;
  }
  #spread-action {
    background: url(../img/standing-desk-news.jpg) right bottom no-repeat;
    background-size: auto 142%;
  }
  #home-action .action-title,
  #gallery .action-title {
    text-align: left;
  }
  #hk-action .action-image-text {
    display: none;
  }
  #starting-at2 {
    display: none;
  }
  #spread-action {
    background: url(../img/standing-desk-news.jpg) -20px 0px no-repeat;
    background-size: auto 100%;
  }
  #desk-wrapper {
    width: 420px;
    position: absolute;
    margin-top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -210px;
    height: 97px;
  }
  #standing-desk #banner-text {
    margin: 115px auto;
  }
  #standing-desk #banner {
    height: 365px;
  }
  #standing-desk #banner-text h3 {
    font-size: 34px;
  }
  #standing-desk #banner-text h1 {
    font-size: 15px;
  }
  #standing-desk #banner-text {
    margin: 90px auto !important;
  }
  #compare-table td,
  #compare-table-header td {
    padding: 20px 7px;
  }
  .tabs div {
    width: 24%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  #home-action .full30,
  #gallery .full30,
  #reviews .full30 {
    width: 100%;
    margin: 0;
  }
  #home-action .full30 {
    text-align: left;
  }
  #home-action .full30 .text-wrapper,
  #gallery .full30 .text-wrapper {
    padding: 0 5% 8%;
  }
  #home-action .action-image,
  #gallery .action-image {
    height: 120px;
    margin-bottom: 25px;
  }
  #explore-action {
    background: url(../img/explore-evodesk.jpg) left top no-repeat;
    background-size: auto 150%;
  }
  #spread-action {
    background: url(../img/standing-desk-news.jpg) right top no-repeat;
    background-size: auto 155%;
  }
  #hk-action .action-image-text {
    display: block;
  }
  #banner-text p {
    font-size: 14px;
  }
  #starting-at2 {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: auto;
    z-index: 999;
  }
  #gallery-page #gallery .full30,
  #reviews .review {
    width: 90%;
    margin: 0 5%;
  }
  .tabs div {
    width: 94%;
    margin: 6px 0 !important;
    padding: 3%;
  }
  #desk-wrapper {
    width: 300px;
    position: absolute;
    margin-top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -150px;
    height: 68px;
  }
  #standing-desk #banner-text {
    margin: 115px auto;
  }
  #standing-desk #banner {
    height: 370px;
  }
  #standing-desk #banner-text h3 {
    font-size: 27px;
  }
  #standing-desk #banner-text h1 {
    font-size: 15px;
  }
  #standing-desk #banner-text {
    margin: 80px auto !important;
  }
  .tabs div {
    width: 94%;
    margin: 6px 0;
  }
  .tab-text-wrapper {
    width: 60% !important;
    padding: 0 0 0 10% !important;
    float: right !important;
    text-align: left !important;
  }
  .tabs div ul {
    padding-bottom: 0;
  }
  .tabs div h2 {
    padding: 0 0 5px;
  }
  .tabs div ul li {
    font-size: 13px;
    padding: 0;
  }
  .tab-text-wrapper a {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
  }
  .tab-click .fa {
    color: #B5B5B5;
    font-size: 42px;
    position: absolute;
    z-index: 0;
    right: 72%;
    top: 32%;
    width: 60px;
    text-align: center;
  }
  .input50 {
    width: 96% !important;
  }
  select.input50 {
    width: 100% !important;
  }
  #gallery-page #banner-text h3 {
    font-size: 33px;
  }
  #gallery-page #banner-text {
    margin-bottom: 40px !important;
  }
  #banner-text h3,
  #compare-banner h3 {
    font-size: 36px;
  }
  #overview-bullets ul li {
    text-align: left;
    padding-left: 30px;
    position: relative;
  }
  #overview-bullets ul li .fa {
    color: #00bbde;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 16px;
  }
  #gaming-desk-wrapper #overview-bullets h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  #gaming-desk-wrapper #overview {
    background: #3e4144;
    padding: 40px 0;
  }
}
@media only screen and (min-width: 850px) and (max-width: 1000px) {
  .explore-container h2 {
    letter-spacing: .0em !important;
    font-size: 18px !important;
  }
  .explore-container h4 {
    letter-spacing: 0em;
    line-height: 1em;
  }
  .explore-container p {
    font-size: 16px;
  }
  #animated-frame {
    height: 225px;
  }
}
@media only screen and (min-width: 736px) and (max-width: 850px) {
  .explore-container h2 {
    letter-spacing: .0em !important;
    font-size: 18px !important;
  }
  .explore-container h4 {
    letter-spacing: 0em;
    line-height: 1em;
  }
  .explore-container p {
    font-size: 15px;
  }
  #animated-frame {
    height: 225px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 736px) {
  .explore-container {
    width: 96%;
    margin: 0 auto;
    max-width: 700px;
    display: block;
    margin-bottom: 20px;
  }
  .row {
    display: block;
  }
  .bx-controls-direction {
    display: none;
  }
  .bx-viewport {
    padding-top: 60px !important;
  }
  #expandable-frame-option-detail-img {
    display: none;
  }
  #animated-frame {
    height: 175px;
  }
  #explore-desktops,
  #explore-frame,
  #explore-options {
    padding: 50px 0 0;
  }
  #explore-options .explore-intro {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  #animated-frame {
    display: none;
  }
  #expandable-frame-option-detail-img {
    display: block;
  }
}
@media only screen and (max-width: 999px) {
  body.nav-on-left.overflow-hidden {
    overflow: hidden;
  }
}
/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content,
.cd-main-header {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.cd-main-content,
.cd-main-header {
  position: fixed;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-main-content {
  position: relative;
}
.is-hidden {
  margin: 0;
  padding: 0;
}
#video-feature {
  width: 61%;
  border: none;
  background: url(../img/sub-nav-background.jpg) no-repeat center right;
  background-size: 925px auto;
}
#index-feature {
  width: 67%;
  border: none;
  padding: 0;
  height: 580px;
}
#play-button {
  display: inline-block;
  width: 140px !important;
  height: 100px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 -70px !important;
}
#play-button div {
  position: relative;
  background: url(../img/play-button-outline2.png) left center no-repeat;
  background-size: 140px 96px;
  height: 97px;
  padding: 0;
  width: 140px;
  text-align: right;
  display: inline-block;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #252525;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-transition: all .74s;
  -moz-transition: all .74s;
  -ms-transition: all .74s;
  -o-transition: all .74s;
  transition: all .74s;
}
@media only screen and (max-width: 999px) {
  #index-feature {
    display: none;
  }
}
@media (min-width: 1000px) {
  #index-feature {
    padding: 10px 0px;
    min-height: 510px;
    height: auto;
  }
  #index-tile1 {
    width: 40%;
    height: 260px;
    display: block;
    background: #fff;
    float: left;
    margin-bottom: 10px;
  }
  #sd-tile3 {
    width: 40%;
    height: 235px;
    display: block;
    background: #fff;
    float: left;
  }
  #sd-tile4 {
    width: 60%;
    height: 235px;
    display: block;
    background: #fff;
    float: right;
    overflow: hidden;
  }
  #index-tile2 {
    width: 60%;
    height: 260px;
    display: block;
    float: right;
    margin-bottom: 10px;
    background: url(/img/banner-bg.jpg) top center fixed no-repeat;
    background-size: 770px auto;
  }
  #sd-tile1 {
    width: 50%;
    height: 260px;
    display: block;
    float: right;
    margin-bottom: 10px;
    background: #fff;
    background: url(/img/meet-evodesk-standing-desk-nav.jpg) center right no-repeat;
    background-size: 500px auto;
  }
  #sd-tile2 {
    width: 50%;
    height: 260px;
    display: block;
    background: url(/img/gaming-sd-featured.jpg) center right no-repeat;
    background-size: 500px 320px;
    float: left;
    margin-bottom: 10px;
  }
  #sd-tile3 {
    background: url(../img/evodesk-gallery-nav.jpg) top center no-repeat;
    background-size: 385px 275px;
  }
  #index-tile3 {
    width: 50%;
    height: 235px;
    display: block;
    background: url(/img/nav-tweet-featured.jpg) center center no-repeat;
    background-size: 500px 280px;
    float: left;
  }
  #index-tile4 {
    width: 50%;
    height: 235px;
    display: block;
    background: #fff;
    float: right;
  }
  .interior-spacing {
    position: relative;
    border-top: 0;
    border-bottom: 0;
    height: 100%;
  }
  #index-tile1 .interior-spacing,
  #sd-tile3 .interior-spacing,
  #index-tile3 .interior-spacing,
  #sd-tile2 .interior-spacing {
    border-left: 10px solid #f2f2f2;
    border-right: 5px solid #f2f2f2;
  }
  #index-tile3 .interior-spacing,
  #sd-tile1 .interior-spacing,
  #sd-tile2 .interior-spacing {
    overflow: hidden;
  }
  #index-tile2 .interior-spacing,
  #index-tile4 .interior-spacing,
  #sd-tile1 .interior-spacing,
  #sd-tile4 .interior-spacing {
    border-left: 5px solid #f2f2f2;
    border-right: 10px solid #f2f2f2;
  }
  .tile-content {
    z-index: 2;
  }
  .tile-content h3,
  .tile-content h4,
  .tile-content h2 {
    margin: 0;
  }
  .tile-content h3 span,
  .tile-content h4 span,
  .tile-content h2 span {
    color: #00bbde;
  }
  .tile-content h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
  }
  .tile-content h2 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .08em;
  }
  .tile-content {
    position: relative;
    float: left;
    padding: 20px;
  }
  #index-tile2 .tile-content h3,
  #index-tile3 .tile-content h3,
  #sd-tile2 .tile-content P {
    color: #fff;
  }
  #index-tile2 .tile-content h2,
  #index-tile3 .tile-content h2,
  #sd-tile2 .tile-content h2 {
    color: #ccc;
  }
  #sd-tile2 .tile-content p {
    font-size: 20px;
    margin: 10px 0 10px 0;
    line-height: 1.45em;
    max-width: 250px;
  }
  #sd-tile2 a {
    position: relative;
    color: #00bbde;
    height: auto;
    line-height: 15px;
    font-size: 15px;
    padding: 0;
    margin: 0;
  }
  #meet-sd-featured {
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
    position: absolute;
  }
  #index-tile3 .tile-content .slide h3,
  #sd-tile2 .tile-content h3 {
    text-transform: none;
    line-height: 1.3em;
    font-size: 20px;
  }
  #index-tile3 .tile-content .slide h3 a,
  #sd-tile2 .tile-content .slide h3 a {
    text-transform: none;
    line-height: 1.3em;
    font-size: 20px;
    display: inline;
    position: relative;
    color: #fff;
    padding: 0;
  }
  #index-tile3 .tile-content .slide h3 a:hover,
  #sd-tile2 .tile-content .slide h3 a:hover {
    color: #00bbde;
  }
  #index-tile3 .tile-content,
  #sd-tile2 .tile-content {
    width: 90%;
  }
  #index-tile4 .tile-content {
    top: 0px;
  }
  #index-tile3 .jshowoff,
  #sd-tile2 .jshowoff {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .featured-tile {
    overflow: hidden;
    position: relative;
  }
  .featured-tile a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
    z-index: 9;
    min-height: 320px;
  }
  #featured-rotator {
    position: absolute;
    top: 20px;
    width: 100%;
  }
  #featured-rotator .slide {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  #index-tile3 #featured-rotator .twitter-post .fa,
  #sd-tile2 #featured-rotator .twitter-post .fa {
    color: #00aced;
    font-size: 26px;
  }
  #index-tile3 #featured-rotator .twitter-post,
  #index-tile3 #featured-rotator .twitter-post {
    color: #ccc;
    font-size: 18px;
    line-height: 1.5em;
    padding-top: 10px;
    font-weight: 300;
  }
  #index-feature .myBox:hover {
    opacity: .85;
  }
  #elevate-nav-featured,
  #meet-nav-featured {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  #featured-details-logo {
    position: relative;
    width: 145px;
    margin-top: 6px;
    margin-bottom: 10px;
    height: auto;
  }
  #featured-play {
    background: url(/img/play-button-outline2.png) left center no-repeat;
    background-size: 100px auto;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -35px;
    margin-left: -50px;
    z-index: 3;
    height: 70px;
    min-height: 0;
    width: 100px;
    text-align: right;
    display: inline-block;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #252525;
    color: #fff;
    line-height: 1em;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    -webkit-transition: all .74s;
    -moz-transition: all .74s;
    -ms-transition: all .74s;
    -o-transition: all .74s;
    transition: all .74s;
  }
  #index-tile2:hover #featured-play,
  #sd-tile1:hover #featured-play {
    margin-top: -45px;
    margin-left: -60px;
    z-index: 3;
    height: 90px;
    width: 120px;
    background-size: 120px auto;
  }
  #hk-nav-featured {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 1300px) {
  #index-feature {
    padding: 10px 0px;
    min-height: 580px;
    height: auto;
  }
  #index-tile1 {
    width: 40%;
    height: 320px;
    display: block;
    background: #fff;
    float: left;
    margin-bottom: 10px;
  }
  #sd-tile1,
  #sd-tile2 {
    height: 320px;
  }
  #index-tile2 {
    width: 60%;
    height: 320px;
    display: block;
    float: right;
    margin-bottom: 10px;
    background: url(/img/banner-bg.jpg) top center fixed no-repeat;
    background-size: 770px auto;
  }
  #index-tile3 {
    width: 50%;
    height: 275px;
    display: block;
    background: url(/img/nav-tweet-featured.jpg) center center no-repeat;
    background-size: 500px 280px;
    float: left;
  }
  #sd-tile3,
  #sd-tile4 {
    height: 275px;
  }
  #index-tile4 {
    width: 50%;
    height: 275px;
    display: block;
    background: #fff;
    float: right;
  }
  #index-tile4 .tile-content {
    top: 85px;
  }
  #index-tile3 .tile-content .slide h3 {
    text-transform: none;
    line-height: 1.3em;
    font-size: 26px;
  }
  #index-tile3 .tile-content .slide h3 a {
    text-transform: none;
    line-height: 1.3em;
    font-size: 26px;
    display: inline;
    position: relative;
    color: #fff;
    padding: 0;
  }
  #index-tile3 #featured-rotator .twitter-post .fa {
    color: #00aced;
    font-size: 28px;
  }
  #index-tile3 #featured-rotator .twitter-post {
    color: #ccc;
    font-size: 20px;
    line-height: 1.5em;
    padding-top: 10px;
    font-weight: 300;
  }
  .tile-content h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 999px) {
  .cd-main-content.nav-is-visible,
  .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-main-content.nav-is-visible,
  .nav-on-left .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
}
.cd-main-content {
  background: #e2e3df;
  min-height: 100vh;
  z-index: 2;
}
.cd-main-header {
  height: 65px;
  /*background: rgba(0,0,0,.85);*/
  z-index: 99999;
}
.nav-is-fixed .cd-main-header {
  /* add .nav-is-fixed class to body if you want a fixed navigation on > 1170px */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1000px) {
  .cd-main-header {
    height: 90px;
  }
  .cd-main-header::after {
    clear: both;
    content: "";
    display: table;
  }
}
.cd-logo {
  position: absolute;
  top: 12px;
  left: 5%;
  z-index: 1000;
}
.cd-logo img {
  display: block;
}
@media only screen and (max-width: 999px) {
  .nav-on-left .cd-logo {
    left: auto;
    right: 5%;
  }
  #logo {
    position: absolute;
    width: 140px;
    height: 29px;
    top: 15px;
    left: 20px;
    background: url(../img/evodesk-logo-white.png) center center no-repeat;
    background-size: 140px auto;
  }
}
@media only screen and (min-width: 1000px) {
  .cd-logo {
    top: 27px;
    left: 30px;
  }
  .cd-header-buttons {
    display: none !important;
  }
}
@media only screen and (max-width: 999px) {
  .cd-header-buttons {
    display: block !important;
  }
}
.cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 24px;
  left: 185px;
  padding: 0;
  margin: 0;
}
.nav-is-visible .cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 24px;
  left: auto;
  right: 20px;
}
.cd-header-buttons li {
  display: inline-block;
}
@media only screen and (max-width: 999px) {
  .nav-on-left .cd-header-buttons {
    right: auto;
    left: 5%;
  }
  .nav-on-left .cd-header-buttons li {
    float: right;
  }
}
@media only screen and (min-width: 1000px) {
  .cd-header-buttons {
    top: 18px;
    right: 4em;
  }
}
.cd-search-trigger,
.cd-nav-trigger {
  position: relative;
  display: block;
  width: 75px;
  height: 18px;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  z-index: 3;
  font-size: 14px;
  text-decoration: none;
  color: #ccc;
  text-transform: uppercase;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 200;
  letter-spacing: .07em;
}
.cd-search-trigger::before,
.cd-search-trigger::after {
  /* search icon */
  content: '';
  position: absolute;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-search-trigger::before {
  /* lens */
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #f2f2f2;
}
.cd-search-trigger::after {
  /* handle */
  height: 3px;
  width: 8px;
  background: #f2f2f2;
  bottom: 14px;
  right: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span {
  /* container for the X icon */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.cd-search-trigger span::before,
.cd-search-trigger span::after {
  /* close icon */
  content: '';
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 22px;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -11px;
  background: #f2f2f2;
  opacity: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before,
.cd-search-trigger.search-is-visible::after {
  /* hide search icon */
  opacity: 0;
}
.cd-search-trigger.search-is-visible span::before,
.cd-search-trigger.search-is-visible span::after {
  /* show close icon */
  opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-nav-trigger span,
.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #f2f2f2;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -1px;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(46, 50, 51, 0);
}
.cd-nav-trigger.nav-is-visible span::before,
.cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: #f2f2f2;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 1000px) {
  .cd-nav-trigger {
    display: none;
  }
}
.cd-primary-nav,
.cd-primary-nav ul {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #333;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
  margin: 0;
  padding: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-primary-nav a,
.cd-primary-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #444;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
}
.cd-primary-nav.is-hidden,
.cd-primary-nav ul.is-hidden {
  /* secondary navigations hidden by default */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-primary-nav.moves-out > li > a,
.cd-primary-nav ul.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
@media only screen and (max-width: 999px) {
  .nav-on-left .cd-primary-nav,
  .nav-on-left .cd-primary-nav ul {
    right: auto;
    left: 0;
  }
}
.cd-primary-nav .see-all a {
  /* different style for the See all button on mobile and tablet */
  color: #00bbde;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item,
.cd-primary-nav .cd-nav-icons .cd-nav-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item h3,
.cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item {
  padding-left: 90px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item {
  padding-left: 75px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item p {
  color: #f2f2f2;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-1::before {
  background-image: url("../img/line-icon-1.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-2::before {
  background-image: url("../img/line-icon-2.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-3::before {
  background-image: url("../img/line-icon-3.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-4::before {
  background-image: url("../img/line-icon-4.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-5::before {
  background-image: url("../img/line-icon-5.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-6::before {
  background-image: url("../img/line-icon-6.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-7::before {
  background-image: url("../img/line-icon-7.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-8::before {
  background-image: url("../img/line-icon-8.svg");
}
@media only screen and (max-width: 999px) {
  .cd-primary-nav {
    /* by default .cd-primary-nav is hidden - trick for iOS devices where you can see the navigation if you pull down */
    visibility: hidden;
    -webkit-transition: visibility 0s 0.3s;
    -moz-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
  }
  .cd-primary-nav.nav-is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
  }
}
@media only screen and (min-width: 1000px) {
  .cd-primary-nav {
    position: static;
    padding: 0 0 0 225px;
    margin: 0;
    height: auto;
    width: auto;
    float: left;
    overflow: visible;
    background: transparent;
  }
  .cd-primary-nav::after {
    clear: both;
    content: "";
    display: table;
  }
  .cd-primary-nav.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav ul {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    overflow: visible;
    z-index: 3;
  }
  .cd-primary-nav ul.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-primary-nav ul.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav > li {
    float: left;
    margin-left: 30px;
  }
  .cd-primary-nav > li > a {
    /* main navigation buttons style */
    position: relative;
    display: inline-block;
    height: 90px;
    line-height: 90px;
    padding: 0 10px;
    color: #fff;
    overflow: visible;
    border-bottom: none;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
    text-decoration: none;
  }
  .cd-primary-nav > li > a:hover {
    color: #00bbde;
  }
  .cd-primary-nav > li > a.selected {
    color: #00bbde;
    box-shadow: inset 0 4px 0 #00bbde;
  }
  .cd-primary-nav .go-back,
  .cd-primary-nav .see-all {
    display: none;
  }
  .cd-primary-nav .cd-secondary-nav,
  .cd-primary-nav .cd-nav-gallery,
  .cd-primary-nav .cd-nav-icons {
    position: absolute;
    top: 90px;
    width: 94vw;
    max-width: 1430px;
    margin: 0;
    left: 0;
    background: #ffffff;
    padding: 0;
    box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-primary-nav .cd-secondary-nav::after,
  .cd-primary-nav .cd-nav-gallery::after,
  .cd-primary-nav .cd-nav-icons::after {
    clear: both;
    content: "";
    display: table;
  }
  .cd-primary-nav .cd-secondary-nav.is-hidden,
  .cd-primary-nav .cd-nav-gallery.is-hidden,
  .cd-primary-nav .cd-nav-icons.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all,
  .cd-primary-nav .cd-nav-gallery > .see-all,
  .cd-primary-nav .cd-nav-icons > .see-all {
    /* this is the BIG See all button at the bottom of the dropdown menu */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    overflow: hidden;
    /* reset some inherited style */
    margin: 0;
    padding: 0;
    background-color: #fff;
    z-index: 99;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a,
  .cd-primary-nav .cd-nav-gallery > .see-all a,
  .cd-primary-nav .cd-nav-icons > .see-all a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    border-top: 1px solid #e2e3df;
    /* reset some inherited style */
    border-bottom: none;
    margin: 0;
    padding: 0;
    -webkit-transition: color 0.2s, background 0.2s, border 0.2s;
    -moz-transition: color 0.2s, background 0.2s, border 0.2s;
    transition: color 0.2s, background 0.2s, border 0.2s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a:hover,
  .cd-primary-nav .cd-nav-gallery > .see-all a:hover,
  .cd-primary-nav .cd-nav-icons > .see-all a:hover {
    background: #f2f2f2;
    border-color: #f2f2f2;
    color: #ffffff;
  }
  .cd-primary-nav .cd-secondary-nav > li {
    height: 495px;
    width: 30%;
    float: left;
    float: right;
    margin-right: 0;
    padding: 2.5% 0 2.5% 3%;
    /*border-right: 1px solid #e2e3df;*/
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*.cd-primary-nav .cd-secondary-nav > li:nth-child(4n+2) {
    +2 because we have 2 list items with display:none 
    margin-right: 0;
    border-right: none;
  }*/
  .cd-primary-nav .cd-secondary-nav > li > a {
    /* secondary nav title */
    color: #00bbde;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-secondary-nav a {
    height: 30px;
    line-height: 30px;
    padding: 0 18% 0 5px;
    color: #222;
    border-bottom: none;
    font-size: 20px;
    text-decoration: none;
  }
  .cd-secondary-nav li {
    padding: 5px 0;
  }
  .cd-primary-nav .cd-secondary-nav #video-feature a {
    height: auto;
    color: #999;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: .08em;
    padding: 0;
    margin: 0;
    width: 93%;
  }
  .cd-primary-nav .cd-secondary-nav #video-feature a img {
    width: 100%;
    height: auto;
  }
  .cd-primary-nav .cd-secondary-nav a:hover {
    color: #00bbde;
  }
  .cd-primary-nav .cd-secondary-nav ul {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  .cd-primary-nav .cd-secondary-nav ul ul {
    /* tertiary navigation */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .cd-primary-nav .cd-secondary-nav ul ul.is-hidden {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back a {
    color: #999;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .see-all {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav .moves-out > li > a {
    /* push the navigation items to the left - and lower down opacity - when tertiary nav slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-primary-nav .cd-nav-gallery li {
    /* set here number of columns - use width percentage */
    width: 22%;
    float: left;
    margin: 0 4% 40px 0;
  }
  .cd-primary-nav .cd-nav-gallery li:nth-child(4n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item {
    border-bottom: none;
    padding: 0;
    height: auto;
    line-height: 1.2;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item img {
    position: static;
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {
    color: #00bbde;
    font-weight: bold;
    padding: 0 .4em;
  }
  .cd-primary-nav .cd-nav-icons li {
    /* set here number of columns - use width percentage */
    width: 32%;
    float: left;
    margin: 0 2% 20px 0;
  }
  .cd-primary-nav .cd-nav-icons li:nth-child(3n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item {
    border-bottom: none;
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
    position: relative;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {
    background: #f6f6f5;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
    color: #00bbde;
    font-weight: bold;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item p {
    display: block;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item::before {
    left: 25px;
  }
}
@media (min-width: 1000px) and (max-width: 1300px) {
  .cd-primary-nav .cd-secondary-nav a {
    height: 22px;
    line-height: 22px;
    padding: 0 18% 0 5px;
    color: #222;
    border-bottom: none;
    font-size: 18px;
  }
}
.has-children > a,
.go-back a {
  position: relative;
}
.has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #666;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before,
.go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after,
.go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1000px) {
  .has-children > a::before,
  .has-children > a::after,
  .go-back a::before,
  .go-back a::after {
    background: #c9cbc4;
  }
  .has-children > a:hover::before,
  .has-children > a:hover::after,
  .go-back a:hover::before,
  .go-back a:hover::after {
    background: #00bbde;
  }
}
.has-children > a {
  padding-right: 40px;
}
.has-children > a::before,
.has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}
.cd-primary-nav .go-back a {
  padding-left: 40px;
}
.cd-primary-nav .go-back a::before,
.cd-primary-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
@media only screen and (min-width: 1000px) {
  .has-children > a::before,
  .has-children > a::after {
    right: 10%;
  }
  .cd-primary-nav > .has-children > a {
    /* main navigation arrows on larger devices */
    padding-right: 30px !important;
  }
  .cd-primary-nav > .has-children > a::before,
  .cd-primary-nav > .has-children > a::after {
    width: 9px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #c9cbc4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s;
  }
  .cd-primary-nav > .has-children > a::before {
    right: 12px;
  }
  .cd-primary-nav > .has-children > a::after {
    right: 7px;
  }
  .cd-primary-nav > .has-children > a.selected::before,
  .cd-primary-nav > .has-children > a.selected::after {
    width: 14px;
  }
  .cd-primary-nav > .has-children > a.selected::before {
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-primary-nav > .has-children > a.selected::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cd-secondary-nav > .has-children > a::before,
  .cd-secondary-nav > .has-children > a::after {
    /* remove arrows on secondary nav titles */
    display: none;
  }
  .cd-primary-nav .go-back a {
    padding-left: 20px;
  }
  .cd-primary-nav .go-back a::before,
  .cd-primary-nav .go-back a::after {
    left: 1px;
  }
}
.cd-search {
  position: absolute;
  height: 50px;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search form {
  height: 100%;
  width: 100%;
}
.cd-search input {
  border-radius: 0;
  border: none;
  background: #ffffff;
  height: 100%;
  width: 100%;
  padding: 0 5%;
  box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-search input::-webkit-input-placeholder {
  color: #c9cbc4;
}
.cd-search input::-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-ms-input-placeholder {
  color: #c9cbc4;
}
.cd-search input:focus {
  outline: none;
}
.cd-search.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.nav-is-fixed .cd-search {
  position: fixed;
}
@media only screen and (min-width: 1000px) {
  .cd-search {
    height: 120px;
    top: 80px;
  }
  .cd-search input {
    padding: 0 2em;
    font-size: 3.2rem;
    font-weight: 300;
  }
}
.cd-overlay {
  position: fixed;
  z-index: 9999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}
.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}
@media only screen and (max-width: 999px) {
  .cd-overlay.is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-overlay.is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
  .cd-overlay.is-visible.search-is-visible,
  .nav-on-left .cd-overlay.is-visible.search-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
/* -------------------------------- 

support for no js 

-------------------------------- */
.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
  visibility: visible;
  z-index: 2;
}
.no-js .cd-search {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1000px) {
  .no-js .cd-primary-nav {
    position: absolute;
    z-index: 9999;
    display: inline-block;
    width: auto;
    top: 0;
    right: 150px;
    padding: 0;
  }
  .no-js .nav-is-fixed .cd-primary-nav {
    position: fixed;
  }
}
@media only screen and (min-width: 320px) and (max-width: 375px) {
  #header-social {
    display: none;
  }
  .cd-header-buttons {
    position: absolute;
    display: inline-block;
    top: 24px;
    left: auto;
    right: 20px;
  }
}
#join-clients-like {
  padding: 10px 0 0 0;
  background: #fff;
}
@media (min-width: 1000px) and (max-width: 1300px) {
  #join-clients-like .cd-primary-nav .cd-secondary-nav a {
    height: 22px;
    line-height: 22px;
    padding: 0 18% 0 5px;
    color: #222;
    border-bottom: none;
    font-size: 18px;
  }
}
#join-clients-like h3 {
  margin: 0 0 25px;
  color: #999;
  font-size: 22px;
  text-align: center;
  font-family: "europa", "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
#join-clients-like #carousel div {
  text-align: center;
  width: 300px;
  height: 100px;
  float: left;
  position: relative;
  padding: 0 40px;
}
#join-clients-like #carousel div img {
  border: none;
  width: 100%;
  height: auto;
}
@media (min-width: 1000px) {
  .cd-primary-nav .cd-secondary-nav > li {
    height: 465px;
  }
}
@media (min-width: 1300px) {
  .cd-primary-nav .cd-secondary-nav > li {
    height: 555px;
  }
}
