section.smarthome {
  font-family: 'Poppins', 'Open Sans', 'Helvetica', sans-serif !important;
  padding-bottom: 75px;
}

section.smarthome b {
  font-weight: 600;
}

section.smarthome .hero {
  height: auto !important;
  max-height: 600px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3% 0 5% 0;
}

section.smarthome .hero.landing {
  background-image: url(/images/smarthome/landing-wave-teal.svg) !important;
}

section.smarthome .hero.alexa {
  background-image: url(/images/smarthome/alexa-wave.svg) !important;
}

section.smarthome .hero.google {
  background-image: url(/images/smarthome/google-wave.svg) !important;
}

section.smarthome h1 {
  font-size: 5rem;
  font-weight: 700 !important;
  margin-bottom: 25px;
  line-height: 5rem;
  color: #fff !important;
}

section.smarthome h2 {
  text-align: center;
  font-size: 3.46rem !important;
  font-weight: 700 !important;
  line-height: 4.24rem !important;
  color: #50535C !important;
  margin-bottom: 40px !important;
}

.row .col-xs-12 h2 {
  padding: 0 !important;
}

section.smarthome h3 {
  font-size: 2.5rem;
  line-height: 3.4rem;
  font-weight: 300;
  margin-bottom: 25px;
  color: #fff !important;
}

section.smarthome .smarthomeIcon {
  max-width: 100%;
  margin-bottom: 10%;
}

section.smarthome .bodyBlurb, section.smarthome .commands, section.smarthome .setup, section.smarthome .integrations, section.smarthome .compatibility, section.smarthome .FAQs {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.smarthome a.blueLink {
  text-align: center !important;
  font-weight: 400;
  letter-spacing: .2px;
  color: #1BBBFF;
  font-size: 1.5rem;
  padding-bottom: 2px;
  border-bottom: 1.5px solid;
  text-decoration: none;
    line-height: 3.1rem;
}

section.smarthome .FAQs a.blueLink {
  font-size: inherit;
  border-bottom: none;
}

section.smarthome a.blueLink:hover {
  color: #faa100;
}

section.smarthome .commands p {
  font-size: 2.5rem;
  line-height: 3.9rem;
}

section.smarthome p {
  color: #50535C;
}

section.smarthome .bodyBlurb p {
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}

section.smarthome .setup ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 100px;
}

section.smarthome .setup ol li {
  margin: 0 0 3rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}

section.smarthome .setup ol li::before {
  content: counter(my-awesome-counter);
  color: #50535C;
  font-size: 2.4rem;
  position: absolute;
  --size: 5rem;
  left: calc(-1 * var(--size) - 40px);
  line-height: calc(var(--size) - 2px);
  width: var(--size);
  height: var(--size);
  top: 15%;
  border: 2px solid #50535C;
  border-radius: 50%;
  text-align: center;
}

section.smarthome .setup ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 100px;
}

section.smarthome .setup ol li {
  margin: 0 0 3rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}

section.smarthome .FAQs p:before {
  font-size: 2rem;
  font-weight: 600;
  width: var(--size);
  height: var(--size);
  text-align: right !important;
  color: #50535C;
  position: absolute;
  --size: 2.4rem;
  left: calc(var(--size) + 10px);
}

section.smarthome .FAQs p:nth-child(even):before {
  content: 'Q';
}

section.smarthome .FAQs p:nth-child(odd):before {
  content: 'A';
}

section.smarthome .FAQs p:nth-child(even) {
  font-size: 2rem;
  line-height: 2.6rem;
  padding-left: 60px;
  margin-bottom: 8px;
  font-weight: 500;
}

section.smarthome .FAQs p:nth-child(odd) {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 400;
  padding-left: 60px;
  margin-bottom: 40px;
}

.tooltip .tooltip-inner, .red-tooltip+.tooltip>.tooltip-arrow {
  border-radius: 14px;
  font-family: 'Poppins', 'Open Sans', 'Helvetica', sans-serif !important;
  max-width: 500px !important;
  height: auto;
  font-size: 1.5rem;
  line-height: 2.2rem;
  letter-spacing: .5px;
  padding: 10px 15px 10px 20px;
  color: #FFFFFF;
  background: rgba(0, 0, 0, .9);
  text-align: left;
  margin: 0px !important;
}

section.smarthome .integrations .Alexa {
  /*background: linear-gradient(45deg, #00C8FF, #798EFF);*/
  background: linear-gradient(45deg, rgba(0,200,255,.50), rgba(121,142,255,.50)); /*for accessibility contrast*/
  cursor: pointer;
}

section.smarthome .integrations .Google {
  /*background: linear-gradient(45deg, #FFB28B, #FE4B54);*/
  background: linear-gradient(45deg, rgba(255,178,139,.50), rgba(254,75,84,.50));
  cursor: pointer;
}

section.smarthome .integrations .Google:hover, section.smarthome .integrations .Alexa:hover {
  position: relative;
  transform: translate(0px, -10px);
  transition: all .1s ease-in-out;
  -webkit-transition: all .1s ease-in-out;
  /** Chrome & Safari **/
  -moz-transition: all .1s ease-in-out;
  /** Firefox **/
  -o-transition: all .1s ease-in-out;
  /** Opera **/
}

section.smarthome .integrations .Google, section.smarthome .integrations .Alexa {
  transition: all .1s ease-in-out;
  -webkit-transition: all .1s ease-in-out;
  /** Chrome & Safari **/
  -moz-transition: all .1s ease-in-out;
  /** Firefox **/
  -o-transition: all .1s ease-in-out;
  /** Opera **/
  position: relative;
  border-radius: 14px;
  text-align: center;
  padding: 15% 10% 7.5% 10%;
}

section.smarthome .integrations img {
  border-radius: 100px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  height: 100px;
  width: auto;
}

section.smarthome .integrations p {
  margin: 30px auto 45px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2rem;
}

section.smarthome .integrations p b {
  font-weight: 600;
}

section.smarthome .integrations a {
  font-weight: 300;
  letter-spacing: .2px;
  color: #fff;
  font-size: 1.25rem;
  padding-bottom: 2px;
  border-bottom: 1px solid;
  text-decoration: none;
}

section.smarthome .compatibility img {
  width: 100%;
  padding: 5%;
  height: auto;
}

section.smarthome .col-xs-4.col-sm-3.col-md-2 {
  margin-bottom: 30px;
}

/* Extra Small */
@media(max-width:767px) {
  section.smarthome {
    font-size: 70%;
    line-height: 70%;
  }

  section.smarthome h1 {
    font-size: calc(5rem * .7);
    line-height: calc(5rem * .7);
    text-align: center;
  }

  section.smarthome h2 {
    font-size: calc(3.46rem * .7) !important;
    line-height: calc(4.24rem * .7) !important;
    text-align: center !important;
  }

  section.smarthome h3 {
    font-size: calc(2.5rem * .7);
    line-height: calc(3.4rem * .7);
    text-align: center;
  }

  .smarthome .hero {
    padding: 5% !important;
    height: auto !important;
    background-position: 100% 100%;
    background-repeat: no-repeat;
  }

  .smarthomeIcon {
    margin-top: 10px;
    max-width: 350px;
  }

  section.smarthome p {
    font-size: calc(2.5rem * .65);
    line-height: calc(3.9rem * .65);
  }

  section.smarthome .bodyBlurb {
    padding-bottom: 0px;
  }

  section.smarthome .bodyBlurb p {
    padding-left: 5px;
    padding-right: 5px;
  }

  section.smarthome .container.commands {
    margin: 7% auto !important;
    padding-bottom: 7%;
    text-align: center;
  }

  section.smarthome .hero.alexa img, section.smarthome .hero.google img {
    transform: translateY(30px);
  }

  section.smarthome ol li::before {
    font-size: calc(2.4rem * .65);
    --size: calc(5rem * .65);
    top: 10%;
  }

  section.smarthome .FAQs p:before {
    font-size: calc(2rem * .8);
    --size: 2.4rem;
    left: calc(var(--size) - 10px);
  }

  section.smarthome .FAQs p:nth-child(even) {
    font-size: calc(2rem * .8);
    line-height: calc(2.6rem * .8);
    padding-left: 35px;
  }

  section.smarthome .FAQs p:nth-child(odd) {
    font-size: calc(1.5rem * .8);
    line-height: calc(2.2rem * .8);
    padding-left: 35px;
  }

  section.smarthome .integrations .Google, section.smarthome .integrations .Alexa {
    width: 80%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}


/* Small */

@media(min-width:768px) and (max-width:991px) {
  section.smarthome .hero h1 {
    font-size: calc(5rem * .8);
    line-height: calc(5rem * .8);
    text-align: center;
  }

  section.smarthome .hero h3 {
    font-size: calc(2.5rem * .8);
    line-height: calc(3.4rem * .8);
    text-align: center;
  }

  section.smarthome h2 {
    font-size: calc(3.46rem * .8) !important;
    line-height: calc(4.24rem * .8) !important;
  }

  .smarthomeIcon {
    max-width: 60%;
  }

  section.smarthome p {
    font-size: calc(2.5rem * .8);
    line-height: calc(3.9rem * .8);
  }
}

/* Medium */
@media(min-width:992px) and (max-width:1199px) {
  .hero .container .row {
    margin-bottom: 100px;
  }

  section.smarthome .hero .container .row div:first-child {
    transform: translateY(70px);
  }

  section.smarthome .hero.alexa img, section.smarthome .hero.google img {
    transform: translateY(50px) scale(1.2);
  }

  section.smarthome .smarthomeIcon {
    margin-top: 40px;
  }

  section.smarthome .hero h1 {
    font-size: calc(5rem * .9);
    line-height: calc(5rem * .9);
  }

  section.smarthome .hero h3 {
    font-size: calc(2.5rem * .9);
    line-height: calc(3.4rem * .9);
  }

  section.smarthome h2 {
    font-size: calc(3.46rem * .9) !important;
    line-height: calc(4.24rem * .9) !important;
  }
}


/* Large */
@media(min-width:1200px) {
  .hero .container .row {
    margin-bottom: 150px;
  }

  section.smarthome .hero.alexa img, section.smarthome .hero.google img {
    transform: translateX(5%) translateY(120px) scale(1.6);
  }

  section.smarthome .smarthomeIcon {
    margin-top: 60px;
  }

  section.smarthome .hero h1 {
    margin-top: 60px;
  }
}

#accordion > .panel > .panel-body > a > p {
  font-weight: bold !important;
  text-decoration: underline !important;
}
#accordion > .panel > .panel-body > a:hover > p {
  color: #1a428a !important;
}