@import url('https://fonts.googleapis.com/css?family=Roboto:400,100,300,500');
@import url('font-awesome.min.css');
@import url('https://cdn-images.mailchimp.com/embedcode/classic-10_7.css');

/* ======================================================================= 
 * Geral
 * ======================================================================= */

html {
  position: relative;
  min-height: 100%;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 400px;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-weight: 200;
  background-color: #283138;
  color: #fff;
  /*background-image: url('../img/homepage/bg.png');*/
  background-size: 112px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3 {
  font-weight: 300;
}

h4,
h5,
h6 {
  font-weight: 300;
}

p {
  line-height: 1.75em;
}

a,
a:hover,
a:active,
a:focus {
  color: #fff;
  text-decoration: none;
}

p a {
  text-decoration: underline;
}

p a:hover,
p a:active,
p a:focus {
  color: #ddd;
}

/*section:not(#video) {
  min-height: 708px;
  min-height: 100vh;
}*/

section#hero {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 310px;
  min-height: 100vh;
}

section#hero h1 {
  text-shadow: 0px 0px 10px #000;
}



button.btn {
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.3s linear;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 2px;
  border-radius: 1000px;
  font-weight: 400;
}

a button.btn {
  color: #fff;
  transition: all 0.3s ease-in;
}


button.btn:hover {
  background-color: #A04632;
  color: #fff;
  border-color: #A04632;
}

a button.btn:hover {
  color: #fff;
}

.next-btn {
  padding-top: 50px;
  padding-bottom: 100px;
}

#photo-courtesy {
  margin-top: -20px;
  font-size: 8pt;
}

#photo-courtesy p a {
  color: #fff;
  font-weight: 500;
}

#photo-courtesy p a:hover {
  text-decoration: underline;
}

li.disabled {
  position: relative;
}

li.disabled .tooltip-text {
  visibility: hidden;
  width: 100px;
  background-color: black;
  color: #fff;
  text-align: center;
  font-size: 0.8em;
  padding: 1px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 105%;
  opacity: 0;
  transition: opacity 0.3s linear;
}

li.disabled .tooltip-text::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%;
  /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
}

@media (max-width: 768px) {
  footer .container div:nth-child(odd) ul li.disabled .tooltip-text {
    left: 105%;
  }

  footer .container div:nth-child(odd) ul li.disabled .tooltip-text::after {
    right: 100%;
    left: -10px;
    border-color: transparent black transparent transparent;
  }
}

li.disabled:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

li.disabled a {
  color: #777 !important;
  pointer-events: none;
  cursor: not-allowed;
}

.flex {
  display: flex;
}

.flex-right {
  justify-content: flex-end;
}

.flex-space-between {
  justify-content: space-between;
}

/* ======================================================================= 
 * Navbar
 * ======================================================================= */

nav.navbar-default {
  height: 80px;
  padding-top: 15px;
  background-color: transparent;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: -moz-linear-gradient(top, #283138 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #283138 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #283138 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
  border: none;
  transition: background-color 0.3s ease-in;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75em;
  font-weight: 300;
}

nav.navbar-default .navbar-brand img {
  height: 20px;
}

nav.navbar-default.navbar-bg {
  background-color: #283138;
}

nav.navbar-default.navbar-bg li a {
  text-shadow: none;
}

.navbar-default .navbar-nav li a {
  border-bottom: 1px solid transparent;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s linear;
}

.navbar-default .navbar-nav li div a {
  border-bottom: 1px solid transparent;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s linear;
}

.navbar-default .navbar-nav li a:hover,
.navbar-default .navbar-nav li a:focus {
  color: #fff;
  background-color: transparent;
  border-color: #A04632;
}

.navbar-default .navbar-nav>li>a.active,
.navbar-default .navbar-nav>li>a.active:hover,
.navbar-default .navbar-nav>li>a.active:focus {
  background-color: transparent;
  border-bottom: 1px solid #666;
  color: #fff;
  font-weight: 400;
}

/* ======================================================================= 
 * Homepage
 * ======================================================================= */
section#intro_prometheus {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/prometheus_new.jpg");
  background-color: #283138;
}

section#intro_prometheus h1 {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
}

.shadow-text {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
  text-transform: uppercase;
}

section#intro_prometheus .flex {
  padding-top: 30px;
}



section#intro_prometheus .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#intro_prometheus .lg-padding {
  padding: 30px;
}

section#intro_prometheus .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}

section#intro_prometheus hr {
  margin: 20px 0;
  width: 30%;
  border-color: #A04632;
  height: 1px;
}



section#intro_prometheus p {
  width: 90%;
}

section#intro_prometheus .row:nth-child(2) {
  margin-top: 90px;
}

section#intro_prometheus .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#intro_narvi {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/narvi_new.jpg");
  background-color: #283138;
}

section#intro_hyperion {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/hyperion.jpeg");
  background-color: #283138;
}

section#intro_narvi h1,
section#intro_hyperion h1 {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
}





section#intro_narvi .flex {
  padding-top: 30px;
}



section#intro_narvi .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#intro_narvi .lg-padding {
  padding: 30px;
}

section#intro_narvi .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}

section#intro_narvi hr {
  margin: 20px 0;
  width: 30%;
  border-color: #A04632;
  height: 1px;
}



section#intro_narvi p {
  width: 90%;
}

section#intro_narvi .row:nth-child(2) {
  margin-top: 90px;
}

section#intro_narvi .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#intro_calisto {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/calisto_new.jpg");
  background-color: #283138;
}

section#intro_calisto h1 {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
}





section#intro_calisto .flex {
  padding-top: 30px;
}



section#intro_calisto .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#intro_calisto .lg-padding {
  padding: 30px;
}

section#intro_calisto .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}

section#intro_calisto hr {
  margin: 20px 0;
  width: 30%;
  border-color: #A04632;
  height: 1px;
}



section#intro_calisto p {
  width: 90%;
}

section#intro_calisto .row:nth-child(2) {
  margin-top: 90px;
}

section#intro_calisto .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#ultimate-detail {
  position: relative;
  width: 100%;
}

section#ultimate-detail .ultimate-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

section#ultimate-detail img {
  width: 100%;
  height: 100vh;
}

section#ultimate-detail div.ultimate-container {
  top: 0;
  left: 62.5%;
  width: 25%;
  text-align: center;
  margin-right: 10%;

}

section#ultimate-detail h2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 2.75em;
}

section#ultimate-detail h4 {
  margin-top: 2em;
}

section#intro_front {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/prometheus_2.jpg");
  background-color: #283138;
}

section#intro_front h1 {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
}


section#intro_front .flex {
  padding-top: 30px;
}


section#intro_front .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#intro_front .lg-padding {
  padding: 30px;
}

section#intro_front .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}

section#intro_front hr {
  margin: 20px 0;
  width: 30%;
  border-color: #A04632;
  height: 1px;
}



section#intro_front p {
  width: 90%;
}

section#intro_front .row:nth-child(2) {
  margin-top: 90px;
}

section#intro_front .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;

}

section#intro_back {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/narvi_back.jpg");
  background-color: #283138;
}

section#intro_back h1 {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
}





section#intro_back .flex {
  padding-top: 30px;
}



section#intro_back .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#intro_back .lg-padding {
  padding: 30px;
}

section#intro_back .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}

section#intro_back hr {
  margin: 20px 0;
  width: 30%;
  border-color: #A04632;
  height: 1px;
}

section#intro_back p {
  width: 90%;
}

section#intro_back .row:nth-child(2) {
  margin-top: 90px;
}

section#intro_back .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;

}

section#intro_back_2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/prometheus_3.jpg");
  background-color: #283138;
}

section#intro_back_2 h1 {
  text-shadow: 0px 0px 10px #000;
  font-weight: 300;
  font-size: 80px;
}

section#intro_back_2 .flex {
  padding-top: 30px;
}

section#intro_back_2 .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#intro_back_2 .lg-padding {
  padding: 30px;
}

section#intro_back_2 .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}

section#intro_back_2 hr {
  margin: 20px 0;
  width: 30%;
  border-color: #A04632;
  height: 1px;
}



section#intro_back_2 p {
  width: 90%;
}

section#intro_back_2 .row:nth-child(2) {
  margin-top: 90px;
}

section#intro_back_2 .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;

}

section#white-separation {

  background-color: #FFFFFF;

  height: 100px;

}

section#three-chairs {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/three_chairs.jpeg");
  background-color: #283138;
  position: relative;
  display: flex;
  justify-content: center;
}

section#three-chairs h1 {
  padding-left: 2.5%;
  position: absolute;
  top: 2.5%;
}


section#three-chairs .flex {
  padding-top: 30px;
}



section#three-chairs .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#three-chairs .lg-padding {
  padding: 30px;
}

section#three-chairs .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#three-chairs .row:nth-child(2) {
  margin-top: 90px;
}

section#three-chairs .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#alienware_back {
  position: relative;
  width: 100%;
  margin: 0 auto;

}

.bg-image {
  width: 100%;
  padding-top: 56.25%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

}

.ultimate-detail-img {
  background-image: url("../img/homepage/ultimate-detail.png")
}

.alienware-img {
  background-image: url("../img/homepage/absolute_exclusivity.png")
}

section#alienware_back div div {
  width: 35%;
  text-align: center;
  margin-right: 50%;
}

section#alienware_back h2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 2.75em;
}

section#alienware_back h4 {
  margin-top: 2em;
  color: black;
}

.block-on-top-of-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#alienware_back .flex {
  padding-top: 30px;
}



section#alienware_back .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#alienware_back .lg-padding {
  padding: 30px;
}

section#alienware_back .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#alienware_back .row:nth-child(2) {
  margin-top: 90px;
}

section#alienware_back .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#all_features {
  background-color: white;
  padding: 5% 0;
}

section#all_features h1 {
  color: #BEB6AF;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 100%;
}


section#all_features .flex {
  padding-top: 30px;
}



section#all_features .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#all_features .lg-padding {
  padding: 30px;
}

section#all_features .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#all_features .row:nth-child(2) {
  margin-top: 90px;
}

section#all_features .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section.dumb-whitespace {
  background-color: white;
  min-height: 20vh;
}

section.text-image-left {
  background-color: white;
  position: relative;
  text-align: left;
}

section.text-image-left img {
  width: 40%;
  max-height: 100%;
  margin-left: 5%;
}

section.text-image-left div div {
  width: 25%;
  text-align: center;
  margin-left: 50%;
  color: #000;
}

section.text-image-left h2 {
  text-transform: uppercase;
}

section.text-image-right h4 {
  margin-top: 2em;
}

section.text-image-right {
  background-color: white;
  position: relative;
  text-align: end;
  height: 50vh;
}

section.text-image-right img {
  width: 40%;
  max-height: 100%;
  margin-right: 5%;
}

section.text-image-right div div {
  width: 25%;
  text-align: center;
  margin-right: 50%;
  color: #000;
}

section.text-image-right h2 {
  text-transform: uppercase;
}

section.text-image-right h4 {
  margin-top: 2em;
}

section#leather {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/h47_leather.jpg");
  background-color: #283138;
}


section#leather .flex {
  padding-top: 30px;
}



section#leather .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#leather .lg-padding {
  padding: 30px;
}

section#leather .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#leather .row:nth-child(2) {
  margin-top: 90px;
}

section#leather .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#foam {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/h47_foam.jpg");
  background-color: #283138;
}


section#foam .flex {
  padding-top: 30px;
}



section#foam .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#foam .lg-padding {
  padding: 30px;
}

section#foam .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#foam .row:nth-child(2) {
  margin-top: 90px;
}

section#foam .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#tilting {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/h47_tilting.jpg");
  background-color: #283138;
}


section#tilting .flex {
  padding-top: 30px;
}



section#tilting .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#tilting .lg-padding {
  padding: 30px;
}

section#tilting .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#tilting .row:nth-child(2) {
  margin-top: 90px;
}

section#tilting .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#base {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  min-height: 100vh;
  background-image: url("../img/homepage/h47_base.jpg");
  background-color: #283138;
}


section#base .flex {
  padding-top: 30px;
}



section#base .scroll-indicator {
  position: absolute;
  left: 50%;
  font-size: 30px;
  top: 85%;
  z-index: 100;

  opacity: 0.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}



section#base .lg-padding {
  padding: 30px;
}

section#base .bg-dark-t {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
}


section#base .row:nth-child(2) {
  margin-top: 90px;
}

section#base .row:nth-child(2) a:nth-child(1) {
  margin-right: 20px;
}

section#space1 {
  background-color: #FFFFFF;
}

section#space1 h2 {
  font-size: 40px;
  font-weight: 500;
  color: #2C2C2C;
}

section#space1 h4 {
  font-size: 20px;
  color: #2C2C2C;
}

section#space2 {
  background-color: #FFFFFF;
}

section#space2 h2 {
  font-size: 40px;
  font-weight: 500;
  color: #2C2C2C;
}

section#space2 h4 {
  font-size: 20px;
  color: #2C2C2C;
}

section#space3 {
  background-color: #FFFFFF;
}

section#space3 h2 {
  font-size: 40px;
  font-weight: 500;
  color: #2C2C2C;
}

section#space3 h4 {
  font-size: 20px;
  color: #2C2C2C;
}

section#space4 {
  background-color: #FFFFFF;
}

section#space4 h2 {
  font-size: 40px;
  font-weight: 500;
  color: #2C2C2C;
}

section#space4 h4 {
  font-size: 20px;
  color: #2C2C2C;
}

section#space5 {
  background-color: #BEB6AF;
}

section#space5 h2 {
  font-size: 40px;
  font-weight: 500;
  color: #FFFFFF;
}

section#space5 h4 {
  font-size: 20px;
  color: #2C2C2C;
}

section#choose-exclusivity {
  background-color: white;
}

section#choose-exclusivity h2 {
  font-size: 40px;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
}

section#choose-exclusivity h4 {
  font-size: 20px;
  color: #2C2C2C;
}

section#table {
  background-color: white;
  color: #000;

}

section#table table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 3px;
}

section#table table th,
section#table table td {
  margin: 20px;
}

section#table th {
  text-transform: uppercase;
  padding: 1em 3em;
  color: white;
  font-size: 1.2em;
  font-weight: 500;
}

section#table td {
  background-color: rgb(236, 236, 236);
  text-align: center;
  padding: 0.4em 0em;
  font-weight: 400;
  font-size: 1em;
}

section#table .features {
  color: black;
  padding: 1em 12em;
}

section#table .silver {
  background-color: rgb(189, 189, 189);
}

section#table .gold {
  background-color: rgb(194, 168, 141);
}

section#table .platinum {
  background-color: rgb(25, 24, 30);
}

section#create-exclusivity h2 {
  font-weight: 500;
}

section#create-exclusivity button {
  background-color: #BEB6AF;
  margin-top: 3em;
  padding: 0.9em 3.5em;
  border-radius: 5em;
  text-transform: uppercase;
  color: black;
  font-size: 0.75em;
  border: none;
}



/* ======================================================================= 
 * Footer
 * ======================================================================= */

.footer {
  background-color: #BEB6AF;
  /*background-image: url('../img/homepage/bg-footer.png');*/
  background-size: 112px;
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 400px;
  border-top: 1px solid #BEB6AF;
  color: #283138;
  padding-top: 40px;
}

footer .icon img {
  width: 1.5em;
  height: 1.5em;
  filter: invert(89%) sepia(87%) saturate(1%) hue-rotate(265deg) brightness(110%) contrast(97%);
}

footer .icon {
  margin-right: 1em;
}

footer h3.contact {
  margin-bottom: 1em;
}

footer .container h3 {
  font-weight: 300;
  color: #FFFFFF;
}

footer .container ul li {
  line-height: 1.6em;
}

footer .container a {
  /*color: #282138;*/
  color: #FFFFFF;
  transition: all 0.2s ease-in;
}


footer .container a:hover {
  /*   color: #ffffff; */
  text-decoration: underline;
}

footer .container#credits {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #BEB6AF;
  background-color: #283138;
  padding: 10px;
  font-size: 0.65em;
}

footer .container#credits a:hover {
  text-decoration: none;
}

footer .container#credits a:hover span#sublinhado {
  text-decoration: underline;
}

footer .container#credits a {
  color: #BEB6AF;
}

footer .container#credits a span#mudar-icon>.fa+.fa,
footer .container#credits a:hover span#mudar-icon>.fa {
  display: none;
}

footer .container#credits a:hover span#mudar-icon>.fa+.fa {
  display: inherit;
}

/* ======================================================================= 
 * Modals
 * ======================================================================= */

.modal-content {
  background-color: #283138;
  color: #ddd;
  border-radius: 5px;
}

.modal .close {
  color: #fff;
}

.modal-header {
  border-bottom: 1px solid #444;
}

.modal-dialog {
  margin-top: 150px;
}

form#mc-embedded-subscribe-form input {
  border-radius: 50px;
}

form#mc-embedded-subscribe-form #mce-responses {
  margin: -15px 0 5px;
  width: 100%;
  font-weight: inherit;
}

form#mc-embedded-subscribe-form .response {
  width: 100%;
  margin: 0;
  font-weight: inherit;
}

form#mc-embedded-subscribe-form #mc_embed_signup #mce-error-response {
  color: #f00;
}

form#mc-embedded-subscribe-form #mc-embedded-subscribe {
  margin: 0;
}

/* ======================================================================= 
 * Media Queries
 * ======================================================================= */
/*
@media (min-width: 1024px) {
    section#intro > .carousel > .carousel-inner > .imagem {
        padding-top: 160px;
    }
} */
@media (min-width: 1024px) {
  section#intro_prometeus>.carousel>.carousel-inner>.imagem {
    padding-top: 160px;
  }
}

@media (min-width:1200px) {
  nav.navbar-default .navbar-right li {
    padding-left: 25px;
  }

  section#intro_prometeus>.carousel>.carousel-inner>.imagem {
    padding-top: 180px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  nav.navbar-default {
    letter-spacing: 2px;
    font-size: 0.7em;
  }
}

@media (max-width: 768px) {
  body {
    margin-bottom: 550px;
  }

  nav.navbar-default {
    background-color: #283138;
  }


  .footer {
    height: 550px;
  }

}

@media (max-width: 767px) {

  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    background-color: #283138;
    border-bottom: 1px solid #333;
  }


  section#intro_prometeus>.carousel>.carousel-inner>.imagem:nth-child(1) {
    background-position: 40%;
  }


  section#intro_prometeus .carousel-control {
    width: 7%;
  }
}

@media (max-width: 425px) {
  section#intro_prometeus button.btn {
    margin-top: 0px;
  }

  section#intro_prometeus .flex-right {
    justify-content: center;
  }

}


/* ======================================================================= 
 * Moon
 * ======================================================================= */

body#page-moon2 section#hero {
  background-image: url("../img/homepage/product1_new.jpeg");
  padding-top: 265px;
}

section.description .row {
  padding: 100px 0;
}

section.description .row.imagem {
  padding: 0;
  max-height: 500px;
  overflow: hidden;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}


/* ======================================================================= 
 * How it Works
 * ======================================================================= */

/* Specs */
body#page-how section#specs {
  min-height: initial;
  padding: 0 10px;
}

body#page-how section#specs h4 {
  font-weight: 400;
}

body#page-how section#specs .container {
  border: 1px solid #fff;
  border-radius: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}

body#page-how section#specs .container .row:not(:nth-child(1)) {
  padding: 20px 0;
}

body#page-how section#specs .container ul li {
  border-bottom: 1px solid #666;
  padding: 10px;
}

body#page-how section#specs .container ul li:nth-child(1) {
  border-top: 1px solid #666;
}

body#page-how section#specs .container ul li:hover {
  background-color: #222;
}


/* Imagens materiais */

.margin-header-materials {
  padding-bottom: 35px;
}

.margin-mid-materials {
  padding-top: 35px;
  padding-bottom: 35px;
}

.no-padding {
  padding: 0px;
}

.materials-text {
  visibility: hidden;
  padding-top: 3em;
}


.info-hover:hover .materials-text {
  visibility: visible;

}

.overlay:hover .materials-text {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease-in;
}



=================================================*/ .alert {
  padding: 15px 25px;
  border-radius: 100px;
}

#success strong {
  font-weight: 300;
}

#success a {
  color: #fff;
  font-weight: 500;
}

#success a:hover {
  text-decoration: underline;
}



/* ======================================================================= 
 * Remover cor do autofill do chrome 
 * ======================================================================= */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}



@media (max-width: 768px) {

  h1 {
    font-size: 3em !important;
  }

  h2 {
    font-size: 1.8em !important;
    display: ;
  }

  .text-image-right h2,
  .text-image-left h2 {
    margin-top: 3em;
    margin-bottom: 1em;
    font-weight: 500;
    color: #2c2c2c;
  }

  section#all_features h1 {
    font-size: 2.2em !important;
  }

  section#intro_prometheus h1 {
    font-size: 3em;
  }

  section#table th {
    padding: 0.2em 0.9em;
    font-size: 1em;
  }

  section#table .features {
    padding: 0.2em 0.9em;
    text-align: center;
  }

  section.text-image-left img {
    width: 60%;
    margin-left: 20%;
  }

  section.text-image-right img {
    width: 60%;
    margin-right: 20%;
  }

  section.text-image-left div div {
    width: auto;
    margin-left: auto;
    padding: 0 2em;
  }

  section.text-image-right div div {
    width: auto;
    margin-right: auto;
    padding: 0 2em;
  }

  .block-on-top-of-image {
    position: initial;
    height: auto;
  }

  section.text-image-right h4 {
    margin-top: 10.5px;
  }

  section#table td {
    font-size: 0.8em;
  }

  section#alienware_back div div {
    width: auto;
    margin-right: 0;
    padding: 2em;
  }

  section#alienware_back div div h4 {
    color: white;
  }

  section#ultimate-detail div.ultimate-container {
    margin-right: 0;
    position: initial;
    width: auto;
    padding: 100px 15px;
  }

  section#intro_prometheus,
  section#intro_calisto,
  section#intro_narvi,
  section#intro_front,
  section#intro_back,
  section#intro_hyperion,
  section#intro_back_2,
  section#three-chairs {
    width: 100%;
    padding-top: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding-top: 1em;
    min-height: 30vh;
  }

  section#intro_prometheus {
    margin-top: 80px;
  }

  section#all_features {
    padding: 20% 5%;
  }

  section#alienware_back button {
    background-color: #beb6af !important;
    margin-bottom: 2.25em;
  }

  section#alienware_back button a {
    color: #283138 !important;

  }

}


@media (min-width: 768px) {

  section#intro_prometheus,
  section#intro_calisto,
  section#intro_alienware,
  section#intro_narvi,
  section#intro_hyperion {
    padding-top: 150px;
  }

  .text-center h1 {
    letter-spacing: 20px;
  }
}

.text-image-right h2,
.text-image-left h2 {
  font-weight: 500;
}

.text-image-left h4 {
  margin-top: 2em;
}

section#alienware_back button {
  background-color: #283138;
  margin-top: 3em;
  padding: 0.9em 3.5em;
  border-radius: 5em;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 0.75em;
  border: none;
}