@charset "UTF-8";
/*!
Theme Name: Foobot 2018
Author: Foobot
Version: 2.32.0
Author URI: https://foobot.io/
Description: A custom theme for https://foobot.io
License: This WordPress theme is comprised of two parts: (1) The PHP code and integrated HTML are licensed under the GPL license as is WordPress itself.  You will find a copy of the license text in the same directory as this text file. Or you can read it here: http://wordpress.org/about/gpl/ (2) All other parts of the theme including, but not limited to the CSS code, images, and design are licensed according to the license purchased. Read about licensing details here: http://themeforest.net/licenses/regular_extended

*/
/**
 *
 *	Colors
 *
 */
/* Bullets*/
/* Navigation */
/* padding between label and icon */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75); }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25); }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75); }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25); }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-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: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    -ms-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    -ms-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  100% {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom; } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    -ms-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    -ms-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top; } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top; } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0); } }

@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%); }
  100% {
    -moz-transform: translateY(0); } }

@-o-keyframes slideDown {
  0% {
    -o-transform: translateY(-100%); }
  100% {
    -o-transform: translateY(0); } }

@keyframes slideDown {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

.animated.slideDown {
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -o-animation-name: slideDown;
  animation-name: slideDown; }

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-100%); } }

@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0); }
  100% {
    -moz-transform: translateY(-100%); } }

@-o-keyframes slideUp {
  0% {
    -o-transform: translateY(0); }
  100% {
    -o-transform: translateY(-100%); } }

@keyframes slideUp {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-100%); } }

.animated.slideUp {
  -webkit-animation-name: slideUp;
  -moz-animation-name: slideUp;
  -o-animation-name: slideUp;
  animation-name: slideUp; }

.headhesive {
  /* Required styles */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  /* Translate -100% to move off screen */
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  /* Animations */
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

/**
 * Headhesive stick
 * > `stick` class for the cloned element:
 *
 * @example
 * var options = {
 *   classes {
 *     stick: 'banner--stick';
 *   }
 * }
 */
.headhesive--stick {
  /* Translate back to 0%; */
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%); }

/**
 * Headhesive unstick
 * > `unstick` class for the cloned element:
 *
 * @example
 * var options = {
 *   classes {
 *     unstick: 'banner--unstick';
 *   }
 * }
 */
.headhesive--unstick {
  /* Not required to use, but could be useful to have */ }

/* Social Brands */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
.wp-caption .wp-caption-text,
figure,
.wp-caption,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure,
.wp-caption {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
textarea,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
html textarea[type="button"],
input[type="reset"],
textarea[type="reset"],
input[type="submit"],
textarea[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled],
html textarea[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input,
textarea {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], textarea[type="checkbox"],
input[type="radio"],
textarea[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, textarea[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
textarea[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"], textarea[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, textarea[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
textarea[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: orange;
  text-shadow: none; }

::selection {
  background: orange;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

.si-icons span {
  display: inline-block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center; }

/* Fallback for browsers that don't support SVG - Generated with http://iconizr.com/ */
.no-svg .si-icon-clock {
  background-image: url("../png/clock.png"); }

.no-svg .si-icon-contract {
  background-image: url("../png/contract.png"); }

.no-svg .si-icon-down-arrow {
  background-image: url("../png/down-arrow.png"); }

.no-svg .si-icon-equalizer {
  background-image: url("../png/equalizer.png"); }

.no-svg .si-icon-flag {
  background-image: url("../png/flag.png"); }

.no-svg .si-icon-glass-empty {
  background-image: url("../png/glass.png"); }

.no-svg .si-icon-hamburger, .no-svg .si-icon-hamburger-cross {
  background-image: url("../png/hamburger.png"); }

.no-svg .si-icon-hourglass {
  background-image: url("../png/hourglass.png"); }

.no-svg .si-icon-mail {
  background-image: url("../png/mail.png"); }

.no-svg .si-icon-maximize, .no-svg .si-icon-maximize-rotate {
  background-image: url("../png/maximize.png"); }

.no-svg .si-icon-monitor {
  background-image: url("../png/monitor.png"); }

.no-svg .si-icon-nav-left-arrow {
  background-image: url("../png/nav-left-arrow.png"); }

.no-svg .si-icon-nav-up-arrow {
  background-image: url("../png/nav-up-arrow.png"); }

.no-svg .si-icon-lock {
  background-image: url("../png/padlock.png"); }

.no-svg .si-icon-play {
  background-image: url("../png/play.png"); }

.no-svg .si-icon-plus, .no-svg .si-icon-plus-cross {
  background-image: url("../png/plus.png"); }

.no-svg .si-icon-right-arrow {
  background-image: url("../png/right-arrow.png"); }

.no-svg .si-icon-smiley {
  background-image: url("../png/smiley.png"); }

.no-svg .si-icon-trash {
  background-image: url("../png/trash.png"); }

.no-svg .si-icon-volume {
  background-image: url("../png/volume.png"); }

.no-svg .si-icon-zoom {
  background-image: url("../png/zoom.png"); }

/* alternatively you can define that there is no background image when SVG is supported instead of using .no-svg */
#site-wrapper {
  position: relative; }

#offcanvas-nav a:hover {
  border-bottom: none;
  color: #000; }

#offcanvas-nav a.mm-next:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.corner-triangle {
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3; }
  .corner-triangle.sticky {
    position: fixed; }
  .corner-triangle::before, .corner-triangle::after {
    content: '';
    position: absolute;
    z-index: 3;
    border-color: transparent;
    border-style: solid; }
  .corner-triangle::before {
    border-width: 33px; }
  .corner-triangle span {
    display: block;
    position: absolute;
    z-index: 4; }
  .corner-triangle.corner-triangle-top-left {
    top: 0;
    left: 0; }
    .corner-triangle.corner-triangle-top-left::before, .corner-triangle.corner-triangle-top-left::after {
      top: 0;
      left: 0; }
    .corner-triangle.corner-triangle-top-left::before {
      border-left-color: #3b4f4b;
      border-top-color: #3b4f4b; }
  .corner-triangle.corner-triangle-top-right {
    top: 0;
    right: 0; }
    .corner-triangle.corner-triangle-top-right::before, .corner-triangle.corner-triangle-top-right::after {
      top: 0;
      right: 0; }
    .corner-triangle.corner-triangle-top-right span {
      top: 0;
      right: 0; }
  .corner-triangle a#offcanvas-nav-trigger {
    position: absolute;
    left: 0;
    top: 0;
    padding: 9px;
    text-align: left;
    color: white;
    z-index: 4;
    font-size: 12px; }
    .corner-triangle a#offcanvas-nav-trigger:link, .corner-triangle a#offcanvas-nav-trigger:visited {
      opacity: .8; }
    .corner-triangle a#offcanvas-nav-trigger:hover {
      opacity: 1;
      border-bottom: none; }
    .corner-triangle a#offcanvas-nav-trigger:active {
      opacity: .6; }

#offcanvas-nav:not(.mm-menu) {
  display: none; }

#beta-notice {
  opacity: .8; }
  #beta-notice span {
    color: white;
    transform: rotate(45deg);
    text-align: center;
    line-height: 45px;
    width: 40px; }

.mm-menu .menu li {
  text-align: left;
  border-bottom: none; }

.mm-listview > li, .mm-listview > li .mm-next, .mm-listview > li .mm-next:before, .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.1); }

html.mm-pagedim-black.mm-opening #mm-blocker,
html.mm-pagedim-white.mm-opening #mm-blocker,
html.mm-pagedim.mm-opening #mm-blocker {
  opacity: 0.3;
  -webkit-transition: opacity .4s linear !important;
  transition: opacity .4s linear !important; }

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {
  *height: 0; }

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease; }

.flex-direction-nav .flex-prev {
  left: -50px; }

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right; }

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px; }

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px; }

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001'; }

.flex-direction-nav a.flex-next:before {
  content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004'; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a.flex-play:before {
  content: '\f003'; }

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center; }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("assets/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("assets/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("assets/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("assets/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("assets/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("assets/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.2857142857em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.8571428571em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

.fa-envelope-open:before {
  content: ""; }

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

.fa-address-book:before {
  content: ""; }

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

.fa-free-code-camp:before {
  content: ""; }

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden, .searchform input[type="submit"], .searchform textarea[type="submit"], #social-sharing .social-title, .twitter-feed p.interact a span, div.wpcf7 .screen-reader-response, #masthead .site-branding .branding-title, #masthead .nav-toggle-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active, .searchform input.focusable:active[type="submit"], .searchform textarea.focusable:active[type="submit"], #social-sharing .focusable.social-title:active, .twitter-feed p.interact a span.focusable:active, div.wpcf7 .focusable.screen-reader-response:active, #masthead .site-branding .focusable.branding-title:active, #masthead .focusable.nav-toggle-label:active,
.visuallyhidden.focusable:focus,
.searchform input.focusable:focus[type="submit"],
.searchform textarea.focusable:focus[type="submit"],
#social-sharing .focusable.social-title:focus,
.twitter-feed p.interact a span.focusable:focus,
div.wpcf7 .focusable.screen-reader-response:focus,
#masthead .site-branding .focusable.branding-title:focus,
#masthead .focusable.nav-toggle-label:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

#footer-navigation {
  padding-top: 0;
  padding-bottom: 0; }

/* ==========================================================================
   Mixins
   ========================================================================== */
/*
 * Mixin for clearfix
 * @include clearfix;
*/
/*
 * Mixin for basic CSS triangles
 * @include triangle(up, #000, 50px)
*/
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname', 'normal', 'normal');
 */
/* Transitions */
/**
 *
 *	Colors
 *
 */
.site-footer ul, #preheader #switcher #language-selector ul, #widget-area .widget-container .widget ul, .slick-slider.works-with, .page-template-features-page .connected-devices {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.indicator i {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

#hero .container .content h1, #hero .grid-wrapper .content h1, #hero #post-taxonomies .post-taxonomies-categories .content h1, #post-taxonomies #hero .post-taxonomies-categories .content h1, #hero #post-taxonomies .post-taxonomies-tags .content h1, #post-taxonomies #hero .post-taxonomies-tags .content h1, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content h1, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content h1, #hero .cc-grower .cc-window.cc-banner .content h1, .cc-grower #hero .cc-window.cc-banner .content h1, #hero .product-list__featured > .tcb-flex-row .content h1, #hero .testimonials > .in .content h1, #hero .wuot__container .content h1, #hero .search #content #ais-wrapper .content h1, .search #content #hero #ais-wrapper .content h1 {
  padding: 0.1538461538461538rem 0;
  margin: 20px auto; }
  #hero .container .content h1 a:link, #hero .grid-wrapper .content h1 a:link, #hero #post-taxonomies .post-taxonomies-categories .content h1 a:link, #post-taxonomies #hero .post-taxonomies-categories .content h1 a:link, #hero #post-taxonomies .post-taxonomies-tags .content h1 a:link, #post-taxonomies #hero .post-taxonomies-tags .content h1 a:link, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content h1 a:link, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content h1 a:link, #hero .cc-grower .cc-window.cc-banner .content h1 a:link, .cc-grower #hero .cc-window.cc-banner .content h1 a:link, #hero .product-list__featured > .tcb-flex-row .content h1 a:link, #hero .testimonials > .in .content h1 a:link, #hero .wuot__container .content h1 a:link, #hero .search #content #ais-wrapper .content h1 a:link, .search #content #hero #ais-wrapper .content h1 a:link, #hero .container .content h1 a:visited, #hero .grid-wrapper .content h1 a:visited, #hero #post-taxonomies .post-taxonomies-categories .content h1 a:visited, #post-taxonomies #hero .post-taxonomies-categories .content h1 a:visited, #hero #post-taxonomies .post-taxonomies-tags .content h1 a:visited, #post-taxonomies #hero .post-taxonomies-tags .content h1 a:visited, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content h1 a:visited, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content h1 a:visited, #hero .cc-grower .cc-window.cc-banner .content h1 a:visited, .cc-grower #hero .cc-window.cc-banner .content h1 a:visited, #hero .product-list__featured > .tcb-flex-row .content h1 a:visited, #hero .testimonials > .in .content h1 a:visited, #hero .wuot__container .content h1 a:visited, #hero .search #content #ais-wrapper .content h1 a:visited, .search #content #hero #ais-wrapper .content h1 a:visited {
    border-bottom: none; }
  #hero .container .content h1 > span, #hero .grid-wrapper .content h1 > span, #hero #post-taxonomies .post-taxonomies-categories .content h1 > span, #post-taxonomies #hero .post-taxonomies-categories .content h1 > span, #hero #post-taxonomies .post-taxonomies-tags .content h1 > span, #post-taxonomies #hero .post-taxonomies-tags .content h1 > span, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content h1 > span, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content h1 > span, #hero .cc-grower .cc-window.cc-banner .content h1 > span, .cc-grower #hero .cc-window.cc-banner .content h1 > span, #hero .product-list__featured > .tcb-flex-row .content h1 > span, #hero .testimonials > .in .content h1 > span, #hero .wuot__container .content h1 > span, #hero .search #content #ais-wrapper .content h1 > span, .search #content #hero #ais-wrapper .content h1 > span,
  #hero .container .content h1 > span p,
  #hero .grid-wrapper .content h1 > span p,
  #hero #post-taxonomies .post-taxonomies-categories .content h1 > span p,
  #post-taxonomies #hero .post-taxonomies-categories .content h1 > span p,
  #hero #post-taxonomies .post-taxonomies-tags .content h1 > span p,
  #post-taxonomies #hero .post-taxonomies-tags .content h1 > span p,
  #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content h1 > span p,
  .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content h1 > span p,
  #hero .cc-grower .cc-window.cc-banner .content h1 > span p,
  .cc-grower #hero .cc-window.cc-banner .content h1 > span p,
  #hero .product-list__featured > .tcb-flex-row .content h1 > span p,
  #hero .testimonials > .in .content h1 > span p,
  #hero .wuot__container .content h1 > span p,
  #hero .search #content #ais-wrapper .content h1 > span p,
  .search #content #hero #ais-wrapper .content h1 > span p {
    display: inline;
    padding: 0.5rem;
    /* Needs prefixing manually - autoprefixer doesn't do it */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone; }

.test-autoprefixer {
  background: linear-gradient(#000, #111); }

.button, input[type="submit"], textarea[type="submit"], input[type="reset"], textarea[type="reset"] {
  display: inline-block;
  text-align: center;
  border-bottom: none;
  background-image: none !important;
  color: inherit;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.66rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }
  .button:link, input:link[type="submit"], textarea:link[type="submit"], input:link[type="reset"], textarea:link[type="reset"], .button:visited, input:visited[type="submit"], textarea:visited[type="submit"], input:visited[type="reset"], textarea:visited[type="reset"] {
    color: inherit;
    background-color: rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.1); }
  .button:hover, input:hover[type="submit"], textarea:hover[type="submit"], input:hover[type="reset"], textarea:hover[type="reset"] {
    color: inherit;
    background-color: rgba(40, 54, 51, 0.19); }
  .button:active, input:active[type="submit"], textarea:active[type="submit"], input:active[type="reset"], textarea:active[type="reset"] {
    color: inherit;
    background-color: rgba(48, 65, 62, 0.28); }
  .button:link, input:link[type="submit"], textarea:link[type="submit"], input:link[type="reset"], textarea:link[type="reset"], .button:visited, input:visited[type="submit"], textarea:visited[type="submit"], input:visited[type="reset"], textarea:visited[type="reset"], .button:hover, input:hover[type="submit"], textarea:hover[type="submit"], input:hover[type="reset"], textarea:hover[type="reset"], .button:active, input:active[type="submit"], textarea:active[type="submit"], input:active[type="reset"], textarea:active[type="reset"] {
    text-decoration: none;
    background-image: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1); }
  .button.ghost:link, input.ghost:link[type="submit"], textarea.ghost:link[type="submit"], input.ghost:link[type="reset"], textarea.ghost:link[type="reset"], .button.ghost:visited, input.ghost:visited[type="submit"], textarea.ghost:visited[type="submit"], input.ghost:visited[type="reset"], textarea.ghost:visited[type="reset"] {
    background-color: transparent;
    border-width: 1px;
    border-style: solid; }

/* =========================================================================
   Forms
   ========================================================================= */
form {
  text-align: left;
  /* Forms always look better left aligned. */ }
  form select {
    text-align: center;
    align-items: center; }
    @media (min-width: 320px) {
      form select {
        text-align: left;
        align-items: left; } }
  form#commentform p {
    width: 100%; }
    @media (min-width: 480px) {
      form#commentform p.username {
        width: 30.4647160069%;
        clear: right;
        float: left;
        margin-left: 0;
        margin-right: 4.3029259897%; }
      form#commentform p.emailaddress {
        width: 30.4647160069%;
        clear: right;
        float: left;
        margin-right: 4.3029259897%; }
      form#commentform p.url {
        width: 30.4647160069%;
        clear: right;
        float: right;
        margin-right: 0; }
      form#commentform p.comment-form-comment {
        width: 100%;
        clear: right;
        float: right;
        margin-right: 0; }
      form#commentform p.form-submit {
        width: 100%;
        clear: right;
        float: right;
        margin-right: 0; } }
  form#mc-embedded-subscribe-form {
    display: table; }
    @media (min-width: 480px) {
      form#mc-embedded-subscribe-form div.username {
        width: 33.333%;
        display: table-cell;
        padding-right: 10px; }
      form#mc-embedded-subscribe-form div.username-last {
        width: 33.333%;
        display: table-cell;
        padding-right: 10px; }
      form#mc-embedded-subscribe-form div.emailaddress {
        width: 33.333%;
        display: table-cell;
        padding-right: 10px; }
      form#mc-embedded-subscribe-form div.signin {
        /* The sign up button */
        display: block;
        width: 100%; } }
  @media (min-width: 480px) and (min-width: 320px) {
    form#mc-embedded-subscribe-form div.signin {
      display: table-cell;
      width: auto; } }
  @media (min-width: 480px) and (min-width: 768px) {
    form#mc-embedded-subscribe-form div.signin {
      margin: 0;
      padding: 0;
      vertical-align: bottom; }
      form#mc-embedded-subscribe-form div.signin input, form#mc-embedded-subscribe-form div.signin textarea {
        margin: 0; } }

.inline-a {
  display: table;
  width: 100%;
  vertical-align: bottom; }
  .inline-a div {
    width: 100%;
    vertical-align: bottom; }
    .inline-a div[type="submit"] {
      width: auto; }
  @media (min-width: 768px) {
    .inline-a div {
      width: 33.333%;
      display: table-cell;
      padding-right: 10px; } }

.inline-b {
  display: table;
  width: 100%;
  vertical-align: bottom; }
  .inline-b div {
    width: 100%;
    vertical-align: bottom; }
    .inline-b div[type="submit"] {
      width: auto; }
  @media (min-width: 768px) {
    .inline-b div {
      width: 50%;
      display: table-cell;
      padding-right: 10px; } }


input,
textarea {
  appearance: none;
  border-radius: 0;
  padding: 1em 10px;
  border: none;
  width: auto;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #3b4f4b; }
  input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  input[type="submit"].search-submit, textarea[type="submit"].search-submit {
    display: none; }
  input[type="password"], textarea[type="password"], input[type="email"], textarea[type="email"], input[type="text"], textarea[type="text"], input[type="url"], textarea[type="url"], input[type="search"], textarea[type="search"] {
    width: 100%; }
  input[type="file"], textarea[type="file"] {
    padding: 0;
    background: none; }
  input[type="number"]::-webkit-inner-spin-button, textarea[type="number"]::-webkit-inner-spin-button {
    /** 
		 * Always show the spinner buttons in Chrome.
		 * This is default behaviour in FF/Safari.
		 */
    opacity: 1; }
  input[type="search"], textarea[type="search"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent; }

.searchform input, .searchform textarea {
  box-shadow: inset 0 0 1px #000000; }
  .searchform input:after, .searchform textarea:after {
    font-family: 'FontAwesome';
    content: '\f002';
    transition: all 0.2s ease-in-out;
    text-align: right;
    display: inline-block;
    opacity: .6;
    padding-left: 7px; }

textarea {
  appearance: none;
  border-radius: 0;
  width: 100%; }

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4); }

:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.4); }

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.4); }

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4); }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.4); }

::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(0, 0, 0, 0.4); }

.icon, img.avatar, #cover .full-height-scroll-trigger:after {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }
  .icon.icon-small, img.icon-small.avatar, #cover .icon-small.full-height-scroll-trigger:after {
    width: 30px;
    height: 30px; }
  .icon.icon-medium, img.icon-medium.avatar, #cover .icon-medium.full-height-scroll-trigger:after {
    width: 60px;
    height: 60px; }
  .icon.icon-large, img.icon-large.avatar, #cover .icon-large.full-height-scroll-trigger:after {
    width: 90px;
    height: 90px; }

.si-icon svg path {
  stroke: #3b4f4b; }

.menu {
  padding: 0;
  list-style-type: none; }
  .menu li {
    text-align: center; }

.menu {
  text-align: center; }
  @media (min-width: 768px) {
    .menu li {
      display: inline;
      margin: 0 0 0 1rem; } }

.indicator {
  display: block;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 2em;
  height: 2em;
  background: transparent;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  border: 1px solid #3b4f4b; }
  .indicator > span {
    display: inline-block;
    height: 100%; }
  .indicator i {
    display: block;
    font-size: 1.3em; }
  .indicator.right::before {
    content: ""; }

.nav-toggle {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .nav-toggle {
      display: none; } }
  .nav-toggle .no-js {
    display: none; }
  body.cover-content-color-dark .nav-toggle a:link {
    color: rgba(0, 0, 0, 0.6); }
  body.cover-content-color-light .nav-toggle a:link {
    color: rgba(255, 255, 255, 0.8); }
  body.cover-content-color-dark .nav-toggle a:hover {
    color: rgba(0, 0, 0, 0.5); }
  body.cover-content-color-light .nav-toggle a:hover {
    color: rgba(255, 255, 255, 0.5); }

.menu,
.menu ul {
  display: block; }
  .menu:before, .menu:after,
  .menu ul:before,
  .menu ul:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .menu:after,
  .menu ul:after {
    clear: both; }
  @media (min-width: 768px) {
    .menu,
    .menu ul {
      margin: 0 0 10px 0;
      text-align: right;
      width: 100%; } }
  .menu li,
  .menu ul li {
    text-align: center; }
    @media (min-width: 768px) {
      .menu li,
      .menu ul li {
        display: inline-block;
        margin: 0 0 0 1em;
        position: relative; } }
    .menu li:last-of-type,
    .menu ul li:last-of-type {
      border: none; }
    .menu li.menu-icon,
    .menu ul li.menu-icon {
      position: relative; }
      .menu li.menu-icon::after,
      .menu ul li.menu-icon::after {
        font-family: 'FontAwesome';
        margin-left: 15px;
        width: 16px;
        position: absolute;
        right: 10px;
        top: 10px; }
    @media (min-width: 768px) {
      .menu li.menu-item-has-children > a span, .menu li.page_item_has_children > a span,
      .menu ul li.menu-item-has-children > a span,
      .menu ul li.page_item_has_children > a span {
        margin-right: 5px; } }
    @media (min-width: 768px) {
      .menu li.menu-item-has-children > a:after, .menu li.page_item_has_children > a:after,
      .menu ul li.menu-item-has-children > a:after,
      .menu ul li.page_item_has_children > a:after {
        font-family: 'FontAwesome';
        content: '\f0da';
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        text-align: right;
        display: inline-block;
        opacity: .6;
        padding-left: 7px; } }
    @media (min-width: 768px) {
      .menu li.menu-item-has-children:hover > a:after,
      .menu li.page_item_has_children:hover > a:after,
      .menu ul li.menu-item-has-children:hover > a:after,
      .menu ul li.page_item_has_children:hover > a:after {
        transform: rotate(90deg);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; } }
    .menu li a,
    .menu ul li a {
      padding: 20px 5px;
      display: block;
      text-decoration: none;
      border-bottom: none;
      background-image: none !important; }
      .menu li a:hover, .menu li a:active,
      .menu ul li a:hover,
      .menu ul li a:active {
        background-repeat: repeat; }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #menu-main_menu.menu li {
    margin: 0 0 0 0.5em; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #colophon.site-footer .container, #colophon.site-footer .grid-wrapper, #colophon.site-footer #post-taxonomies .post-taxonomies-categories, #post-taxonomies #colophon.site-footer .post-taxonomies-categories,
  #colophon.site-footer #post-taxonomies .post-taxonomies-tags, #post-taxonomies #colophon.site-footer .post-taxonomies-tags, #colophon.site-footer .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #colophon.site-footer .tve_pg_row, #colophon.site-footer .cc-grower .cc-window.cc-banner, .cc-grower #colophon.site-footer .cc-window.cc-banner, #colophon.site-footer .product-list__featured > .tcb-flex-row, #colophon.site-footer .testimonials > .in, #colophon.site-footer .wuot__container, #colophon.site-footer .search #content #ais-wrapper, .search #content #colophon.site-footer #ais-wrapper {
    display: block; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #colophon.site-footer .copyright {
    text-align: center;
    width: 100%;
    margin-top: 1em; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #colophon.site-footer #menu-footer-menu {
    width: 100%;
    display: flex;
    justify-content: center; } }

.nav-collapse {
  transition: all 0.2s ease-in; }
  .nav-collapse li:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

@media (min-width: 768px) {
  .main-navigation ul {
    margin: 0;
    padding: 0;
    text-align: center; } }

@media (min-width: 768px) {
  .main-navigation ul.sub-menu, .main-navigation ul.children {
    padding: 0;
    width: 199px;
    z-index: 2; }
    .main-navigation ul.sub-menu li, .main-navigation ul.children li {
      padding: 0;
      width: 100%;
      text-align: left;
      margin: 0; }
      .main-navigation ul.sub-menu li a, .main-navigation ul.children li a {
        display: block;
        padding: 1rem; }
      .main-navigation ul.sub-menu li ul, .main-navigation ul.children li ul {
        /* Level 2 sub menu */
        left: -100%;
        top: 0; }
      .main-navigation ul.sub-menu li:last-of-type, .main-navigation ul.children li:last-of-type {
        border-bottom: none; } }

@media (min-width: 768px) {
  .main-navigation ul li ul {
    right: 0;
    top: 100%;
    visibility: hidden;
    position: absolute;
    opacity: 0; } }

.main-navigation ul li ul.menu-item-has-children > a:after,
.main-navigation ul li ul.page_item_has_children > a:after {
  font-family: 'FontAwesome';
  content: '\f0d7';
  padding-left: 5px;
  opacity: .6; }

@media (min-width: 768px) {
  .main-navigation ul li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; } }

table {
  width: 100%;
  text-align: left;
  margin: 0 0 1rem 0; }
  table th {
    font-weight: normal; }

.reviewer_link, .review_description, .reviewer_image {
  display: block;
  text-align: left; }
  .reviewer_link:link, .review_description:link, .reviewer_image:link, .reviewer_link:visited, .review_description:visited, .reviewer_image:visited, .reviewer_link:hover, .review_description:hover, .reviewer_image:hover, .reviewer_link:active, .review_description:active, .reviewer_image:active {
    border-top: none;
    border-bottom: none;
    border-right: none;
    border-left: none; }

.reviewer_image {
  width: 90px; }
  .reviewer_image img {
    -webkit-border-radius: 90px;
    border-radius: 90px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }

html {
  font-size: 11.9px; }
  @media (min-width: 320px) {
    html {
      font-size: 12.6px; } }
  @media (min-width: 480px) {
    html {
      font-size: 13.3px; } }
  @media (min-width: 768px) {
    html {
      font-size: 14px; } }

body {
  font-family: "DIN2014-Regular", sans-serif; }

.h1, h1, .h1-reset, blockquote.fancy:before, .blockquote-fancy:before, .h2, h2, #comments #reply-title, .h2-reset, .h3, h3, .h3-reset, .media-object .media-object-content header .entry-title, .before-after-labels > *, .page-template-features-page #get-fresh-air-effortlessly footer, .h4, h4, .h4-reset, blockquote.fancy, .h5, h5, .h5-reset, #sensors .accordion .tab label, #sensors .accordion .tab table th, table #sensors .accordion .tab th, #sensors .accordion .tab .wpcf7 .disclaimer, .wpcf7 #sensors .accordion .tab .disclaimer, .h6, h6, .h6-reset, .widget-title {
  font-family: "DIN2014-DemiBold", "DIN2014-Regular", sans-serif, sans-serif;
  line-height: 1.25em;
  font-weight: bold;
  margin: 0 0 .49em;
  margin: 0 0 1em 0; }

small, .font_small, .site-footer {
  font-size: 1.1rem; }

body {
  font-size: 1.276rem; }

.h6, h6, .h6-reset, .widget-title {
  font-size: 1.48016rem; }
  .cover .h6, .cover h6, .cover .h6-reset, .cover .widget-title {
    font-size: 2.3103758234rem; }

.h5, h5, .h5-reset, #sensors .accordion .tab label, #sensors .accordion .tab table th, table #sensors .accordion .tab th, #sensors .accordion .tab .wpcf7 .disclaimer, .wpcf7 #sensors .accordion .tab .disclaimer {
  font-size: 1.7169856rem; }
  .cover .h5, .cover h5, .cover .h5-reset, .cover #sensors .accordion .tab label, #sensors .accordion .tab .cover label, .cover #sensors .accordion .tab table th, #sensors .accordion .tab table .cover th, .cover table #sensors .accordion .tab th, table #sensors .accordion .tab .cover th, .cover #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 .cover .disclaimer, .cover .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab .cover .disclaimer {
    font-size: 2.6800359551rem; }

.h4, h4, .h4-reset, blockquote.fancy {
  font-size: 1.991703296rem; }
  .cover .h4, .cover h4, .cover .h4-reset, .cover blockquote.fancy {
    font-size: 3.1088417079rem; }

.h3, h3, .h3-reset, .media-object .media-object-content header .entry-title, .before-after-labels > *, .page-template-features-page #get-fresh-air-effortlessly footer {
  font-size: 2.3103758234rem; }
  .cover .h3, .cover h3, .cover .h3-reset, .cover .media-object .media-object-content header .entry-title, .media-object .media-object-content header .cover .entry-title, .cover .before-after-labels > *, .cover .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly .cover footer {
    font-size: 3.6062563812rem; }

.h2, h2, #comments #reply-title, .h2-reset {
  font-size: 2.6800359551rem; }
  .cover .h2, .cover h2, .cover #comments #reply-title, #comments .cover #reply-title, .cover .h2-reset {
    font-size: 4.1832574022rem; }

.h1, h1, .h1-reset, blockquote.fancy:before, .blockquote-fancy:before {
  font-size: 2.5rem; }
  @media (min-width: 768px) {
    .h1, h1, .h1-reset, blockquote.fancy:before, .blockquote-fancy:before {
      font-size: 3.5rem; } }

.h6-reset {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0; }

.h5-reset {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0; }

.h4-reset {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0; }

.h3-reset {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0; }

.h2-reset {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0; }

.h1-reset {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0; }

/* ==========================================================================
   Border-box all the things!
   ========================================================================== */
*,
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* ==========================================================================
   General
   ========================================================================== */
html {
  line-height: 1.5;
  overflow-y: scroll !important; }

body {
  color: #3b4f4b;
  background-color: white;
  text-align: left; }

::-moz-selection {
  color: white;
  background: #ff8000; }

::selection {
  color: white;
  background: #ff8000; }

header, p, ul, ol {
  margin: 0 0 1.15em 0; }

i {
  color: inherit; }

/* ==========================================================================
   Links
   ========================================================================== */
a {
  background-image: linear-gradient(to bottom, transparent 0, rgba(77, 76, 76, 0.5) 1px, transparent 0);
  background-size: 1px 5px;
  background-repeat: repeat-x;
  background-position: 0 1em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  a:link {
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  a:visited {
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  a:hover {
    color: black;
    background-image: linear-gradient(to bottom, transparent 0, black 1px, transparent 0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  a[rel~="external"]:after {
    font-family: "FontAwesome";
    content: "";
    padding-left: 5px; }
  a.medium:after {
    font-family: "FontAwesome";
    padding-left: 0.5rem;
    content: '\f23a'; }
  a.linkedin:after {
    font-family: "FontAwesome";
    padding-left: 0.5rem;
    content: '\f0e1'; }
  a.etsy:after {
    font-family: "FontAwesome";
    padding-left: 0.5rem;
    content: '\f2d7'; }

/* ==========================================================================
   
   Images, figures, captions, svgs...
   
   ========================================================================== */
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  margin: 0 auto;
  padding: 0; }
  @media (min-width: 480px) {
    img {
      width: auto;
      margin: 0; } }
  img.alignleft, img.alignright, img.aligncenter {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto; }
  @media (min-width: 480px) {
    img.alignleft {
      display: inline;
      float: left;
      margin-right: 1.5em; } }
  @media (min-width: 480px) {
    img.alignright {
      display: inline;
      float: right;
      margin-left: 1.5em; } }
  @media (min-width: 480px) {
    img.aligncenter {
      clear: both;
      display: block;
      margin-left: auto;
      margin-right: auto; } }

.svg {
  display: block;
  width: 100%;
  height: auto; }


figure,
.wp-caption {
  margin: 0; }
  figure img, .wp-caption img {
    max-width: 100%; }
  figure a, .wp-caption a {
    display: block;
    text-decoration: none;
    border-bottom: none;
    background-image: none; }
    figure a:hover, .wp-caption a:hover {
      text-decoration: none;
      border-bottom: none;
      background-image: none; }


figcaption,
.wp-caption .wp-caption-text {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem 5%;
  font-style: italic; }
  @media (min-width: 768px) {
    
    figcaption,
    .wp-caption .wp-caption-text {
      /* Remove padding on desktop */
      padding: 0.5rem 0 0 0; } }
  figcaption a, .wp-caption .wp-caption-text a {
    display: inline; }

blockquote {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0; }
  blockquote.fancy {
    font-weight: 500;
    margin: 0 0 2em 0;
    position: relative; }
    blockquote.fancy:before {
      content: '';
      line-height: 1;
      position: absolute;
      text-align: center;
      left: -9px;
      /* Hand made :) */
      width: 100%; }
      @media (min-width: 768px) {
        blockquote.fancy:before {
          position: relative;
          padding: 0;
          font-family: sans-serif;
          font-style: normal;
          font-size: 8em;
          height: 40px;
          overflow: hidden; } }

.blockquote-fancy {
  position: relative; }
  .blockquote-fancy:before {
    content: open-quote;
    line-height: 1;
    width: 100%; }
    @media (min-width: 768px) {
      .blockquote-fancy:before {
        position: absolute;
        top: 0;
        left: -1em;
        /* Hand made :) */ } }

address {
  margin: 0 0 1.5em; }

.amp {
  font-family: Baskerville, Palatino, "Book Antiqua", sans-serif;
  font-style: italic; }

/* ==========================================================================
   Lists
   ========================================================================== */
ul,
ol {
  padding: 0 0 1rem 1rem; }
  ul li,
  ol li {
    margin: 0;
    padding: 0;
    text-align: left; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-left: 1.5rem;
    padding: 0; }
  ul.no-bullets,
  ol.no-bullets {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: inherit; }
  ul.inline li,
  ol.inline li {
    display: inline; }

.list_flush ol, .list_flush ul {
  display: table;
  margin-left: 0;
  padding-left: 0;
  list-style: none; }
  .list_flush ol li, .list_flush ul li {
    display: table-row; }
    .list_flush ol li:before, .list_flush ul li:before {
      content: "";
      display: table-cell;
      padding-right: 0.3em;
      text-align: right; }

@media (min-width: 768px) {
  .list_flush_menu ol, .list_flush_menu ul {
    display: table;
    margin-left: 0;
    padding-left: 0;
    list-style: none; }
    .list_flush_menu ol li a > span, .list_flush_menu ul li a > span {
      display: table;
      width: 100%; }
      .list_flush_menu ol li a > span span, .list_flush_menu ul li a > span span {
        display: table-cell;
        width: 80%; }
      .list_flush_menu ol li a > span span:first-child, .list_flush_menu ul li a > span span:first-child {
        width: 20%;
        text-align: right;
        padding-right: 10px; } }

/* ==========================================================================
   Alignment
   ========================================================================== */
.alignleft,
.alignright,
.aligncenter {
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto; }

@media (min-width: 480px) {
  .alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em; } }

@media (min-width: 480px) {
  .alignright {
    display: inline;
    float: right;
    margin-left: 1.5em; } }

@media (min-width: 480px) {
  .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto; } }

/* ==========================================================================
   Accessiblity
   ========================================================================== */
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important; }

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */ }

/* ==========================================================================
   Clearings
   ========================================================================== */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/* ==========================================================================
   Infinite Scroll
   ========================================================================== */
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block; }

label, table th, .wpcf7 .disclaimer {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-style: normal; }

.card {
  padding: 1rem;
  background-color: #eee;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

/*
 * Hide elements, depending on screen size
 */
.show-on-desktop-only {
  display: none; }
  @media (min-width: 768px) {
    .show-on-desktop-only {
      display: block; } }

@media (min-width: 768px) {
  .show-on-mobile-only {
    display: none; } }

/**
 * Overlay
 */
.overlay {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2); }
  .cover-content-color-dark .overlay {
    background-color: rgba(255, 255, 255, 0.2); }
  .cover-no-background-image .overlay {
    display: none;
    /* Hide the overlay if there is no cover to overlay! */ }

/* ==========================================================================
Layout
========================================================================== */
html,
body,
#page {
  height: 100%;
  /* Important for sticky footer */ }

.section, #post-taxonomies, .stats-post-grid .tve_post_grid_wrapper, .cc-grower, .testimonials, .wuot, header.article-header {
  width: 100%;
  padding: 0;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .section, #post-taxonomies, .stats-post-grid .tve_post_grid_wrapper, .cc-grower, .testimonials, .wuot, header.article-header {
      padding-top: 5rem;
      padding-bottom: 5rem;
      padding-left: 5%;
      padding-right: 5%; } }
  .section.section-minor, body.cover-no-background-image .section.cover, body.cover-no-background-image .stats-post-grid .cover.tve_post_grid_wrapper, .stats-post-grid body.cover-no-background-image .cover.tve_post_grid_wrapper, body.cover-no-background-image .cover.cc-grower, body.cover-no-background-image .cover.testimonials, body.cover-no-background-image .cover.wuot, body.cover-no-background-image header.cover.article-header, #post-taxonomies, .stats-post-grid .section-minor.tve_post_grid_wrapper, .section-minor.cc-grower, .section-minor.testimonials, .section-minor.wuot, header.section-minor.article-header {
    padding: 0;
    margin: 0; }
    .section.section-minor:first-of-type, body.cover-no-background-image .section.cover:first-of-type, body.cover-no-background-image .stats-post-grid .cover.tve_post_grid_wrapper:first-of-type, .stats-post-grid body.cover-no-background-image .cover.tve_post_grid_wrapper:first-of-type, body.cover-no-background-image .cover.cc-grower:first-of-type, body.cover-no-background-image .cover.testimonials:first-of-type, body.cover-no-background-image .cover.wuot:first-of-type, body.cover-no-background-image header.cover.article-header:first-of-type, #post-taxonomies:first-of-type, .stats-post-grid .section-minor.tve_post_grid_wrapper:first-of-type, .section-minor.cc-grower:first-of-type, .section-minor.testimonials:first-of-type, .section-minor.wuot:first-of-type, header.section-minor.article-header:first-of-type {
      padding-top: 3rem; }
    .section.section-minor:last-of-type, body.cover-no-background-image .section.cover:last-of-type, body.cover-no-background-image .stats-post-grid .cover.tve_post_grid_wrapper:last-of-type, .stats-post-grid body.cover-no-background-image .cover.tve_post_grid_wrapper:last-of-type, body.cover-no-background-image .cover.cc-grower:last-of-type, body.cover-no-background-image .cover.testimonials:last-of-type, body.cover-no-background-image .cover.wuot:last-of-type, body.cover-no-background-image header.cover.article-header:last-of-type, #post-taxonomies:last-of-type, .stats-post-grid .section-minor.tve_post_grid_wrapper:last-of-type, .section-minor.cc-grower:last-of-type, .section-minor.testimonials:last-of-type, .section-minor.wuot:last-of-type, header.section-minor.article-header:last-of-type {
      padding-bottom: 3rem; }
    .section.section-minor + *, body.cover-no-background-image .section.cover + *, body.cover-no-background-image .cover#post-taxonomies + *, body.cover-no-background-image .stats-post-grid .cover.tve_post_grid_wrapper + *, .stats-post-grid body.cover-no-background-image .cover.tve_post_grid_wrapper + *, body.cover-no-background-image .cover.cc-grower + *, body.cover-no-background-image .cover.testimonials + *, body.cover-no-background-image .cover.wuot + *, body.cover-no-background-image header.cover.article-header + *, #post-taxonomies + *, .stats-post-grid .section-minor.tve_post_grid_wrapper + *, .stats-post-grid .tve_post_grid_wrapper#post-taxonomies + *, .section-minor.cc-grower + *, .section-minor.testimonials + *, .section-minor.wuot + *, header.section-minor.article-header + * {
      margin-top: 1em; }
  @media (min-width: 768px) {
    .section .section, #post-taxonomies .section, .stats-post-grid .tve_post_grid_wrapper .section, .cc-grower .section, .testimonials .section, .wuot .section, header.article-header .section, .section #post-taxonomies, #post-taxonomies #post-taxonomies, .stats-post-grid .tve_post_grid_wrapper #post-taxonomies, .cc-grower #post-taxonomies, .testimonials #post-taxonomies, .wuot #post-taxonomies, header.article-header #post-taxonomies, .section .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .section .tve_post_grid_wrapper, #post-taxonomies .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid #post-taxonomies .tve_post_grid_wrapper, .stats-post-grid .tve_post_grid_wrapper .tve_post_grid_wrapper, .cc-grower .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .cc-grower .tve_post_grid_wrapper, .testimonials .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .testimonials .tve_post_grid_wrapper, .wuot .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .wuot .tve_post_grid_wrapper, header.article-header .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid header.article-header .tve_post_grid_wrapper, .section .cc-grower, #post-taxonomies .cc-grower, .stats-post-grid .tve_post_grid_wrapper .cc-grower, .cc-grower .cc-grower, .testimonials .cc-grower, .wuot .cc-grower, header.article-header .cc-grower, .section .testimonials, #post-taxonomies .testimonials, .stats-post-grid .tve_post_grid_wrapper .testimonials, .cc-grower .testimonials, .testimonials .testimonials, .wuot .testimonials, header.article-header .testimonials, .section .wuot, #post-taxonomies .wuot, .stats-post-grid .tve_post_grid_wrapper .wuot, .cc-grower .wuot, .testimonials .wuot, .wuot .wuot, header.article-header .wuot, .section header.article-header, #post-taxonomies header.article-header, .stats-post-grid .tve_post_grid_wrapper header.article-header, .cc-grower header.article-header, .testimonials header.article-header, .wuot header.article-header, header.article-header header.article-header {
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0; } }

.container, .grid-wrapper, #post-taxonomies .post-taxonomies-categories,
#post-taxonomies .post-taxonomies-tags, .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .cc-grower .cc-window.cc-banner, .product-list__featured > .tcb-flex-row, .testimonials > .in, .wuot__container, .search #content #ais-wrapper {
  position: relative;
  max-width: 90rem;
  padding: 3rem 5%; }
  @media (min-width: 768px) {
    .container, .grid-wrapper, #post-taxonomies .post-taxonomies-categories,
    #post-taxonomies .post-taxonomies-tags, .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .cc-grower .cc-window.cc-banner, .product-list__featured > .tcb-flex-row, .testimonials > .in, .wuot__container, .search #content #ais-wrapper {
      padding: 0;
      margin: 0 auto 2rem auto; }
      .container:last-of-type, .grid-wrapper:last-of-type, #post-taxonomies .post-taxonomies-categories:last-of-type,
      #post-taxonomies .post-taxonomies-tags:last-of-type, .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:last-of-type, .cc-grower .cc-window.cc-banner:last-of-type, .product-list__featured > .tcb-flex-row:last-of-type, .testimonials > .in:last-of-type, .wuot__container:last-of-type, .search #content #ais-wrapper:last-of-type {
        margin-bottom: 0; }
      .with-sidebar .main .container, .with-sidebar .main .grid-wrapper, .with-sidebar .main #post-taxonomies .post-taxonomies-categories, #post-taxonomies .with-sidebar .main .post-taxonomies-categories,
      .with-sidebar .main #post-taxonomies .post-taxonomies-tags, #post-taxonomies .with-sidebar .main .post-taxonomies-tags, .with-sidebar .main .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .with-sidebar .main .tve_pg_row, .with-sidebar .main .cc-grower .cc-window.cc-banner, .cc-grower .with-sidebar .main .cc-window.cc-banner, .with-sidebar .main .product-list__featured > .tcb-flex-row, .with-sidebar .main .testimonials > .in, .with-sidebar .main .wuot__container, .with-sidebar .main .search #content #ais-wrapper, .search #content .with-sidebar .main #ais-wrapper {
        display: block; } }
  .section-minor > .container, body.cover-no-background-image .cover > .container, #post-taxonomies > .container, .section-minor > .grid-wrapper, body.cover-no-background-image .cover > .grid-wrapper, #post-taxonomies > .grid-wrapper, #post-taxonomies .section-minor > .post-taxonomies-categories, body.cover-no-background-image #post-taxonomies .cover > .post-taxonomies-categories, #post-taxonomies body.cover-no-background-image .cover > .post-taxonomies-categories, #post-taxonomies > .post-taxonomies-categories,
  #post-taxonomies .section-minor > .post-taxonomies-tags,
  body.cover-no-background-image #post-taxonomies .cover > .post-taxonomies-tags, #post-taxonomies body.cover-no-background-image .cover > .post-taxonomies-tags,
  #post-taxonomies > .post-taxonomies-tags, .stats-post-grid .tve_post_grid_wrapper .section-minor > .tve_pg_row, body.cover-no-background-image .stats-post-grid .tve_post_grid_wrapper .cover > .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.cover-no-background-image .cover > .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #post-taxonomies > .tve_pg_row, .cc-grower .section-minor > .cc-window.cc-banner, body.cover-no-background-image .cc-grower .cover > .cc-window.cc-banner, .cc-grower body.cover-no-background-image .cover > .cc-window.cc-banner, .cc-grower #post-taxonomies > .cc-window.cc-banner, .product-list__featured.section-minor > .tcb-flex-row, body.cover-no-background-image .product-list__featured.cover > .tcb-flex-row, .product-list__featured#post-taxonomies > .tcb-flex-row, .testimonials.section-minor > .in, body.cover-no-background-image .testimonials.cover > .in, .testimonials#post-taxonomies > .in, .section-minor > .wuot__container, body.cover-no-background-image .cover > .wuot__container, #post-taxonomies > .wuot__container, .search #content .section-minor > #ais-wrapper, body.cover-no-background-image .search #content .cover > #ais-wrapper, .search #content body.cover-no-background-image .cover > #ais-wrapper, .search #content #post-taxonomies > #ais-wrapper {
    padding: 0; }
  .gallery_wide > .container, .gallery_wide > .grid-wrapper, #post-taxonomies .gallery_wide > .post-taxonomies-categories,
  #post-taxonomies .gallery_wide > .post-taxonomies-tags, .stats-post-grid .tve_post_grid_wrapper .gallery_wide > .tve_pg_row, .cc-grower .gallery_wide > .cc-window.cc-banner, .product-list__featured.gallery_wide > .tcb-flex-row, .testimonials.gallery_wide > .in, .gallery_wide > .wuot__container, .search #content .gallery_wide > #ais-wrapper {
    padding: 0; }
  @media (min-width: 768px) {
    .container.container_medium, .container_medium.grid-wrapper, #post-taxonomies .container_medium.post-taxonomies-categories,
    #post-taxonomies .container_medium.post-taxonomies-tags, .stats-post-grid .tve_post_grid_wrapper .container_medium.tve_pg_row, .cc-grower .container_medium.cc-window.cc-banner, .product-list__featured > .container_medium.tcb-flex-row, .testimonials > .container_medium.in, .container_medium.wuot__container, .search #content .container_medium#ais-wrapper {
      max-width: 75rem; } }
  @media (min-width: 768px) {
    .container.container_narrow, .container_narrow.grid-wrapper, #post-taxonomies .post-taxonomies-categories,
    #post-taxonomies .post-taxonomies-tags, .stats-post-grid .tve_post_grid_wrapper .container_narrow.tve_pg_row, .cc-grower .container_narrow.cc-window.cc-banner, .product-list__featured > .container_narrow.tcb-flex-row, .testimonials > .container_narrow.in, .container_narrow.wuot__container, #cta-activation .container, #cta-activation .grid-wrapper, #cta-activation #post-taxonomies .post-taxonomies-categories, #post-taxonomies #cta-activation .post-taxonomies-categories,
    #cta-activation #post-taxonomies .post-taxonomies-tags, #post-taxonomies #cta-activation .post-taxonomies-tags, #cta-activation .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #cta-activation .tve_pg_row, #cta-activation .cc-grower .cc-window.cc-banner, .cc-grower #cta-activation .cc-window.cc-banner, #cta-activation .product-list__featured > .tcb-flex-row, #cta-activation .testimonials > .in, #cta-activation .wuot__container, #cta-activation .search #content #ais-wrapper, .search #content #cta-activation #ais-wrapper, .search #content .container_narrow#ais-wrapper, .search #content #post-taxonomies #ais-wrapper.post-taxonomies-categories, #post-taxonomies .search #content #ais-wrapper.post-taxonomies-categories,
    .search #content #post-taxonomies #ais-wrapper.post-taxonomies-tags, #post-taxonomies .search #content #ais-wrapper.post-taxonomies-tags {
      max-width: 50rem; } }

@media (min-width: 768px) {
  .product-list__featured > .tcb-flex-row {
    max-width: 110rem; } }

.with-sidebar #main article {
  display: block; }

.with-sidebar #main .container:before, .with-sidebar #main .grid-wrapper:before, .with-sidebar #main #post-taxonomies .post-taxonomies-categories:before, #post-taxonomies .with-sidebar #main .post-taxonomies-categories:before,
.with-sidebar #main #post-taxonomies .post-taxonomies-tags:before, #post-taxonomies .with-sidebar #main .post-taxonomies-tags:before, .with-sidebar #main .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:before, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #main .tve_pg_row:before, .with-sidebar #main .cc-grower .cc-window.cc-banner:before, .cc-grower .with-sidebar #main .cc-window.cc-banner:before, .with-sidebar #main .product-list__featured > .tcb-flex-row:before, .with-sidebar #main .testimonials > .in:before, .with-sidebar #main .wuot__container:before, .with-sidebar #main .search #content #ais-wrapper:before, .search #content .with-sidebar #main #ais-wrapper:before, .with-sidebar #main .container:after, .with-sidebar #main .grid-wrapper:after, .with-sidebar #main #post-taxonomies .post-taxonomies-categories:after, #post-taxonomies .with-sidebar #main .post-taxonomies-categories:after,
.with-sidebar #main #post-taxonomies .post-taxonomies-tags:after, #post-taxonomies .with-sidebar #main .post-taxonomies-tags:after, .with-sidebar #main .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:after, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #main .tve_pg_row:after, .with-sidebar #main .cc-grower .cc-window.cc-banner:after, .cc-grower .with-sidebar #main .cc-window.cc-banner:after, .with-sidebar #main .product-list__featured > .tcb-flex-row:after, .with-sidebar #main .testimonials > .in:after, .with-sidebar #main .wuot__container:after, .with-sidebar #main .search #content #ais-wrapper:after, .search #content .with-sidebar #main #ais-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.with-sidebar #main .container:after, .with-sidebar #main .grid-wrapper:after, .with-sidebar #main #post-taxonomies .post-taxonomies-categories:after, #post-taxonomies .with-sidebar #main .post-taxonomies-categories:after,
.with-sidebar #main #post-taxonomies .post-taxonomies-tags:after, #post-taxonomies .with-sidebar #main .post-taxonomies-tags:after, .with-sidebar #main .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:after, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #main .tve_pg_row:after, .with-sidebar #main .cc-grower .cc-window.cc-banner:after, .cc-grower .with-sidebar #main .cc-window.cc-banner:after, .with-sidebar #main .product-list__featured > .tcb-flex-row:after, .with-sidebar #main .testimonials > .in:after, .with-sidebar #main .wuot__container:after, .with-sidebar #main .search #content #ais-wrapper:after, .search #content .with-sidebar #main #ais-wrapper:after {
  clear: both; }

@media (min-width: 768px) {
  .with-sidebar #primary, .with-sidebar #comments .container > div, .with-sidebar #comments .grid-wrapper > div, .with-sidebar #comments #post-taxonomies .post-taxonomies-categories > div, #post-taxonomies .with-sidebar #comments .post-taxonomies-categories > div, .with-sidebar #comments #post-taxonomies .post-taxonomies-tags > div, #post-taxonomies .with-sidebar #comments .post-taxonomies-tags > div, .with-sidebar #comments .stats-post-grid .tve_post_grid_wrapper .tve_pg_row > div, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #comments .tve_pg_row > div, .with-sidebar #comments .cc-grower .cc-window.cc-banner > div, .cc-grower .with-sidebar #comments .cc-window.cc-banner > div, .with-sidebar #comments .product-list__featured > .tcb-flex-row > div, .with-sidebar #comments .testimonials > .in > div, .with-sidebar #comments .wuot__container > div, .with-sidebar #comments .search #content #ais-wrapper > div, .search #content .with-sidebar #comments #ais-wrapper > div {
    width: 78%;
    padding-right: 2rem;
    float: left; } }

@media (min-width: 768px) {
  .with-sidebar #secondary {
    width: 22%;
    float: left; } }

/* Menu */
ul.nav-menu li a {
  padding: 5px 0 10%; }

/* Search */
input[type="search"], textarea[type="search"] {
  background-repeat: repeat;
  border-width: 0;
  padding: 1em;
  margin-bottom: 1rem; }

a#search-toggle {
  float: left; }

/* Right sidebar */
.media_block:before, .media_block:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.media_block:after {
  clear: both; }

.media_block .media_block-text {
  width: 100%; }

.media_block .media_block-image {
  text-align: center; }
  .media_block .media_block-image img {
    margin-bottom: 1em;
    max-width: 66px; }

/* ==========================================================================
   Layout
   ========================================================================== */
html,
body {
  min-height: 100%; }

/* Menu */
ul.nav-menu li a {
  padding: 5px 0 10%; }

/* Search */
input[type="search"], textarea[type="search"] {
  border-width: 0;
  padding: 1em 10%; }

.home #main-navigation-menu ul,
.home #search-toggle {
  z-index: 2; }

.home #main-navigation-menu > ul {
  position: relative; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer ul {
  text-align: center;
  /* 1 */ }
  @media (min-width: 768px) {
    .site-footer ul {
      text-align: left; } }
  .site-footer ul li {
    text-align: center; }
  .site-footer ul.site-info {
    margin-bottom: 2rem; }
    @media (min-width: 768px) {
      .site-footer ul.site-info {
        margin-bottom: 0; } }
    .site-footer ul.site-info li {
      padding: 1rem; }
      @media (min-width: 768px) {
        .site-footer ul.site-info li {
          padding: 0; } }

#back-to-top {
  margin-bottom: 1rem;
  font-size: 1.48016rem; }
  #back-to-top i::before {
    content: '\f176'; }
  #back-to-top a {
    border-bottom: none; }
  @media (min-width: 768px) {
    #back-to-top {
      position: absolute;
      text-align: right;
      right: 0;
      top: 0; } }

#signup h2, #signup #comments #reply-title, #comments #signup #reply-title {
  margin-top: .5em; }
  #signup h2 i.fa-envelope, #signup #comments #reply-title i.fa-envelope, #comments #signup #reply-title i.fa-envelope {
    display: block; }
    @media (min-width: 768px) {
      #signup h2 i.fa-envelope, #signup #comments #reply-title i.fa-envelope, #comments #signup #reply-title i.fa-envelope {
        display: inline-block; } }

#footer-navigation {
  color: white;
  background-color: #ff8c1a; }
  #footer-navigation .h1, #footer-navigation h1, #footer-navigation .h1-reset, #footer-navigation blockquote.fancy:before, #footer-navigation .blockquote-fancy:before, #footer-navigation .h2, #footer-navigation h2, #footer-navigation #comments #reply-title, #comments #footer-navigation #reply-title, #footer-navigation .h2-reset, #footer-navigation .h3, #footer-navigation h3, #footer-navigation .h3-reset, #footer-navigation .media-object .media-object-content header .entry-title, .media-object .media-object-content header #footer-navigation .entry-title, #footer-navigation .before-after-labels > *, #footer-navigation .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #footer-navigation footer, #footer-navigation .h4, #footer-navigation h4, #footer-navigation .h4-reset, #footer-navigation blockquote.fancy, #footer-navigation .h5, #footer-navigation h5, #footer-navigation .h5-reset, #footer-navigation #sensors .accordion .tab label, #sensors .accordion .tab #footer-navigation label, #footer-navigation #sensors .accordion .tab table th, #sensors .accordion .tab table #footer-navigation th, #footer-navigation table #sensors .accordion .tab th, table #sensors .accordion .tab #footer-navigation th, #footer-navigation #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #footer-navigation .disclaimer, #footer-navigation .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #footer-navigation .disclaimer, #footer-navigation .h6, #footer-navigation h6, #footer-navigation .h6-reset, #footer-navigation .widget-title {
    color: white; }
  #footer-navigation a:link, #footer-navigation a:visited {
    color: white; }
  #footer-navigation a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #footer-navigation a:active {
    color: #fff; }
  #footer-navigation .menu {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin: 0;
    padding: 0; }
    #footer-navigation .menu li:hover {
      background-color: #cc6600; }

#footer-logo {
  padding: 1em 10%;
  margin-bottom: 1em; }
  @media (min-width: 768px) {
    #footer-logo {
      padding: 0;
      margin-bottom: 0; } }
  #footer-logo img {
    width: 100%;
    max-width: 230px;
    opacity: .2; }

.gallery ul li {
  display: inline-block; }
  @media (min-width: 768px) {
    .gallery ul li:nth-of-type(3n+1) {
      width: 30.4647160069%;
      clear: right;
      float: left;
      margin-left: 0;
      margin-right: 4.3029259897%; }
    .gallery ul li:nth-of-type(3n+2) {
      width: 30.4647160069%;
      clear: right;
      float: left;
      margin-right: 4.3029259897%; }
    .gallery ul li:nth-of-type(3n+3) {
      width: 30.4647160069%;
      clear: right;
      float: right;
      margin-right: 0; } }
  .gallery ul li a {
    border-bottom: none;
    display: block;
    text-align: center; }
    .gallery ul li a img {
      margin: 0 auto;
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .gallery ul li a:hover img {
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%); }

@media (min-width: 768px) {
  ul:before, ul:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  ul:after {
    clear: both; }
  ul.post-count-1 li {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0; }
  ul.post-count-2 li:nth-of-type(1) {
    width: 47.8485370052%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 4.3029259897%; }
  ul.post-count-2 li:nth-of-type(2) {
    width: 47.8485370052%;
    clear: right;
    float: right;
    margin-right: 0; }
  ul.post-count-3 li:nth-of-type(3n+1) {
    width: 30.4647160069%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 4.3029259897%; }
  ul.post-count-3 li:nth-of-type(3n+2) {
    width: 30.4647160069%;
    clear: right;
    float: left;
    margin-right: 4.3029259897%; }
  ul.post-count-3 li:nth-of-type(3n+3) {
    width: 30.4647160069%;
    clear: right;
    float: right;
    margin-right: 0; } }

#masthead .container, #masthead .grid-wrapper, #masthead #post-taxonomies .post-taxonomies-categories, #post-taxonomies #masthead .post-taxonomies-categories,
#masthead #post-taxonomies .post-taxonomies-tags, #post-taxonomies #masthead .post-taxonomies-tags, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row, #masthead .cc-grower .cc-window.cc-banner, .cc-grower #masthead .cc-window.cc-banner, #masthead .product-list__featured > .tcb-flex-row, #masthead .testimonials > .in, #masthead .wuot__container, #masthead .search #content #ais-wrapper, .search #content #masthead #ais-wrapper {
  max-width: 90rem; }
  #masthead .container .site-branding .site-logo, #masthead .grid-wrapper .site-branding .site-logo, #masthead #post-taxonomies .post-taxonomies-categories .site-branding .site-logo, #post-taxonomies #masthead .post-taxonomies-categories .site-branding .site-logo, #masthead #post-taxonomies .post-taxonomies-tags .site-branding .site-logo, #post-taxonomies #masthead .post-taxonomies-tags .site-branding .site-logo, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .site-branding .site-logo, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .site-branding .site-logo, #masthead .cc-grower .cc-window.cc-banner .site-branding .site-logo, .cc-grower #masthead .cc-window.cc-banner .site-branding .site-logo, #masthead .product-list__featured > .tcb-flex-row .site-branding .site-logo, #masthead .testimonials > .in .site-branding .site-logo, #masthead .wuot__container .site-branding .site-logo, #masthead .search #content #ais-wrapper .site-branding .site-logo, .search #content #masthead #ais-wrapper .site-branding .site-logo {
    text-align: center; }
    #masthead .container .site-branding .site-logo a, #masthead .grid-wrapper .site-branding .site-logo a, #masthead #post-taxonomies .post-taxonomies-categories .site-branding .site-logo a, #post-taxonomies #masthead .post-taxonomies-categories .site-branding .site-logo a, #masthead #post-taxonomies .post-taxonomies-tags .site-branding .site-logo a, #post-taxonomies #masthead .post-taxonomies-tags .site-branding .site-logo a, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .site-branding .site-logo a, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .site-branding .site-logo a, #masthead .cc-grower .cc-window.cc-banner .site-branding .site-logo a, .cc-grower #masthead .cc-window.cc-banner .site-branding .site-logo a, #masthead .product-list__featured > .tcb-flex-row .site-branding .site-logo a, #masthead .testimonials > .in .site-branding .site-logo a, #masthead .wuot__container .site-branding .site-logo a, #masthead .search #content #ais-wrapper .site-branding .site-logo a, .search #content #masthead #ais-wrapper .site-branding .site-logo a {
      background: none !important; }
  #masthead .container .hidden-search, #masthead .grid-wrapper .hidden-search, #masthead #post-taxonomies .post-taxonomies-categories .hidden-search, #post-taxonomies #masthead .post-taxonomies-categories .hidden-search, #masthead #post-taxonomies .post-taxonomies-tags .hidden-search, #post-taxonomies #masthead .post-taxonomies-tags .hidden-search, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .hidden-search, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .hidden-search, #masthead .cc-grower .cc-window.cc-banner .hidden-search, .cc-grower #masthead .cc-window.cc-banner .hidden-search, #masthead .product-list__featured > .tcb-flex-row .hidden-search, #masthead .testimonials > .in .hidden-search, #masthead .wuot__container .hidden-search, #masthead .search #content #ais-wrapper .hidden-search, .search #content #masthead #ais-wrapper .hidden-search, #masthead .container #search-toggle, #masthead .grid-wrapper #search-toggle, #masthead #post-taxonomies .post-taxonomies-categories #search-toggle, #post-taxonomies #masthead .post-taxonomies-categories #search-toggle, #masthead #post-taxonomies .post-taxonomies-tags #search-toggle, #post-taxonomies #masthead .post-taxonomies-tags #search-toggle, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row #search-toggle, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row #search-toggle, #masthead .cc-grower .cc-window.cc-banner #search-toggle, .cc-grower #masthead .cc-window.cc-banner #search-toggle, #masthead .product-list__featured > .tcb-flex-row #search-toggle, #masthead .testimonials > .in #search-toggle, #masthead .wuot__container #search-toggle, #masthead .search #content #ais-wrapper #search-toggle, .search #content #masthead #ais-wrapper #search-toggle {
    display: none; }

#masthead .container, #masthead .grid-wrapper, #masthead #post-taxonomies .post-taxonomies-categories, #post-taxonomies #masthead .post-taxonomies-categories,
#masthead #post-taxonomies .post-taxonomies-tags, #post-taxonomies #masthead .post-taxonomies-tags, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row, #masthead .cc-grower .cc-window.cc-banner, .cc-grower #masthead .cc-window.cc-banner, #masthead .product-list__featured > .tcb-flex-row, #masthead .testimonials > .in, #masthead .wuot__container, #masthead .search #content #ais-wrapper, .search #content #masthead #ais-wrapper {
  display: table; }
  #masthead .container .site-branding, #masthead .grid-wrapper .site-branding, #masthead #post-taxonomies .post-taxonomies-categories .site-branding, #post-taxonomies #masthead .post-taxonomies-categories .site-branding, #masthead #post-taxonomies .post-taxonomies-tags .site-branding, #post-taxonomies #masthead .post-taxonomies-tags .site-branding, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .site-branding, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .site-branding, #masthead .cc-grower .cc-window.cc-banner .site-branding, .cc-grower #masthead .cc-window.cc-banner .site-branding, #masthead .product-list__featured > .tcb-flex-row .site-branding, #masthead .testimonials > .in .site-branding, #masthead .wuot__container .site-branding, #masthead .search #content #ais-wrapper .site-branding, .search #content #masthead #ais-wrapper .site-branding,
  #masthead .container #main-nav-wrapper,
  #masthead .grid-wrapper #main-nav-wrapper,
  #masthead #post-taxonomies .post-taxonomies-categories #main-nav-wrapper,
  #post-taxonomies #masthead .post-taxonomies-categories #main-nav-wrapper,
  #masthead #post-taxonomies .post-taxonomies-tags #main-nav-wrapper,
  #post-taxonomies #masthead .post-taxonomies-tags #main-nav-wrapper,
  #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row #main-nav-wrapper,
  .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row #main-nav-wrapper,
  #masthead .cc-grower .cc-window.cc-banner #main-nav-wrapper,
  .cc-grower #masthead .cc-window.cc-banner #main-nav-wrapper,
  #masthead .product-list__featured > .tcb-flex-row #main-nav-wrapper,
  #masthead .testimonials > .in #main-nav-wrapper,
  #masthead .wuot__container #main-nav-wrapper,
  #masthead .search #content #ais-wrapper #main-nav-wrapper,
  .search #content #masthead #ais-wrapper #main-nav-wrapper {
    display: table-cell;
    vertical-align: middle;
    width: auto; }
  #masthead .container .site-branding, #masthead .grid-wrapper .site-branding, #masthead #post-taxonomies .post-taxonomies-categories .site-branding, #post-taxonomies #masthead .post-taxonomies-categories .site-branding, #masthead #post-taxonomies .post-taxonomies-tags .site-branding, #post-taxonomies #masthead .post-taxonomies-tags .site-branding, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .site-branding, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .site-branding, #masthead .cc-grower .cc-window.cc-banner .site-branding, .cc-grower #masthead .cc-window.cc-banner .site-branding, #masthead .product-list__featured > .tcb-flex-row .site-branding, #masthead .testimonials > .in .site-branding, #masthead .wuot__container .site-branding, #masthead .search #content #ais-wrapper .site-branding, .search #content #masthead #ais-wrapper .site-branding {
    width: 100%;
    white-space: nowrap; }
    @media (min-width: 768px) {
      #masthead .container .site-branding, #masthead .grid-wrapper .site-branding, #masthead #post-taxonomies .post-taxonomies-categories .site-branding, #post-taxonomies #masthead .post-taxonomies-categories .site-branding, #masthead #post-taxonomies .post-taxonomies-tags .site-branding, #post-taxonomies #masthead .post-taxonomies-tags .site-branding, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .site-branding, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .site-branding, #masthead .cc-grower .cc-window.cc-banner .site-branding, .cc-grower #masthead .cc-window.cc-banner .site-branding, #masthead .product-list__featured > .tcb-flex-row .site-branding, #masthead .testimonials > .in .site-branding, #masthead .wuot__container .site-branding, #masthead .search #content #ais-wrapper .site-branding, .search #content #masthead #ais-wrapper .site-branding {
        width: auto; } }
    #masthead .container .site-branding .site-logo, #masthead .grid-wrapper .site-branding .site-logo, #masthead #post-taxonomies .post-taxonomies-categories .site-branding .site-logo, #post-taxonomies #masthead .post-taxonomies-categories .site-branding .site-logo, #masthead #post-taxonomies .post-taxonomies-tags .site-branding .site-logo, #post-taxonomies #masthead .post-taxonomies-tags .site-branding .site-logo, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .site-branding .site-logo, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row .site-branding .site-logo, #masthead .cc-grower .cc-window.cc-banner .site-branding .site-logo, .cc-grower #masthead .cc-window.cc-banner .site-branding .site-logo, #masthead .product-list__featured > .tcb-flex-row .site-branding .site-logo, #masthead .testimonials > .in .site-branding .site-logo, #masthead .wuot__container .site-branding .site-logo, #masthead .search #content #ais-wrapper .site-branding .site-logo, .search #content #masthead #ais-wrapper .site-branding .site-logo {
      text-align: left; }
  @media (min-width: 768px) {
    
    #masthead .container #main-nav-wrapper,
    #masthead .grid-wrapper #main-nav-wrapper,
    #masthead #post-taxonomies .post-taxonomies-categories #main-nav-wrapper,
    #post-taxonomies #masthead .post-taxonomies-categories #main-nav-wrapper,
    #masthead #post-taxonomies .post-taxonomies-tags #main-nav-wrapper,
    #post-taxonomies #masthead .post-taxonomies-tags #main-nav-wrapper,
    #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row #main-nav-wrapper,
    .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row #main-nav-wrapper,
    #masthead .cc-grower .cc-window.cc-banner #main-nav-wrapper,
    .cc-grower #masthead .cc-window.cc-banner #main-nav-wrapper,
    #masthead .product-list__featured > .tcb-flex-row #main-nav-wrapper,
    #masthead .testimonials > .in #main-nav-wrapper,
    #masthead .wuot__container #main-nav-wrapper,
    #masthead .search #content #ais-wrapper #main-nav-wrapper,
    .search #content #masthead #ais-wrapper #main-nav-wrapper {
      width: 100%; } }
  #masthead .container #main-nav-wrapper ul, #masthead .grid-wrapper #main-nav-wrapper ul, #masthead #post-taxonomies .post-taxonomies-categories #main-nav-wrapper ul, #post-taxonomies #masthead .post-taxonomies-categories #main-nav-wrapper ul, #masthead #post-taxonomies .post-taxonomies-tags #main-nav-wrapper ul, #post-taxonomies #masthead .post-taxonomies-tags #main-nav-wrapper ul, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row #main-nav-wrapper ul, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row #main-nav-wrapper ul, #masthead .cc-grower .cc-window.cc-banner #main-nav-wrapper ul, .cc-grower #masthead .cc-window.cc-banner #main-nav-wrapper ul, #masthead .product-list__featured > .tcb-flex-row #main-nav-wrapper ul, #masthead .testimonials > .in #main-nav-wrapper ul, #masthead .wuot__container #main-nav-wrapper ul, #masthead .search #content #ais-wrapper #main-nav-wrapper ul, .search #content #masthead #ais-wrapper #main-nav-wrapper ul {
    text-align: center; }
    @media (min-width: 768px) {
      #masthead .container #main-nav-wrapper ul, #masthead .grid-wrapper #main-nav-wrapper ul, #masthead #post-taxonomies .post-taxonomies-categories #main-nav-wrapper ul, #post-taxonomies #masthead .post-taxonomies-categories #main-nav-wrapper ul, #masthead #post-taxonomies .post-taxonomies-tags #main-nav-wrapper ul, #post-taxonomies #masthead .post-taxonomies-tags #main-nav-wrapper ul, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row #main-nav-wrapper ul, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row #main-nav-wrapper ul, #masthead .cc-grower .cc-window.cc-banner #main-nav-wrapper ul, .cc-grower #masthead .cc-window.cc-banner #main-nav-wrapper ul, #masthead .product-list__featured > .tcb-flex-row #main-nav-wrapper ul, #masthead .testimonials > .in #main-nav-wrapper ul, #masthead .wuot__container #main-nav-wrapper ul, #masthead .search #content #ais-wrapper #main-nav-wrapper ul, .search #content #masthead #ais-wrapper #main-nav-wrapper ul {
        text-align: right; } }

.js #masthead #search-toggle {
  display: block; }
  @media (min-width: 768px) {
    .js #masthead #search-toggle.default::before {
      font-family: 'FontAwesome';
      content: '\f002';
      display: table-cell;
      text-align: center;
      vertical-align: middle; } }

.js #masthead.js-search-active #search-toggle {
  background-repeat: repeat;
  transition: all 0.3s ease-in-out; }

.js #masthead li.menu-item-search-toggle {
  display: none; }
  @media (min-width: 768px) {
    .js #masthead li.menu-item-search-toggle {
      display: inline-block; } }
  .js #masthead li.menu-item-search-toggle a > span > span {
    display: relative; }
  .js #masthead li.menu-item-search-toggle a > span:after {
    font-family: 'FontAwesome';
    content: '\f002';
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.5);
    margin: -5px 0 0 5px; }

.image-grid ul li {
  margin-bottom: 1rem; }
  .image-grid ul li:nth-of-type(3n+1) {
    width: 31.4285714286%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.8571428571%; }
  .image-grid ul li:nth-of-type(3n+2) {
    width: 31.4285714286%;
    clear: right;
    float: left;
    margin-right: 2.8571428571%; }
  .image-grid ul li:nth-of-type(3n+3) {
    width: 31.4285714286%;
    clear: right;
    float: right;
    margin-right: 0; }
  @media (min-width: 480px) {
    .image-grid ul li:nth-of-type(4n+1) {
      width: 22.8571428571%;
      clear: right;
      float: left;
      margin-left: 0;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(4n+2) {
      width: 22.8571428571%;
      clear: right;
      float: left;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(4n+3) {
      width: 22.8571428571%;
      clear: right;
      float: left;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(4n+4) {
      width: 22.8571428571%;
      clear: right;
      float: right;
      margin-right: 0; } }
  @media (min-width: 768px) {
    .image-grid ul li:nth-of-type(6n+1) {
      width: 14.2857142857%;
      clear: right;
      float: left;
      margin-left: 0;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(6n+2) {
      width: 14.2857142857%;
      clear: right;
      float: left;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(6n+3) {
      width: 14.2857142857%;
      clear: right;
      float: left;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(6n+4) {
      width: 14.2857142857%;
      clear: right;
      float: left;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(6n+5) {
      width: 14.2857142857%;
      clear: right;
      float: left;
      margin-right: 2.8571428571%; }
    .image-grid ul li:nth-of-type(6n+6) {
      width: 14.2857142857%;
      clear: right;
      float: right;
      margin-right: 0; } }

img[class*='size-'] {
  margin-bottom: 1.953125%; }

.size-square {
  width: 100%;
  height: auto;
  max-width: 328px;
  max-height: 328px; }

.size-sq3 {
  float: left;
  width: 32.03125%;
  margin-right: 1.953125%; }

.size-rec {
  float: left;
  width: 66.015625%;
  margin-right: 1.953125%; }

.size-letterbox {
  width: 100%;
  margin-right: 0; }

img.last {
  margin-right: 0; }

.masonrycontainer:before, .masonrycontainer:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.masonrycontainer:after {
  clear: both; }

/* Grid Sizer */
.grid-sizer {
  width: 100%; }
  @media (min-width: 480px) {
    .grid-sizer {
      width: 46.77419%; } }
  @media (min-width: 768px) {
    .grid-sizer {
      width: 31.1828%; } }

/* Gutter Sizer */
.gutter-sizer {
  width: 0; }
  @media (min-width: 480px) {
    .gutter-sizer {
      width: 3.22581%; } }

.media-object {
  margin-bottom: 2rem; }
  .media-object:last-of-type {
    margin: 0; }
  .media-object .media-object-media {
    margin-bottom: 1rem; }
    .media-object .media-object-media a {
      display: block;
      text-align: center;
      border-top: none;
      border-bottom: none;
      border-right: none;
      border-left: none; }
    .media-object .media-object-media img {
      width: 100%; }
  .media-object .media-object-content {
    position: relative;
    overflow: hidden; }
    .media-objects-boxed .media-object .media-object-content {
      padding: 20px; }
    .media-object .media-object-content.flex {
      display: flex; }
    .media-object .media-object-content header {
      font-family: "DIN2014-Regular", "DIN2014-Regular", sans-serif, sans-serif; }
      .media-object .media-object-content header .entry-title {
        font-family: "DIN2014-DemiBold", "DIN2014-Regular", sans-serif, sans-serif; }
    @media (min-width: 768px) {
      .media-object .media-object-content footer {
        display: block;
        width: 100%; } }

.media-object-container:before, .media-object-container:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.media-object-container:after {
  clear: both; }

@media (min-width: 768px) {
  .media-object-container.full-width .media-object {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0; } }

@media (min-width: 768px) {
  .media-object-container.full-width .media-object .media-object-media {
    width: 47.8485370052%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 4.3029259897%; } }

@media (min-width: 768px) {
  .media-object-container.full-width .media-object .media-object-content {
    width: 47.8485370052%;
    clear: right;
    float: right;
    margin-right: 0; } }

/**
* Media object paradigms
*/
@media (min-width: 600px) {
  #featured-post .container .media-object, #featured-post .grid-wrapper .media-object, #featured-post #post-taxonomies .post-taxonomies-categories .media-object, #post-taxonomies #featured-post .post-taxonomies-categories .media-object, #featured-post #post-taxonomies .post-taxonomies-tags .media-object, #post-taxonomies #featured-post .post-taxonomies-tags .media-object, #featured-post .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object, .stats-post-grid .tve_post_grid_wrapper #featured-post .tve_pg_row .media-object, #featured-post .cc-grower .cc-window.cc-banner .media-object, .cc-grower #featured-post .cc-window.cc-banner .media-object, #featured-post .product-list__featured > .tcb-flex-row .media-object, #featured-post .testimonials > .in .media-object, #featured-post .wuot__container .media-object, #featured-post .search #content #ais-wrapper .media-object, .search #content #featured-post #ais-wrapper .media-object, #cta-leverage .media-object-container .media-object, #ai .media-object-container .media-object, #question .media-object {
    width: 100%;
    display: table; }
    #featured-post .container .media-object .media-object-media, #featured-post .grid-wrapper .media-object .media-object-media, #featured-post #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies #featured-post .post-taxonomies-categories .media-object .media-object-media, #featured-post #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies #featured-post .post-taxonomies-tags .media-object .media-object-media, #featured-post .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper #featured-post .tve_pg_row .media-object .media-object-media, #featured-post .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower #featured-post .cc-window.cc-banner .media-object .media-object-media, #featured-post .product-list__featured > .tcb-flex-row .media-object .media-object-media, #featured-post .testimonials > .in .media-object .media-object-media, #featured-post .wuot__container .media-object .media-object-media, #featured-post .search #content #ais-wrapper .media-object .media-object-media, .search #content #featured-post #ais-wrapper .media-object .media-object-media, #cta-leverage .media-object-container .media-object .media-object-media, #ai .media-object-container .media-object .media-object-media, #question .media-object .media-object-media, #featured-post .container .media-object .media-object-content, #featured-post .grid-wrapper .media-object .media-object-content, #featured-post #post-taxonomies .post-taxonomies-categories .media-object .media-object-content, #post-taxonomies #featured-post .post-taxonomies-categories .media-object .media-object-content, #featured-post #post-taxonomies .post-taxonomies-tags .media-object .media-object-content, #post-taxonomies #featured-post .post-taxonomies-tags .media-object .media-object-content, #featured-post .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-content, .stats-post-grid .tve_post_grid_wrapper #featured-post .tve_pg_row .media-object .media-object-content, #featured-post .cc-grower .cc-window.cc-banner .media-object .media-object-content, .cc-grower #featured-post .cc-window.cc-banner .media-object .media-object-content, #featured-post .product-list__featured > .tcb-flex-row .media-object .media-object-content, #featured-post .testimonials > .in .media-object .media-object-content, #featured-post .wuot__container .media-object .media-object-content, #featured-post .search #content #ais-wrapper .media-object .media-object-content, .search #content #featured-post #ais-wrapper .media-object .media-object-content, #cta-leverage .media-object-container .media-object .media-object-content, #ai .media-object-container .media-object .media-object-content, #question .media-object .media-object-content {
      display: table-cell;
      vertical-align: middle;
      width: 49%;
      float: none; }
    #featured-post .container .media-object .media-object-media, #featured-post .grid-wrapper .media-object .media-object-media, #featured-post #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies #featured-post .post-taxonomies-categories .media-object .media-object-media, #featured-post #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies #featured-post .post-taxonomies-tags .media-object .media-object-media, #featured-post .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper #featured-post .tve_pg_row .media-object .media-object-media, #featured-post .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower #featured-post .cc-window.cc-banner .media-object .media-object-media, #featured-post .product-list__featured > .tcb-flex-row .media-object .media-object-media, #featured-post .testimonials > .in .media-object .media-object-media, #featured-post .wuot__container .media-object .media-object-media, #featured-post .search #content #ais-wrapper .media-object .media-object-media, .search #content #featured-post #ais-wrapper .media-object .media-object-media, #cta-leverage .media-object-container .media-object .media-object-media, #ai .media-object-container .media-object .media-object-media, #question .media-object .media-object-media {
      display: table-cell;
      float: none;
      padding-right: 2%; } }

@media (min-width: 600px) and (max-width: 1024px) {
  .media-object-container.featured-3 .media-object, .archive .posts-section .container .media-object, .archive .posts-section .grid-wrapper .media-object, .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object, #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object, .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object, #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object, .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object, .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object, .archive .posts-section .cc-grower .cc-window.cc-banner .media-object, .cc-grower .archive .posts-section .cc-window.cc-banner .media-object, .archive .posts-section .product-list__featured > .tcb-flex-row .media-object, .archive .posts-section .testimonials > .in .media-object, .archive .posts-section .wuot__container .media-object, .archive .posts-section .search #content #ais-wrapper .media-object, .search #content .archive .posts-section #ais-wrapper .media-object, #posts-layout .container .media-object, #posts-layout .grid-wrapper .media-object, #posts-layout #post-taxonomies .post-taxonomies-categories .media-object, #post-taxonomies #posts-layout .post-taxonomies-categories .media-object, #posts-layout #post-taxonomies .post-taxonomies-tags .media-object, #post-taxonomies #posts-layout .post-taxonomies-tags .media-object, #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object, .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object, #posts-layout .cc-grower .cc-window.cc-banner .media-object, .cc-grower #posts-layout .cc-window.cc-banner .media-object, #posts-layout .product-list__featured > .tcb-flex-row .media-object, #posts-layout .testimonials > .in .media-object, #posts-layout .wuot__container .media-object, #posts-layout .search #content #ais-wrapper .media-object, .search #content #posts-layout #ais-wrapper .media-object, .home .latest-posts .container .media-object, .home .latest-posts .grid-wrapper .media-object, .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object, #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object, .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object, #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object, .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object, .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object, .home .latest-posts .cc-grower .cc-window.cc-banner .media-object, .cc-grower .home .latest-posts .cc-window.cc-banner .media-object, .home .latest-posts .product-list__featured > .tcb-flex-row .media-object, .home .latest-posts .testimonials > .in .media-object, .home .latest-posts .wuot__container .media-object, .home .latest-posts .search #content #ais-wrapper .media-object, .search #content .home .latest-posts #ais-wrapper .media-object {
    width: 100%;
    display: table; }
    .media-object-container.featured-3 .media-object .media-object-media, .archive .posts-section .container .media-object .media-object-media, .archive .posts-section .grid-wrapper .media-object .media-object-media, .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object .media-object-media, .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object .media-object-media, .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object .media-object-media, .archive .posts-section .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower .archive .posts-section .cc-window.cc-banner .media-object .media-object-media, .archive .posts-section .product-list__featured > .tcb-flex-row .media-object .media-object-media, .archive .posts-section .testimonials > .in .media-object .media-object-media, .archive .posts-section .wuot__container .media-object .media-object-media, .archive .posts-section .search #content #ais-wrapper .media-object .media-object-media, .search #content .archive .posts-section #ais-wrapper .media-object .media-object-media, #posts-layout .container .media-object .media-object-media, #posts-layout .grid-wrapper .media-object .media-object-media, #posts-layout #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies #posts-layout .post-taxonomies-categories .media-object .media-object-media, #posts-layout #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies #posts-layout .post-taxonomies-tags .media-object .media-object-media, #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object .media-object-media, #posts-layout .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower #posts-layout .cc-window.cc-banner .media-object .media-object-media, #posts-layout .product-list__featured > .tcb-flex-row .media-object .media-object-media, #posts-layout .testimonials > .in .media-object .media-object-media, #posts-layout .wuot__container .media-object .media-object-media, #posts-layout .search #content #ais-wrapper .media-object .media-object-media, .search #content #posts-layout #ais-wrapper .media-object .media-object-media, .home .latest-posts .container .media-object .media-object-media, .home .latest-posts .grid-wrapper .media-object .media-object-media, .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object .media-object-media, .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object .media-object-media, .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object .media-object-media, .home .latest-posts .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower .home .latest-posts .cc-window.cc-banner .media-object .media-object-media, .home .latest-posts .product-list__featured > .tcb-flex-row .media-object .media-object-media, .home .latest-posts .testimonials > .in .media-object .media-object-media, .home .latest-posts .wuot__container .media-object .media-object-media, .home .latest-posts .search #content #ais-wrapper .media-object .media-object-media, .search #content .home .latest-posts #ais-wrapper .media-object .media-object-media, .media-object-container.featured-3 .media-object .media-object-content, .archive .posts-section .container .media-object .media-object-content, .archive .posts-section .grid-wrapper .media-object .media-object-content, .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object .media-object-content, #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object .media-object-content, .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object .media-object-content, #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object .media-object-content, .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-content, .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object .media-object-content, .archive .posts-section .cc-grower .cc-window.cc-banner .media-object .media-object-content, .cc-grower .archive .posts-section .cc-window.cc-banner .media-object .media-object-content, .archive .posts-section .product-list__featured > .tcb-flex-row .media-object .media-object-content, .archive .posts-section .testimonials > .in .media-object .media-object-content, .archive .posts-section .wuot__container .media-object .media-object-content, .archive .posts-section .search #content #ais-wrapper .media-object .media-object-content, .search #content .archive .posts-section #ais-wrapper .media-object .media-object-content, #posts-layout .container .media-object .media-object-content, #posts-layout .grid-wrapper .media-object .media-object-content, #posts-layout #post-taxonomies .post-taxonomies-categories .media-object .media-object-content, #post-taxonomies #posts-layout .post-taxonomies-categories .media-object .media-object-content, #posts-layout #post-taxonomies .post-taxonomies-tags .media-object .media-object-content, #post-taxonomies #posts-layout .post-taxonomies-tags .media-object .media-object-content, #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-content, .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object .media-object-content, #posts-layout .cc-grower .cc-window.cc-banner .media-object .media-object-content, .cc-grower #posts-layout .cc-window.cc-banner .media-object .media-object-content, #posts-layout .product-list__featured > .tcb-flex-row .media-object .media-object-content, #posts-layout .testimonials > .in .media-object .media-object-content, #posts-layout .wuot__container .media-object .media-object-content, #posts-layout .search #content #ais-wrapper .media-object .media-object-content, .search #content #posts-layout #ais-wrapper .media-object .media-object-content, .home .latest-posts .container .media-object .media-object-content, .home .latest-posts .grid-wrapper .media-object .media-object-content, .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object .media-object-content, #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object .media-object-content, .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object .media-object-content, #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object .media-object-content, .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-content, .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object .media-object-content, .home .latest-posts .cc-grower .cc-window.cc-banner .media-object .media-object-content, .cc-grower .home .latest-posts .cc-window.cc-banner .media-object .media-object-content, .home .latest-posts .product-list__featured > .tcb-flex-row .media-object .media-object-content, .home .latest-posts .testimonials > .in .media-object .media-object-content, .home .latest-posts .wuot__container .media-object .media-object-content, .home .latest-posts .search #content #ais-wrapper .media-object .media-object-content, .search #content .home .latest-posts #ais-wrapper .media-object .media-object-content {
      display: table-cell;
      vertical-align: middle;
      width: 49%;
      float: none; }
    .media-object-container.featured-3 .media-object .media-object-media, .archive .posts-section .container .media-object .media-object-media, .archive .posts-section .grid-wrapper .media-object .media-object-media, .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object .media-object-media, .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object .media-object-media, .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object .media-object-media, .archive .posts-section .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower .archive .posts-section .cc-window.cc-banner .media-object .media-object-media, .archive .posts-section .product-list__featured > .tcb-flex-row .media-object .media-object-media, .archive .posts-section .testimonials > .in .media-object .media-object-media, .archive .posts-section .wuot__container .media-object .media-object-media, .archive .posts-section .search #content #ais-wrapper .media-object .media-object-media, .search #content .archive .posts-section #ais-wrapper .media-object .media-object-media, #posts-layout .container .media-object .media-object-media, #posts-layout .grid-wrapper .media-object .media-object-media, #posts-layout #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies #posts-layout .post-taxonomies-categories .media-object .media-object-media, #posts-layout #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies #posts-layout .post-taxonomies-tags .media-object .media-object-media, #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object .media-object-media, #posts-layout .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower #posts-layout .cc-window.cc-banner .media-object .media-object-media, #posts-layout .product-list__featured > .tcb-flex-row .media-object .media-object-media, #posts-layout .testimonials > .in .media-object .media-object-media, #posts-layout .wuot__container .media-object .media-object-media, #posts-layout .search #content #ais-wrapper .media-object .media-object-media, .search #content #posts-layout #ais-wrapper .media-object .media-object-media, .home .latest-posts .container .media-object .media-object-media, .home .latest-posts .grid-wrapper .media-object .media-object-media, .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object .media-object-media, #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object .media-object-media, .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object .media-object-media, #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object .media-object-media, .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object .media-object-media, .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object .media-object-media, .home .latest-posts .cc-grower .cc-window.cc-banner .media-object .media-object-media, .cc-grower .home .latest-posts .cc-window.cc-banner .media-object .media-object-media, .home .latest-posts .product-list__featured > .tcb-flex-row .media-object .media-object-media, .home .latest-posts .testimonials > .in .media-object .media-object-media, .home .latest-posts .wuot__container .media-object .media-object-media, .home .latest-posts .search #content #ais-wrapper .media-object .media-object-media, .search #content .home .latest-posts #ais-wrapper .media-object .media-object-media {
      display: table-cell;
      float: none;
      padding-right: 2%; } }

@media (min-width: 1024px) {
  .media-object-container.featured-3 .media-object:nth-of-type(3n+1), .archive .posts-section .container .media-object:nth-of-type(3n+1), .archive .posts-section .grid-wrapper .media-object:nth-of-type(3n+1), .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+1), #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object:nth-of-type(3n+1), .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+1), #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object:nth-of-type(3n+1), .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+1), .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object:nth-of-type(3n+1), .archive .posts-section .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+1), .cc-grower .archive .posts-section .cc-window.cc-banner .media-object:nth-of-type(3n+1), .archive .posts-section .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+1), .archive .posts-section .testimonials > .in .media-object:nth-of-type(3n+1), .archive .posts-section .wuot__container .media-object:nth-of-type(3n+1), .archive .posts-section .search #content #ais-wrapper .media-object:nth-of-type(3n+1), .search #content .archive .posts-section #ais-wrapper .media-object:nth-of-type(3n+1), #posts-layout .container .media-object:nth-of-type(3n+1), #posts-layout .grid-wrapper .media-object:nth-of-type(3n+1), #posts-layout #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+1), #post-taxonomies #posts-layout .post-taxonomies-categories .media-object:nth-of-type(3n+1), #posts-layout #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+1), #post-taxonomies #posts-layout .post-taxonomies-tags .media-object:nth-of-type(3n+1), #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+1), .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object:nth-of-type(3n+1), #posts-layout .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+1), .cc-grower #posts-layout .cc-window.cc-banner .media-object:nth-of-type(3n+1), #posts-layout .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+1), #posts-layout .testimonials > .in .media-object:nth-of-type(3n+1), #posts-layout .wuot__container .media-object:nth-of-type(3n+1), #posts-layout .search #content #ais-wrapper .media-object:nth-of-type(3n+1), .search #content #posts-layout #ais-wrapper .media-object:nth-of-type(3n+1), .home .latest-posts .container .media-object:nth-of-type(3n+1), .home .latest-posts .grid-wrapper .media-object:nth-of-type(3n+1), .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+1), #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object:nth-of-type(3n+1), .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+1), #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object:nth-of-type(3n+1), .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+1), .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object:nth-of-type(3n+1), .home .latest-posts .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+1), .cc-grower .home .latest-posts .cc-window.cc-banner .media-object:nth-of-type(3n+1), .home .latest-posts .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+1), .home .latest-posts .testimonials > .in .media-object:nth-of-type(3n+1), .home .latest-posts .wuot__container .media-object:nth-of-type(3n+1), .home .latest-posts .search #content #ais-wrapper .media-object:nth-of-type(3n+1), .search #content .home .latest-posts #ais-wrapper .media-object:nth-of-type(3n+1) {
    width: 30.4647160069%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 4.3029259897%; }
  .media-object-container.featured-3 .media-object:nth-of-type(3n+2), .archive .posts-section .container .media-object:nth-of-type(3n+2), .archive .posts-section .grid-wrapper .media-object:nth-of-type(3n+2), .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+2), #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object:nth-of-type(3n+2), .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+2), #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object:nth-of-type(3n+2), .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+2), .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object:nth-of-type(3n+2), .archive .posts-section .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+2), .cc-grower .archive .posts-section .cc-window.cc-banner .media-object:nth-of-type(3n+2), .archive .posts-section .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+2), .archive .posts-section .testimonials > .in .media-object:nth-of-type(3n+2), .archive .posts-section .wuot__container .media-object:nth-of-type(3n+2), .archive .posts-section .search #content #ais-wrapper .media-object:nth-of-type(3n+2), .search #content .archive .posts-section #ais-wrapper .media-object:nth-of-type(3n+2), #posts-layout .container .media-object:nth-of-type(3n+2), #posts-layout .grid-wrapper .media-object:nth-of-type(3n+2), #posts-layout #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+2), #post-taxonomies #posts-layout .post-taxonomies-categories .media-object:nth-of-type(3n+2), #posts-layout #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+2), #post-taxonomies #posts-layout .post-taxonomies-tags .media-object:nth-of-type(3n+2), #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+2), .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object:nth-of-type(3n+2), #posts-layout .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+2), .cc-grower #posts-layout .cc-window.cc-banner .media-object:nth-of-type(3n+2), #posts-layout .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+2), #posts-layout .testimonials > .in .media-object:nth-of-type(3n+2), #posts-layout .wuot__container .media-object:nth-of-type(3n+2), #posts-layout .search #content #ais-wrapper .media-object:nth-of-type(3n+2), .search #content #posts-layout #ais-wrapper .media-object:nth-of-type(3n+2), .home .latest-posts .container .media-object:nth-of-type(3n+2), .home .latest-posts .grid-wrapper .media-object:nth-of-type(3n+2), .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+2), #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object:nth-of-type(3n+2), .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+2), #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object:nth-of-type(3n+2), .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+2), .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object:nth-of-type(3n+2), .home .latest-posts .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+2), .cc-grower .home .latest-posts .cc-window.cc-banner .media-object:nth-of-type(3n+2), .home .latest-posts .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+2), .home .latest-posts .testimonials > .in .media-object:nth-of-type(3n+2), .home .latest-posts .wuot__container .media-object:nth-of-type(3n+2), .home .latest-posts .search #content #ais-wrapper .media-object:nth-of-type(3n+2), .search #content .home .latest-posts #ais-wrapper .media-object:nth-of-type(3n+2) {
    width: 30.4647160069%;
    clear: right;
    float: left;
    margin-right: 4.3029259897%; }
  .media-object-container.featured-3 .media-object:nth-of-type(3n+3), .archive .posts-section .container .media-object:nth-of-type(3n+3), .archive .posts-section .grid-wrapper .media-object:nth-of-type(3n+3), .archive .posts-section #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+3), #post-taxonomies .archive .posts-section .post-taxonomies-categories .media-object:nth-of-type(3n+3), .archive .posts-section #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+3), #post-taxonomies .archive .posts-section .post-taxonomies-tags .media-object:nth-of-type(3n+3), .archive .posts-section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+3), .stats-post-grid .tve_post_grid_wrapper .archive .posts-section .tve_pg_row .media-object:nth-of-type(3n+3), .archive .posts-section .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+3), .cc-grower .archive .posts-section .cc-window.cc-banner .media-object:nth-of-type(3n+3), .archive .posts-section .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+3), .archive .posts-section .testimonials > .in .media-object:nth-of-type(3n+3), .archive .posts-section .wuot__container .media-object:nth-of-type(3n+3), .archive .posts-section .search #content #ais-wrapper .media-object:nth-of-type(3n+3), .search #content .archive .posts-section #ais-wrapper .media-object:nth-of-type(3n+3), #posts-layout .container .media-object:nth-of-type(3n+3), #posts-layout .grid-wrapper .media-object:nth-of-type(3n+3), #posts-layout #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+3), #post-taxonomies #posts-layout .post-taxonomies-categories .media-object:nth-of-type(3n+3), #posts-layout #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+3), #post-taxonomies #posts-layout .post-taxonomies-tags .media-object:nth-of-type(3n+3), #posts-layout .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+3), .stats-post-grid .tve_post_grid_wrapper #posts-layout .tve_pg_row .media-object:nth-of-type(3n+3), #posts-layout .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+3), .cc-grower #posts-layout .cc-window.cc-banner .media-object:nth-of-type(3n+3), #posts-layout .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+3), #posts-layout .testimonials > .in .media-object:nth-of-type(3n+3), #posts-layout .wuot__container .media-object:nth-of-type(3n+3), #posts-layout .search #content #ais-wrapper .media-object:nth-of-type(3n+3), .search #content #posts-layout #ais-wrapper .media-object:nth-of-type(3n+3), .home .latest-posts .container .media-object:nth-of-type(3n+3), .home .latest-posts .grid-wrapper .media-object:nth-of-type(3n+3), .home .latest-posts #post-taxonomies .post-taxonomies-categories .media-object:nth-of-type(3n+3), #post-taxonomies .home .latest-posts .post-taxonomies-categories .media-object:nth-of-type(3n+3), .home .latest-posts #post-taxonomies .post-taxonomies-tags .media-object:nth-of-type(3n+3), #post-taxonomies .home .latest-posts .post-taxonomies-tags .media-object:nth-of-type(3n+3), .home .latest-posts .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:nth-of-type(3n+3), .stats-post-grid .tve_post_grid_wrapper .home .latest-posts .tve_pg_row .media-object:nth-of-type(3n+3), .home .latest-posts .cc-grower .cc-window.cc-banner .media-object:nth-of-type(3n+3), .cc-grower .home .latest-posts .cc-window.cc-banner .media-object:nth-of-type(3n+3), .home .latest-posts .product-list__featured > .tcb-flex-row .media-object:nth-of-type(3n+3), .home .latest-posts .testimonials > .in .media-object:nth-of-type(3n+3), .home .latest-posts .wuot__container .media-object:nth-of-type(3n+3), .home .latest-posts .search #content #ais-wrapper .media-object:nth-of-type(3n+3), .search #content .home .latest-posts #ais-wrapper .media-object:nth-of-type(3n+3) {
    width: 30.4647160069%;
    clear: right;
    float: right;
    margin-right: 0; } }

#preheader {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.276rem; }
  #preheader .container, #preheader .grid-wrapper, #preheader #post-taxonomies .post-taxonomies-categories, #post-taxonomies #preheader .post-taxonomies-categories,
  #preheader #post-taxonomies .post-taxonomies-tags, #post-taxonomies #preheader .post-taxonomies-tags, #preheader .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #preheader .tve_pg_row, #preheader .cc-grower .cc-window.cc-banner, .cc-grower #preheader .cc-window.cc-banner, #preheader .product-list__featured > .tcb-flex-row, #preheader .testimonials > .in, #preheader .wuot__container, #preheader .search #content #ais-wrapper, .search #content #preheader #ais-wrapper {
    padding-top: 10px;
    padding-bottom: 10px; }
    @media (min-width: 768px) {
      #preheader .container, #preheader .grid-wrapper, #preheader #post-taxonomies .post-taxonomies-categories, #post-taxonomies #preheader .post-taxonomies-categories,
      #preheader #post-taxonomies .post-taxonomies-tags, #post-taxonomies #preheader .post-taxonomies-tags, #preheader .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #preheader .tve_pg_row, #preheader .cc-grower .cc-window.cc-banner, .cc-grower #preheader .cc-window.cc-banner, #preheader .product-list__featured > .tcb-flex-row, #preheader .testimonials > .in, #preheader .wuot__container, #preheader .search #content #ais-wrapper, .search #content #preheader #ais-wrapper {
        padding-top: 5px;
        padding-bottom: 5px; } }
  #preheader a {
    padding: 0; }
  #preheader #switcher,
  #preheader #preheader-social {
    display: inline-block; }
    #preheader #switcher a,
    #preheader #preheader-social a {
      display: inline-block;
      border-bottom: none; }
    #preheader #switcher i,
    #preheader #preheader-social i {
      font-size: 1.7169856rem; }
  @media (min-width: 768px) {
    #preheader #preheader-social {
      padding-left: 5%; } }
  @media (min-width: 768px) {
    #preheader #preheader-social a {
      padding: .2rem 0 .2rem .5rem; } }
  #preheader #switcher #language-selector ul {
    float: left; }
    #preheader #switcher #language-selector ul li {
      text-align: center;
      margin-bottom: 5px; }
      @media (min-width: 768px) {
        #preheader #switcher #language-selector ul li {
          display: inline;
          margin-left: 10px;
          margin-bottom: 0; } }
  @media (min-width: 768px) {
    #preheader {
      text-align: right; } }

#preheader .social {
  font-size: 1.5rem; }

.equal-split {
  padding: 0; }
  .equal-split .container, .equal-split .grid-wrapper, .equal-split #post-taxonomies .post-taxonomies-categories, #post-taxonomies .equal-split .post-taxonomies-categories,
  .equal-split #post-taxonomies .post-taxonomies-tags, #post-taxonomies .equal-split .post-taxonomies-tags, .equal-split .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .equal-split .tve_pg_row, .equal-split .cc-grower .cc-window.cc-banner, .cc-grower .equal-split .cc-window.cc-banner, .equal-split .product-list__featured > .tcb-flex-row, .equal-split .testimonials > .in, .equal-split .wuot__container, .equal-split .search #content #ais-wrapper, .search #content .equal-split #ais-wrapper {
    padding: 0;
    max-width: 100%; }
    @media (min-width: 768px) {
      .equal-split .container, .equal-split .grid-wrapper, .equal-split #post-taxonomies .post-taxonomies-categories, #post-taxonomies .equal-split .post-taxonomies-categories,
      .equal-split #post-taxonomies .post-taxonomies-tags, #post-taxonomies .equal-split .post-taxonomies-tags, .equal-split .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .equal-split .tve_pg_row, .equal-split .cc-grower .cc-window.cc-banner, .cc-grower .equal-split .cc-window.cc-banner, .equal-split .product-list__featured > .tcb-flex-row, .equal-split .testimonials > .in, .equal-split .wuot__container, .equal-split .search #content #ais-wrapper, .search #content .equal-split #ais-wrapper {
        display: flex; } }
    .equal-split .container .equal-split-text, .equal-split .grid-wrapper .equal-split-text, .equal-split #post-taxonomies .post-taxonomies-categories .equal-split-text, #post-taxonomies .equal-split .post-taxonomies-categories .equal-split-text, .equal-split #post-taxonomies .post-taxonomies-tags .equal-split-text, #post-taxonomies .equal-split .post-taxonomies-tags .equal-split-text, .equal-split .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .equal-split-text, .stats-post-grid .tve_post_grid_wrapper .equal-split .tve_pg_row .equal-split-text, .equal-split .cc-grower .cc-window.cc-banner .equal-split-text, .cc-grower .equal-split .cc-window.cc-banner .equal-split-text, .equal-split .product-list__featured > .tcb-flex-row .equal-split-text, .equal-split .testimonials > .in .equal-split-text, .equal-split .wuot__container .equal-split-text, .equal-split .search #content #ais-wrapper .equal-split-text, .search #content .equal-split #ais-wrapper .equal-split-text {
      padding: 5em 5%; }
      @media (min-width: 768px) {
        .equal-split .container .equal-split-text, .equal-split .grid-wrapper .equal-split-text, .equal-split #post-taxonomies .post-taxonomies-categories .equal-split-text, #post-taxonomies .equal-split .post-taxonomies-categories .equal-split-text, .equal-split #post-taxonomies .post-taxonomies-tags .equal-split-text, #post-taxonomies .equal-split .post-taxonomies-tags .equal-split-text, .equal-split .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .equal-split-text, .stats-post-grid .tve_post_grid_wrapper .equal-split .tve_pg_row .equal-split-text, .equal-split .cc-grower .cc-window.cc-banner .equal-split-text, .cc-grower .equal-split .cc-window.cc-banner .equal-split-text, .equal-split .product-list__featured > .tcb-flex-row .equal-split-text, .equal-split .testimonials > .in .equal-split-text, .equal-split .wuot__container .equal-split-text, .equal-split .search #content #ais-wrapper .equal-split-text, .search #content .equal-split #ais-wrapper .equal-split-text {
          width: 50%; } }
    @media (min-width: 768px) {
      .equal-split .container .equal-split-image, .equal-split .grid-wrapper .equal-split-image, .equal-split #post-taxonomies .post-taxonomies-categories .equal-split-image, #post-taxonomies .equal-split .post-taxonomies-categories .equal-split-image, .equal-split #post-taxonomies .post-taxonomies-tags .equal-split-image, #post-taxonomies .equal-split .post-taxonomies-tags .equal-split-image, .equal-split .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .equal-split-image, .stats-post-grid .tve_post_grid_wrapper .equal-split .tve_pg_row .equal-split-image, .equal-split .cc-grower .cc-window.cc-banner .equal-split-image, .cc-grower .equal-split .cc-window.cc-banner .equal-split-image, .equal-split .product-list__featured > .tcb-flex-row .equal-split-image, .equal-split .testimonials > .in .equal-split-image, .equal-split .wuot__container .equal-split-image, .equal-split .search #content #ais-wrapper .equal-split-image, .search #content .equal-split #ais-wrapper .equal-split-image {
        flex: 1 auto;
        flex-grow: 1;
        width: 50%; } }

@media (min-width: 480px) {
  .column-container.column-container-two .primary-content-block {
    width: 48.5714285714%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.8571428571%; } }

@media (min-width: 480px) {
  .column-container.column-container-two .secondary-content-block {
    width: 48.5714285714%;
    clear: right;
    float: right;
    margin-right: 0; } }

@media (min-width: 480px) {
  .column-container.column-container-three .primary-content-block {
    width: 48.5714285714%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.8571428571%; } }

@media (min-width: 768px) {
  .column-container.column-container-three .primary-content-block {
    width: 31.4285714286%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.8571428571%; } }

@media (min-width: 480px) {
  .column-container.column-container-three .secondary-content-block {
    width: 48.5714285714%;
    clear: right;
    float: right;
    margin-right: 0; } }

@media (min-width: 768px) {
  .column-container.column-container-three .secondary-content-block {
    width: 31.4285714286%;
    clear: right;
    float: left;
    margin-right: 2.8571428571%; } }

@media (min-width: 480px) {
  .column-container.column-container-three .tertiary-content-block {
    width: 48.5714285714%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right; } }

@media (min-width: 768px) {
  .column-container.column-container-three .tertiary-content-block {
    width: 31.4285714286%;
    clear: right;
    float: right;
    margin-right: 0; } }

.accordion {
  text-align: left;
  /* :checked */
  /* Icon */ }
  .accordion .tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    overflow: hidden; }
  .accordion input, .accordion textarea {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .accordion label, .accordion table th, table .accordion th, .accordion .wpcf7 .disclaimer, .wpcf7 .accordion .disclaimer {
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    line-height: 3;
    cursor: pointer; }
  .accordion .tab-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s; }
  .accordion input:checked ~ .tab-content, .accordion textarea:checked ~ .tab-content {
    max-height: 100em;
    padding: 40px 0; }
  .accordion label::after, .accordion table th::after, table .accordion th::after, .accordion .wpcf7 .disclaimer::after, .wpcf7 .accordion .disclaimer::after {
    position: absolute;
    right: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .accordion input[type=checkbox] + label::after, .accordion textarea[type="checkbox"] + label::after, .accordion table input[type=checkbox] + th::after, table .accordion input[type=checkbox] + th::after, .accordion table textarea[type="checkbox"] + th::after, table .accordion textarea[type="checkbox"] + th::after, .accordion .wpcf7 input[type=checkbox] + .disclaimer::after, .wpcf7 .accordion input[type=checkbox] + .disclaimer::after, .accordion .wpcf7 textarea[type="checkbox"] + .disclaimer::after, .wpcf7 .accordion textarea[type="checkbox"] + .disclaimer::after {
    content: "+"; }
  .accordion input[type=radio] + label::after, .accordion textarea[type="radio"] + label::after, .accordion table input[type=radio] + th::after, table .accordion input[type=radio] + th::after, .accordion table textarea[type="radio"] + th::after, table .accordion textarea[type="radio"] + th::after, .accordion .wpcf7 input[type=radio] + .disclaimer::after, .wpcf7 .accordion input[type=radio] + .disclaimer::after, .accordion .wpcf7 textarea[type="radio"] + .disclaimer::after, .wpcf7 .accordion textarea[type="radio"] + .disclaimer::after {
    content: "\25BC"; }
  .accordion input[type=checkbox]:checked + label::after, .accordion textarea[type=checkbox]:checked + label::after, .accordion table input[type=checkbox]:checked + th::after, table .accordion input[type=checkbox]:checked + th::after, .accordion table textarea[type=checkbox]:checked + th::after, table .accordion textarea[type=checkbox]:checked + th::after, .accordion .wpcf7 input[type=checkbox]:checked + .disclaimer::after, .wpcf7 .accordion input[type=checkbox]:checked + .disclaimer::after, .accordion .wpcf7 textarea[type=checkbox]:checked + .disclaimer::after, .wpcf7 .accordion textarea[type=checkbox]:checked + .disclaimer::after {
    transform: rotate(315deg); }
  .accordion input[type=radio]:checked + label::after, .accordion textarea[type=radio]:checked + label::after, .accordion table input[type=radio]:checked + th::after, table .accordion input[type=radio]:checked + th::after, .accordion table textarea[type=radio]:checked + th::after, table .accordion textarea[type=radio]:checked + th::after, .accordion .wpcf7 input[type=radio]:checked + .disclaimer::after, .wpcf7 .accordion input[type=radio]:checked + .disclaimer::after, .accordion .wpcf7 textarea[type=radio]:checked + .disclaimer::after, .wpcf7 .accordion textarea[type=radio]:checked + .disclaimer::after {
    transform: rotateX(180deg); }

.cover {
  background-repeat: no-repeat; }
  .cover.cover-background-image {
    /* If there is a background image, set height so when 
		content is hidden on mobile, we still see the image */
    height: 200px; }
  @media (min-width: 768px) {
    .cover {
      padding-top: 150px;
      min-height: 500px;
      display: table; } }
  .cover .content-wrapper:before, .cover .content-wrapper:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .cover .content-wrapper:after {
    clear: both; }
  @media (min-width: 768px) {
    .cover .container, .cover .grid-wrapper, .cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies .cover .post-taxonomies-categories,
    .cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies .cover .post-taxonomies-tags, .cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .cover .tve_pg_row, .cover .cc-grower .cc-window.cc-banner, .cc-grower .cover .cc-window.cc-banner, .cover .product-list__featured > .tcb-flex-row, .cover .testimonials > .in, .cover .wuot__container, .cover .search #content #ais-wrapper, .search #content .cover #ais-wrapper {
      background-color: transparent; } }
  .cover .container, .cover .grid-wrapper, .cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies .cover .post-taxonomies-categories,
  .cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies .cover .post-taxonomies-tags, .cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .cover .tve_pg_row, .cover .cc-grower .cc-window.cc-banner, .cc-grower .cover .cc-window.cc-banner, .cover .product-list__featured > .tcb-flex-row, .cover .testimonials > .in, .cover .wuot__container, .cover .search #content #ais-wrapper, .search #content .cover #ais-wrapper {
    /* Don't show content inside the cover on smaller devices. It
		is repeated after the cover block */
    display: none; }
    @media (min-width: 768px) {
      .cover .container, .cover .grid-wrapper, .cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies .cover .post-taxonomies-categories,
      .cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies .cover .post-taxonomies-tags, .cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .cover .tve_pg_row, .cover .cc-grower .cc-window.cc-banner, .cc-grower .cover .cc-window.cc-banner, .cover .product-list__featured > .tcb-flex-row, .cover .testimonials > .in, .cover .wuot__container, .cover .search #content #ais-wrapper, .search #content .cover #ais-wrapper {
        /* Content is displayed as a table-cell so it
			can be vertically aligned */
        display: table-cell;
        width: 100%; } }
  .cover .media-object .media-object-content {
    display: table;
    height: auto; }
    .cover .media-object .media-object-content > div {
      display: table-cell;
      vertical-align: middle; }
    .cover .media-object .media-object-content footer {
      position: relative;
      background: none;
      padding: 1rem; }
      .cover .media-object .media-object-content footer.read-more a {
        margin-right: 0;
        margin-left: 0;
        background: yellow;
        border: none; }
  body.cover-no-background-image .cover {
    /* 1 */ }
    body.cover-no-background-image .cover h1 {
      margin: 1em 0;
      /* 1 */ }
  body.cover-content-color-light .cover {
    background-color: #4c4d4c; }
  body.cover-content-color-dark .cover {
    background-color: transparent; }

@media (min-width: 768px) {
  #cover-text-substitute {
    /* Hide duplicate cover content on desktop */
    display: none; } }

.home .cover .media-object {
  border: none;
  margin-bottom: 0; }
  .home .cover .media-object .media-object-content p {
    padding: 0; }
  .home .cover .media-object .media-object-media {
    background-size: 0;
    position: relative; }
    @media (min-width: 768px) {
      .home .cover .media-object .media-object-media {
        background-size: contain; } }
    @media (min-width: 1024px) {
      .home .cover .media-object .media-object-media {
        background-size: 0; } }
    .home .cover .media-object .media-object-media img {
      width: 100%;
      margin-bottom: 1.5em; }
      @media (min-width: 768px) {
        .home .cover .media-object .media-object-media img {
          display: none;
          margin-bottom: 0; } }
      @media (min-width: 1024px) {
        .home .cover .media-object .media-object-media img {
          display: inline; } }
  .home .cover .media-object .button, .home .cover .media-object input[type="submit"], .home .cover .media-object textarea[type="submit"], .home .cover .media-object input[type="reset"], .home .cover .media-object textarea[type="reset"] {
    margin-bottom: 10px; }
  .home .cover .media-object article {
    margin: 0; }

/* 1	Reset padding
		Not required when there is no background image */
.flexslider {
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none; }
  .flexslider:hover .flex-prev {
    left: -80px; }
  .flexslider:hover .flex-next {
    right: -80px; }

.flex-control-thumbs img {
  opacity: 1; }
  .flex-control-thumbs img.flex-active {
    opacity: .2; }

ol.flex-control-nav {
  position: relative;
  bottom: auto;
  margin-top: 2em;
  padding: 10px 0;
  width: 100%; }
  ol.flex-control-nav li {
    padding: 0 10px; }

.flex-control-paging li a {
  background: transparent;
  width: 16px;
  height: 16px;
  border: none;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease; }
  .flex-control-paging li a:hover {
    background: none;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2); }
  .flex-control-paging li a.flex-active {
    background: none;
    box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.2); }

.flex-direction-nav a {
  border-bottom: none;
  text-shadow: none; }
  .flex-direction-nav a.flex-prev {
    left: 0; }
  .flex-direction-nav a.flex-next {
    right: 0; }
    .flex-direction-nav a.flex-next:before {
      content: '\f054'; }
  .flex-direction-nav a:before {
    font-family: 'FontAwesome';
    font-size: 35px;
    display: inline-block;
    content: '\f053';
    color: rgba(0, 0, 0, 0.6); }

@media (max-width: 768px) {
  #hero[style] {
    background-image: none !important; } }

@media (min-width: 768px) {
  #hero {
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
    background-size: cover; } }

#hero .container, #hero .grid-wrapper, #hero #post-taxonomies .post-taxonomies-categories, #post-taxonomies #hero .post-taxonomies-categories,
#hero #post-taxonomies .post-taxonomies-tags, #post-taxonomies #hero .post-taxonomies-tags, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row, #hero .cc-grower .cc-window.cc-banner, .cc-grower #hero .cc-window.cc-banner, #hero .product-list__featured > .tcb-flex-row, #hero .testimonials > .in, #hero .wuot__container, #hero .search #content #ais-wrapper, .search #content #hero #ais-wrapper {
  background: transparent; }
  #hero .container .content, #hero .grid-wrapper .content, #hero #post-taxonomies .post-taxonomies-categories .content, #post-taxonomies #hero .post-taxonomies-categories .content, #hero #post-taxonomies .post-taxonomies-tags .content, #post-taxonomies #hero .post-taxonomies-tags .content, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content, #hero .cc-grower .cc-window.cc-banner .content, .cc-grower #hero .cc-window.cc-banner .content, #hero .product-list__featured > .tcb-flex-row .content, #hero .testimonials > .in .content, #hero .wuot__container .content, #hero .search #content #ais-wrapper .content, .search #content #hero #ais-wrapper .content {
    display: block; }
    @media (min-width: 768px) {
      #hero .container .content span, #hero .grid-wrapper .content span, #hero #post-taxonomies .post-taxonomies-categories .content span, #post-taxonomies #hero .post-taxonomies-categories .content span, #hero #post-taxonomies .post-taxonomies-tags .content span, #post-taxonomies #hero .post-taxonomies-tags .content span, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content span, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content span, #hero .cc-grower .cc-window.cc-banner .content span, .cc-grower #hero .cc-window.cc-banner .content span, #hero .product-list__featured > .tcb-flex-row .content span, #hero .testimonials > .in .content span, #hero .wuot__container .content span, #hero .search #content #ais-wrapper .content span, .search #content #hero #ais-wrapper .content span {
        height: 100%; } }
    #hero .container .content h1, #hero .grid-wrapper .content h1, #hero #post-taxonomies .post-taxonomies-categories .content h1, #post-taxonomies #hero .post-taxonomies-categories .content h1, #hero #post-taxonomies .post-taxonomies-tags .content h1, #post-taxonomies #hero .post-taxonomies-tags .content h1, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content h1, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content h1, #hero .cc-grower .cc-window.cc-banner .content h1, .cc-grower #hero .cc-window.cc-banner .content h1, #hero .product-list__featured > .tcb-flex-row .content h1, #hero .testimonials > .in .content h1, #hero .wuot__container .content h1, #hero .search #content #ais-wrapper .content h1, .search #content #hero #ais-wrapper .content h1 {
      line-height: 1.8; }
    @media (min-width: 768px) {
      #hero .container .content, #hero .grid-wrapper .content, #hero #post-taxonomies .post-taxonomies-categories .content, #post-taxonomies #hero .post-taxonomies-categories .content, #hero #post-taxonomies .post-taxonomies-tags .content, #post-taxonomies #hero .post-taxonomies-tags .content, #hero .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .content, .stats-post-grid .tve_post_grid_wrapper #hero .tve_pg_row .content, #hero .cc-grower .cc-window.cc-banner .content, .cc-grower #hero .cc-window.cc-banner .content, #hero .product-list__featured > .tcb-flex-row .content, #hero .testimonials > .in .content, #hero .wuot__container .content, #hero .search #content #ais-wrapper .content, .search #content #hero #ais-wrapper .content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100%; } }

#hero .hero-image {
  display: none;
  margin: 0 auto;
  padding: 0; }
  @media (min-width: 768px) {
    #hero .hero-image {
      display: block;
      width: 30%; } }

#hero .hero-text {
  padding-top: 1em; }
  @media (min-width: 768px) {
    #hero .hero-text {
      width: 50%;
      margin: 0 auto; } }

#hero a {
  border-bottom: none; }

.home .hero .hero-cta a {
  padding: 1em; }

.home .hero .hero-cta:before, .home .hero .hero-cta:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.home .hero .hero-cta:after {
  clear: both; }

@media (min-width: 480px) {
  .home .hero .hero-cta {
    margin-bottom: 1em; } }

@media (min-width: 768px) {
  .home .hero .hero-cta {
    margin-bottom: 2em; } }

@media (min-width: 768px) {
  .home .hero #lead {
    margin-bottom: 2em; } }

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: none;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1; }
  @media (min-width: 768px) {
    .js .nav-collapse {
      display: table;
      width: 100%;
      position: relative;
      overflow: visible; } }
  .js .nav-collapse.opened {
    max-height: 9999px; }
  .js .nav-collapse.closed {
    max-height: 0; }
    @media (min-width: 768px) {
      .js .nav-collapse.closed {
        max-height: none; } }

#nav-bar-search.opened, #nav-bar-search.closed {
  max-height: 9999px !important; }

@media (min-width: 768px) {
  #nav-bar-search.opened {
    position: absolute !important;
    top: 100%;
    right: -2px;
    clip: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 300px; }
  #nav-bar-search.closed {
    max-height: 0px; } }

.disable-pointer-events {
  pointer-events: none !important; }

.nav-button svg path {
  stroke: rgba(0, 0, 0, 0.5); }

/* Toggles */
a#nav-toggle {
  display: block;
  position: absolute;
  padding: 1rem;
  top: -5px;
  right: 0;
  line-height: 1;
  width: auto;
  text-align: right;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  /*   	&::before {
	  	@extend .fa-3x;
		font-family: 'FontAwesome';
		content: '\f0c9';
	} */
  /* 	&.active {
		float: right;
		&::before {
  			content: '\f00d'; 
		}
	} */ }
  @media (min-width: 768px) {
    a#nav-toggle {
      display: none; } }

#paging-navigation .nav-links:before, #paging-navigation .nav-links:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

#paging-navigation .nav-links:after {
  clear: both; }

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  overflow: hidden; }

.comment-navigation .read-more a,
.paging-navigation .read-more a,
.post-navigation .read-more a {
  border: none; }
  .comment-navigation .read-more a .post-nav-label,
  .paging-navigation .read-more a .post-nav-label,
  .post-navigation .read-more a .post-nav-label {
    display: table;
    width: 100%; }
    .comment-navigation .read-more a .post-nav-label span,
    .paging-navigation .read-more a .post-nav-label span,
    .post-navigation .read-more a .post-nav-label span {
      vertical-align: middle;
      display: table-cell;
      width: 100%; }
    .comment-navigation .read-more a .post-nav-label i,
    .paging-navigation .read-more a .post-nav-label i,
    .post-navigation .read-more a .post-nav-label i {
      display: table-cell;
      width: auto; }

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  text-align: left;
  width: 50%; }
  .comment-navigation .nav-previous .read-more a,
  .paging-navigation .nav-previous .read-more a,
  .post-navigation .nav-previous .read-more a {
    text-align: left;
    margin: 0; }
    .comment-navigation .nav-previous .read-more a .post-nav-label i:before,
    .paging-navigation .nav-previous .read-more a .post-nav-label i:before,
    .post-navigation .nav-previous .read-more a .post-nav-label i:before {
      content: "";
      padding-right: 5px; }

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }
  .comment-navigation .nav-next .read-more,
  .paging-navigation .nav-next .read-more,
  .post-navigation .nav-next .read-more {
    float: right; }
    .comment-navigation .nav-next .read-more a .post-nav-label i:before,
    .paging-navigation .nav-next .read-more a .post-nav-label i:before,
    .post-navigation .nav-next .read-more a .post-nav-label i:before {
      content: "";
      padding-left: 5px; }

.post-nav-label {
  display: block; }

#searchform_fullscreen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #DEDEDE;
  background-image: url(assets/images/waves-transparent-blue.png), url(assets/images/waves-transparent-orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 100%, 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  z-index: 99; }
  #searchform_fullscreen.open {
    opacity: 1;
    visibility: visible; }
  #searchform_fullscreen nav {
    text-align: center;
    height: 95vh;
    display: flex;
    flex-direction: column; }
    #searchform_fullscreen nav ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      #searchform_fullscreen nav ul li {
        align-items: center;
        flex: 1;
        line-height: 20vh; }
        #searchform_fullscreen nav ul li a {
          font-size: 1.5em;
          transition: all 0.5s ease;
          display: block;
          text-decoration: none;
          color: rgba(255, 255, 255, 0.5); }
          #searchform_fullscreen nav ul li a:hover {
            color: rgba(255, 255, 255, 0.9);
            transform: scale(1.1); }
            #searchform_fullscreen nav ul li a:hover:before {
              visibility: visible;
              transform: scaleX(1); }
          #searchform_fullscreen nav ul li a:before {
            content: "";
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: 0;
            left: 25%;
            background: white;
            visibility: hidden;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out 0s; }
  @media screen and (min-width: 600px) {
    #searchform_fullscreen nav ul li a {
      font-size: 3em; } }
  #searchform_fullscreen button {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 8px;
    transition: all .5s ease; }
    #searchform_fullscreen button:hover {
      border: 1px solid white; }
  #searchform_fullscreen .close {
    position: fixed;
    top: 40px;
    right: 60px;
    color: white;
    z-index: 3;
    cursor: pointer;
    font-family: sans-serif; }
    #searchform_fullscreen .close span,
    #searchform_fullscreen .close span:before,
    #searchform_fullscreen .close span:after {
      border-radius: 4px;
      height: 5px;
      width: 35px;
      background: white;
      position: absolute;
      display: block;
      content: ''; }
    #searchform_fullscreen .close span {
      background: transparent; }
    #searchform_fullscreen .close span:before {
      transform: rotate(45deg); }
    #searchform_fullscreen .close span:after {
      transform: rotate(-45deg); }
  #searchform_fullscreen .outer-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 85px;
    height: 85px;
    cursor: pointer; }
  #searchform_fullscreen input[type="search"], #searchform_fullscreen textarea[type="search"] {
    background-color: white;
    border: none; }

ul.social-media-links {
  text-align: center;
  padding: 0; }
  @media (min-width: 768px) {
    ul.social-media-links {
      text-align: left; } }
  ul.social-media-links li {
    display: inline-block;
    text-align: center; }
    ul.social-media-links li a {
      display: block;
      border-bottom: none;
      background-image: none !important;
      line-height: 1.7169856rem; }
      ul.social-media-links li a:link {
        text-decoration: none; }
      ul.social-media-links li a i.fa-circle {
        color: rgba(255, 255, 255, 0.1); }

#social-sharing {
  padding: 0; }
  #social-sharing ul {
    text-align: center; }
  #social-sharing li {
    padding: 0 1rem; }

#twitter-avatar {
  width: 30%;
  margin-bottom: 2em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  /*
	@include breakpoint( $tablet ){
		float: left;
		width: 12.5%;
		margin-right: 10%;
	}
	*/ }
  #twitter-avatar img {
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }
  #twitter-avatar a {
    border-bottom: none; }

.twitter-feed a {
  border-bottom: none; }

.twitter-feed .a-tweet {
  margin: 0;
  padding: 0; }
  .twitter-feed .a-tweet:before, .twitter-feed .a-tweet:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .twitter-feed .a-tweet:after {
    clear: both; }

.twitter-feed p {
  margin: 0 0 1em 0;
  width: 100%;
  opacity: .73; }
  @media (min-width: 1024px) {
    .twitter-feed p {
      float: left;
      text-align: left;
      width: 50%; } }
  .twitter-feed p.tweet {
    opacity: .9;
    margin-bottom: 1rem;
    width: 100%; }
  .twitter-feed p.timePosted:before {
    font-family: 'FontAwesome';
    content: '\f017\0020'; }
  @media (min-width: 1024px) {
    .twitter-feed p.interact {
      text-align: right; } }
  .twitter-feed p.interact a {
    padding: 15px;
    text-decoration: none;
    opacity: .6; }
    @media (min-width: 768px) {
      .twitter-feed p.interact a {
        padding: 15px 15px 15px 0; } }
    .twitter-feed p.interact a:hover {
      opacity: 1; }
    .twitter-feed p.interact a:before {
      font-family: 'FontAwesome'; }
    .twitter-feed p.interact a.twitter_reply_icon:before {
      content: '\f112'; }
    .twitter-feed p.interact a.twitter_retweet_icon:before {
      content: '\f079'; }
    .twitter-feed p.interact a.twitter_fav_icon:before {
      content: '\f005'; }

ul.tweet-list:before, ul.tweet-list:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

ul.tweet-list:after {
  clear: both; }

ul.tweet-list li {
  margin-bottom: 1.5rem;
  padding: 1.5rem 3%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  @media (min-width: 768px) {
    ul.tweet-list li {
      border: none;
      padding-left: 0;
      padding-right: 0; }
      ul.tweet-list li:nth-of-type(3n+1) {
        width: 32.6315789474%;
        clear: right;
        float: left;
        margin-left: 0;
        margin-right: 1.0526315789%; }
      ul.tweet-list li:nth-of-type(3n+2) {
        width: 32.6315789474%;
        clear: right;
        float: left;
        margin-right: 1.0526315789%; }
      ul.tweet-list li:nth-of-type(3n+3) {
        width: 32.6315789474%;
        clear: right;
        float: right;
        margin-right: 0; } }
  ul.tweet-list li:last-of-type {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0; }

@media (min-width: 768px) {
  .sidebar-twitter-feed ul.tweet-list li:nth-of-type(3n+1), .sidebar-twitter-feed ul.tweet-list li:nth-of-type(3n+2), .sidebar-twitter-feed ul.tweet-list li:nth-of-type(3n+3) {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0; }
  .sidebar-twitter-feed ul.tweet-list p {
    margin-bottom: 5px;
    float: none;
    width: 100%; }
    .sidebar-twitter-feed ul.tweet-list p.interact {
      text-align: left; }
  .sidebar-twitter-feed ul.tweet-list a {
    margin: 0 10px 0 0; } }

/* ==========================================================================
   Blog pages
   ========================================================================== */
.image-wrapper {
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 1em; }
  .image-wrapper img {
    width: 100%; }

.grid-wrapper .section, .grid-wrapper #post-taxonomies, .grid-wrapper .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .grid-wrapper .tve_post_grid_wrapper, .grid-wrapper .cc-grower, .grid-wrapper .testimonials, .grid-wrapper .wuot, .grid-wrapper header.article-header {
  width: 100%;
  background: #ddd;
  margin-bottom: 10px; }
  @media (min-width: 480px) {
    .grid-wrapper .section, .grid-wrapper #post-taxonomies, .grid-wrapper .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .grid-wrapper .tve_post_grid_wrapper, .grid-wrapper .cc-grower, .grid-wrapper .testimonials, .grid-wrapper .wuot, .grid-wrapper header.article-header {
      width: 46.77419%; } }
  @media (min-width: 768px) {
    .grid-wrapper .section, .grid-wrapper #post-taxonomies, .grid-wrapper .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .grid-wrapper .tve_post_grid_wrapper, .grid-wrapper .cc-grower, .grid-wrapper .testimonials, .grid-wrapper .wuot, .grid-wrapper header.article-header {
      width: 31.1828%; } }

.grid-wrapper article .entry-content {
  width: 100%;
  float: none;
  margin: 0; }

#intro {
  margin: 0; }

/* ==========================================================================
   Posts and pages
   ========================================================================== */
.byline {
  display: none; }
  .group-blog .byline {
    display: inline; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

.site-main .gallery {
  margin-bottom: 1.5em; }

.site-main .gallery a img {
  border: none;
  height: auto;
  max-width: 90%; }

.site-main .gallery dd,
.site-main .gallery figcaption,
.site-main .gallery .wp-caption .wp-caption-text,
.wp-caption .site-main .gallery .wp-caption-text {
  margin: 0; }

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%; }

/* ==========================================================================
   Books
   ========================================================================== */
@media (min-width: 480px) {
  .single-portfolio_item .media-object article {
    width: 66.3157894737%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 1.0526315789%; } }

@media (min-width: 480px) {
  .single-portfolio_item .media-object aside {
    width: 24.2105263158%;
    clear: right;
    float: right;
    margin-right: 0; } }

.single-portfolio_item .media-object aside .image-wrapper {
  float: none;
  width: 100%; }

.single-portfolio_item .media-object aside.is_stuck {
  background: #eee;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out; }
  .single-portfolio_item .media-object aside.is_stuck .image-wrapper {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out; }

.meta, .comment-meta,
.post-meta {
  font-size: 1.1rem;
  font-style: italic; }
  .meta a, .comment-meta a,
  .post-meta a {
    text-decoration: none;
    font-style: normal; }

.entry-title a {
  text-decoration: none;
  border-bottom: none; }

.post-meta {
  margin-bottom: 1em; }
  .post-meta img.avatar {
    margin-right: 5px; }
  .post-meta .author::after {
    content: ", "; }
  .post-meta span, .post-meta time {
    display: block; }

#lead {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left; }
  @media (min-width: 768px) {
    #lead {
      padding-top: 1em;
      padding-bottom: 0; } }

.entry-title {
  margin-bottom: 1em; }

.categories-links h4 {
  margin-bottom: 5px; }

.tags-links h4 {
  margin-bottom: 5px; }

.edit-link {
  display: none; }

.primary-content-block .nobullets, .primary-content-block .image-grid ul, .image-grid .primary-content-block ul, .primary-content-block ul.social-media-links, .primary-content-block ul.tweet-list,
.secondary-content-block .nobullets,
.secondary-content-block .image-grid ul,
.image-grid .secondary-content-block ul,
.secondary-content-block ul.social-media-links,
.secondary-content-block ul.tweet-list {
  margin-bottom: 1em !important; }
  .primary-content-block .nobullets a, .primary-content-block .image-grid ul a, .image-grid .primary-content-block ul a, .primary-content-block ul.social-media-links a, .primary-content-block ul.tweet-list a,
  .secondary-content-block .nobullets a,
  .secondary-content-block .image-grid ul a,
  .image-grid .secondary-content-block ul a,
  .secondary-content-block ul.social-media-links a,
  .secondary-content-block ul.tweet-list a {
    border: none; }

#post-taxonomies {
  text-align: left; }

.color-swatch {
  list-style-type: none;
  color: #fff;
  padding: 1.48016rem;
  background-color: #eee;
  display: inline-block; }
  .color-primary .color-swatch {
    background-color: #ff8000; }
    .color-primary .color-swatch.tinted {
      background-color: #ff8c1a; }
    .color-primary .color-swatch.super-tinted {
      background-color: #ffbf80; }
    .color-primary .color-swatch.ultra-tinted {
      background-color: #ffe6cc; }
    .color-primary .color-swatch.shaded {
      background-color: #cc6600; }
    .color-primary .color-swatch.super-shaded {
      background-color: #a65300; }
    .color-primary .color-swatch.ultra-shaded {
      background-color: #592d00; }
  .color-complement .color-swatch {
    background-color: #639bcf; }
    .color-complement .color-swatch.tinted {
      background-color: #73a5d4; }
    .color-complement .color-swatch.super-tinted {
      background-color: #b1cde7; }
    .color-complement .color-swatch.ultra-tinted {
      background-color: #e0ebf5; }
    .color-complement .color-swatch.shaded {
      background-color: #598bba; }
    .color-complement .color-swatch.super-shaded {
      background-color: #406587; }
    .color-complement .color-swatch.ultra-shaded {
      background-color: #233648; }
  .color-secondary-1 .color-swatch {
    background-color: #54ab95; }
    .color-secondary-1 .color-swatch.tinted {
      background-color: #65b3a0; }
    .color-secondary-1 .color-swatch.super-tinted {
      background-color: #aad5ca; }
    .color-secondary-1 .color-swatch.ultra-tinted {
      background-color: #ddeeea; }
    .color-secondary-1 .color-swatch.shaded {
      background-color: #4c9a86; }
    .color-secondary-1 .color-swatch.super-shaded {
      background-color: #376f61; }
    .color-secondary-1 .color-swatch.ultra-shaded {
      background-color: #1d3c34; }
  .color-secondary-2 .color-swatch {
    background-color: #ffae00; }
    .color-secondary-2 .color-swatch.tinted {
      background-color: #ffb61a; }
    .color-secondary-2 .color-swatch.super-tinted {
      background-color: #ffd780; }
    .color-secondary-2 .color-swatch.ultra-tinted {
      background-color: #ffefcc; }
    .color-secondary-2 .color-swatch.shaded {
      background-color: #e69d00; }
    .color-secondary-2 .color-swatch.super-shaded {
      background-color: #a67100; }
    .color-secondary-2 .color-swatch.ultra-shaded {
      background-color: #593d00; }
  .color-secondary-3 .color-swatch {
    background-color: #45dede; }
    .color-secondary-3 .color-swatch.tinted {
      background-color: #58e1e1; }
    .color-secondary-3 .color-swatch.super-tinted {
      background-color: #a2efef; }
    .color-secondary-3 .color-swatch.ultra-tinted {
      background-color: #daf8f8; }
    .color-secondary-3 .color-swatch.shaded {
      background-color: #3ec8c8; }
    .color-secondary-3 .color-swatch.super-shaded {
      background-color: #2d9090; }
    .color-secondary-3 .color-swatch.ultra-shaded {
      background-color: #184e4e; }
  .color-neutral .color-swatch {
    background-color: #858585; }
    .color-neutral .color-swatch.tinted {
      background-color: #aaaaaa; }
    .color-neutral .color-swatch.super-tinted {
      background-color: #c2c2c2; }
    .color-neutral .color-swatch.ultra-tinted {
      background-color: #e7e7e7; }
    .color-neutral .color-swatch.shaded {
      background-color: #5d5d5d; }
    .color-neutral .color-swatch.super-shaded {
      background-color: #353535; }
    .color-neutral .color-swatch.ultra-shaded {
      background-color: #1b1b1b; }
  .color-neutral-2 .color-swatch {
    background-color: #383938; }
    .color-neutral-2 .color-swatch.tinted {
      background-color: #4c4d4c; }
    .color-neutral-2 .color-swatch.super-tinted {
      background-color: #9c9c9c; }
    .color-neutral-2 .color-swatch.ultra-tinted {
      background-color: #d7d7d7; }
    .color-neutral-2 .color-swatch.shaded {
      background-color: #272827; }
    .color-neutral-2 .color-swatch.super-shaded {
      background-color: #161716; }
    .color-neutral-2 .color-swatch.ultra-shaded {
      background-color: #0b0b0b; }

.with-sidebar #comments .container:before, .with-sidebar #comments .grid-wrapper:before, .with-sidebar #comments #post-taxonomies .post-taxonomies-categories:before, #post-taxonomies .with-sidebar #comments .post-taxonomies-categories:before,
.with-sidebar #comments #post-taxonomies .post-taxonomies-tags:before, #post-taxonomies .with-sidebar #comments .post-taxonomies-tags:before, .with-sidebar #comments .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:before, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #comments .tve_pg_row:before, .with-sidebar #comments .cc-grower .cc-window.cc-banner:before, .cc-grower .with-sidebar #comments .cc-window.cc-banner:before, .with-sidebar #comments .product-list__featured > .tcb-flex-row:before, .with-sidebar #comments .testimonials > .in:before, .with-sidebar #comments .wuot__container:before, .with-sidebar #comments .search #content #ais-wrapper:before, .search #content .with-sidebar #comments #ais-wrapper:before, .with-sidebar #comments .container:after, .with-sidebar #comments .grid-wrapper:after, .with-sidebar #comments #post-taxonomies .post-taxonomies-categories:after, #post-taxonomies .with-sidebar #comments .post-taxonomies-categories:after,
.with-sidebar #comments #post-taxonomies .post-taxonomies-tags:after, #post-taxonomies .with-sidebar #comments .post-taxonomies-tags:after, .with-sidebar #comments .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:after, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #comments .tve_pg_row:after, .with-sidebar #comments .cc-grower .cc-window.cc-banner:after, .cc-grower .with-sidebar #comments .cc-window.cc-banner:after, .with-sidebar #comments .product-list__featured > .tcb-flex-row:after, .with-sidebar #comments .testimonials > .in:after, .with-sidebar #comments .wuot__container:after, .with-sidebar #comments .search #content #ais-wrapper:after, .search #content .with-sidebar #comments #ais-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.with-sidebar #comments .container:after, .with-sidebar #comments .grid-wrapper:after, .with-sidebar #comments #post-taxonomies .post-taxonomies-categories:after, #post-taxonomies .with-sidebar #comments .post-taxonomies-categories:after,
.with-sidebar #comments #post-taxonomies .post-taxonomies-tags:after, #post-taxonomies .with-sidebar #comments .post-taxonomies-tags:after, .with-sidebar #comments .stats-post-grid .tve_post_grid_wrapper .tve_pg_row:after, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #comments .tve_pg_row:after, .with-sidebar #comments .cc-grower .cc-window.cc-banner:after, .cc-grower .with-sidebar #comments .cc-window.cc-banner:after, .with-sidebar #comments .product-list__featured > .tcb-flex-row:after, .with-sidebar #comments .testimonials > .in:after, .with-sidebar #comments .wuot__container:after, .with-sidebar #comments .search #content #ais-wrapper:after, .search #content .with-sidebar #comments #ais-wrapper:after {
  clear: both; }

.with-sidebar #comments article {
  display: block; }

#comments #respond {
  padding: 1rem; }
  #comments #respond:before, #comments #respond:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  #comments #respond:after {
    clear: both; }
  #comments #respond textarea {
    background-color: white;
    background-image: none; }
  #comments #respond input[type=email], #comments #respond textarea[type="email"], #comments #respond input[type=text], #comments #respond textarea[type="text"], #comments #respond input[type=url], #comments #respond textarea[type="url"] {
    background-color: white;
    background-image: none; }

#comments #closed-comments {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.1); }
  #comments #closed-comments p {
    margin: 0; }

#comments ol {
  margin: 0;
  padding: 0;
  list-style: none; }
  #comments ol div.comment {
    padding-bottom: 1.5em; }
  #comments ol li.comment {
    position: relative;
    /* Allows avatar to be absolutely positioned */
    margin-bottom: 2em; }
    @media (min-width: 768px) {
      #comments ol li.comment {
        padding-left: 56px; } }

.comment-author {
  padding-bottom: 1.8em; }

ol.comment-list {
  list-style: none; }
  ol.comment-list ul {
    padding: 0; }
  @media (min-width: 768px) {
    ol.comment-list .avatar {
      position: absolute;
      width: 40px;
      height: 40px;
      top: 4px;
      left: 0; } }
  ol.comment-list i.avatar {
    text-align: center;
    color: white;
    padding-top: 5px;
    background-color: rgba(0, 0, 0, 0.2); }

.comment-list li.comment {
  position: relative; }

.comment-list .children {
  list-style: none;
  margin: 0; }

.comment-author .says {
  font-style: italic;
  opacity: .5; }

.comment-author cite {
  color: #000;
  font-style: normal;
  font-weight: bold;
  margin-bottom: 0; }

.comment-meta {
  display: block;
  opacity: .5; }

.comment-content a {
  word-wrap: break-word; }

/* Comment Form */
.comment-form .form-submit:before, .comment-form .form-submit:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.comment-form .form-submit:after {
  clear: both; }

img.avatar {
  width: auto; }

/* Image Captions */
.wp-caption {
  width: 100% !important;
  margin-bottom: 1.5rem; }
  .wp-caption img[class*="wp-image-"] {
    margin-bottom: 0; }

.wp-smiley {
  max-height: 1em;
  margin: 0 !important; }

.gallery dl {
  margin: 0; }

.gallery-caption {
  margin: -1.5em 0 0 0; }

#widget-area:before, #widget-area:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

#widget-area:after {
  clear: both; }

#widget-area .widget-container .widget ul {
  padding-bottom: 1rem; }

#widget-area .widget-container .widget li {
  padding: 0; }

@media (min-width: 768px) {
  #widget-area li {
    padding-bottom: 0; }
  #widget-area h4 {
    font-size: 1.6em; }
  #widget-area.two .widget-container {
    width: 49.4736842105%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 1.0526315789%; }
  #widget-area.two .widget-container + .widget-container {
    width: 49.4736842105%;
    clear: right;
    float: right;
    margin-right: 0; }
  #widget-area.three .widget-container {
    width: 32.6315789474%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 1.0526315789%; }
  #widget-area.three .widget-container + .widget-container {
    width: 32.6315789474%;
    clear: right;
    float: left;
    margin-right: 1.0526315789%; }
  #widget-area.three .widget-container + .widget-container + .widget-container {
    width: 32.6315789474%;
    clear: right;
    float: right;
    margin-right: 0; } }

#widget-area .menu {
  text-align: center; }
  @media (min-width: 768px) {
    #widget-area .menu {
      text-align: left; } }
  #widget-area .menu li {
    display: block; }
    @media (min-width: 768px) {
      #widget-area .menu li {
        text-align: left;
        margin: 0;
        padding: 0; } }
    @media (min-width: 768px) {
      #widget-area .menu li a {
        display: inline;
        padding: 0; } }

.widget {
  margin-bottom: 1em; }
  @media (min-width: 768px) {
    .widget {
      margin-bottom: 0; } }

div.wpcf7 {
  margin: 0;
  padding: 0; }
  div.wpcf7 img.ajax-loader {
    width: auto;
    border: none;
    vertical-align: middle;
    margin-left: 4px; }
  div.wpcf7 span.wpcf7-form-control-wrap {
    display: block;
    position: relative; }
  div.wpcf7 span.wpcf7-not-valid-tip, div.wpcf7 div.wpcf7-spam-blocked,
  div.wpcf7 div.wpcf7-validation-errors {
    color: red;
    padding: 3px;
    font-size: 1em;
    display: block;
    border: none; }
  div.wpcf7 .use-floating-validation-tip span.wpcf7-not-valid-tip, div.wpcf7 .use-floating-validation-tip div.wpcf7-spam-blocked,
  div.wpcf7 .use-floating-validation-tip div.wpcf7-validation-errors {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 100;
    border: 1px solid #ff0000;
    background: #fff;
    padding: .2em .8em; }
  div.wpcf7 span.wpcf7-list-item {
    margin-left: 0.5em; }
  div.wpcf7 div.ajax-error {
    display: none; }
  div.wpcf7 .placeheld {
    color: #888; }
  div.wpcf7 div.wpcf7-mail-sent-ng,
  div.wpcf7 div.wpcf7-mail-sent-ok {
    border: none; }
  div.wpcf7 div.wpcf7-validation-errors {
    color: red; }
  div.wpcf7 div.wpcf7-response-output {
    margin: 0;
    padding: 1em 10%; }

/* WP Plugin -- PageNavi */
.wp-pagenavi {
  font-family: "tablet-gothic", sans-serif;
  margin-top: 1em;
  padding: 0 0 1em;
  text-align: center;
  font-weight: bold; }
  .wp-pagenavi .pages {
    display: none; }
  .wp-pagenavi span {
    color: #bbbbbb;
    border: 1px solid #bbbbbb;
    background: #eee; }
  .wp-pagenavi a:link {
    text-decoration: none;
    background: #eee; }
  .wp-pagenavi a:link, .wp-pagenavi a:visited {
    color: #eee;
    border: 1px solid #eee; }
  .wp-pagenavi a:hover {
    color: #bbbbbb;
    border: 1px solid #bbbbbb; }

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  width: 34px;
  height: 34px;
  padding: 5px;
  margin: 0 10px 5px 0;
  bottom: 0;
  font-size: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 999px;
  behavior: url(PIE.htc); }

#woocommerce_product_meta .price {
  font-size: 1.48016rem;
  font-weight: bold;
  text-align: center; }

#woocommerce_product_meta form {
  background-color: #858585;
  padding: 1rem; }
  #woocommerce_product_meta form table .label {
    width: 20%; }
  #woocommerce_product_meta form select {
    width: 80%;
    padding: 4px;
    background: #fff;
    border: none;
    margin-bottom: 10px; }

#woocommerce_product_meta .woocommerce-variation-add-to-cart {
  display: table; }
  #woocommerce_product_meta .woocommerce-variation-add-to-cart .quantity {
    display: table-cell; }
    #woocommerce_product_meta .woocommerce-variation-add-to-cart .quantity input, #woocommerce_product_meta .woocommerce-variation-add-to-cart .quantity textarea {
      padding: .618em 1em;
      border: none;
      background: #fff; }
  #woocommerce_product_meta .woocommerce-variation-add-to-cart button {
    display: table-cell;
    margin-left: 10px; }

.testimonials .testimonial__author--name {
  text-transform: uppercase;
  letter-spacing: 1px; }

.ais-clear-all--link {
  background: #dedede;
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  color: #7e7777;
  font-size: 1.05rem; }
  .ais-clear-all--link:hover {
    background-image: none;
    background-color: #e1e1e1; }

.ais-menu--item a {
  background-image: none; }

.ais-hierarchical-menu--item a {
  background-image: none; }

.posts .ais-hits {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: 1fr; }
  @media (min-width: 480px) {
    .posts .ais-hits {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 768px) {
    .posts .ais-hits {
      grid-template-columns: repeat(3, 1fr); } }
  .posts .ais-hits--item {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; }
    .posts .ais-hits--item em {
      background-image: linear-gradient(to right, #ffbf80 0%, #ffbf80 100%);
      background-position: 0 1em;
      background-repeat: repeat-x;
      text-decoration: underline #ffbf80; }
    .posts .ais-hits--item .post__content {
      font-size: 12px;
      line-height: 1.2; }
    .posts .ais-hits--item .post__title {
      padding-top: 7px;
      padding-bottom: 7px; }
      .posts .ais-hits--item .post__title .post-type {
        display: none; }
        @media (min-width: 768px) {
          .posts .ais-hits--item .post__title .post-type {
            display: block; } }
  .posts .ais-hits__empty {
    display: block; }

.ais-pagination--item {
  position: relative;
  display: inline-block;
  margin-left: -1px;
  line-height: 1.25;
  background-color: white;
  margin-top: 50px; }
  .ais-pagination--item a, .ais-pagination--item .ais-pagination--link {
    display: block;
    background-image: none;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; }
  .ais-pagination--item a {
    color: #639bcf; }
    .ais-pagination--item a:link, .ais-pagination--item a:visited {
      text-decoration: none; }
    .ais-pagination--item a:hover {
      background-color: #dde7f4;
      border-top: 1px solid #dde7f4;
      border-bottom: 1px solid #dde7f4; }
  .ais-pagination--item__active a:link, .ais-pagination--item__active a:visited {
    color: white;
    background-color: #a3bfe2;
    border-top: 1px solid #a3bfe2;
    border-bottom: 1px solid #a3bfe2; }
  .ais-pagination--item__last a,
  .ais-pagination--item__last .ais-pagination--link {
    border-right: 1px solid #ddd;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px; }
    .ais-pagination--item__last a:hover,
    .ais-pagination--item__last .ais-pagination--link:hover {
      border-right: 1px solid #dde7f4; }
  .ais-pagination--item__first a,
  .ais-pagination--item__first .ais-pagination--link {
    border-left: 1px solid #ddd;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px; }
    .ais-pagination--item__first a:hover,
    .ais-pagination--item__first .ais-pagination--link:hover {
      border-left: 1px solid #dde7f4; }

#algolia-stats {
  flex: 1 auto; }

.ais-stats {
  margin-left: 5px; }
  .ais-stats--body {
    color: #81a29b; }

#foobot-search-box {
  background-image: url("assets/images/blue-cover-with-illustrations.png");
  background-color: #3badd8;
  background-size: cover; }
  @media (min-width: 768px) {
    #foobot-search-box {
      padding-top: 4.5rem;
      padding-bottom: 1.5rem; } }
  #foobot-search-box .container, #foobot-search-box .grid-wrapper, #foobot-search-box #post-taxonomies .post-taxonomies-categories, #post-taxonomies #foobot-search-box .post-taxonomies-categories,
  #foobot-search-box #post-taxonomies .post-taxonomies-tags, #post-taxonomies #foobot-search-box .post-taxonomies-tags, #foobot-search-box .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #foobot-search-box .tve_pg_row, #foobot-search-box .cc-grower .cc-window.cc-banner, .cc-grower #foobot-search-box .cc-window.cc-banner, #foobot-search-box .product-list__featured > .tcb-flex-row, #foobot-search-box .testimonials > .in, #foobot-search-box .wuot__container, #foobot-search-box .search #content #ais-wrapper, .search #content #foobot-search-box #ais-wrapper {
    display: flex;
    flex-flow: row wrap;
    padding-top: 10px;
    padding-bottom: 5px; }
    @media (min-width: 768px) {
      #foobot-search-box .container, #foobot-search-box .grid-wrapper, #foobot-search-box #post-taxonomies .post-taxonomies-categories, #post-taxonomies #foobot-search-box .post-taxonomies-categories,
      #foobot-search-box #post-taxonomies .post-taxonomies-tags, #post-taxonomies #foobot-search-box .post-taxonomies-tags, #foobot-search-box .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #foobot-search-box .tve_pg_row, #foobot-search-box .cc-grower .cc-window.cc-banner, .cc-grower #foobot-search-box .cc-window.cc-banner, #foobot-search-box .product-list__featured > .tcb-flex-row, #foobot-search-box .testimonials > .in, #foobot-search-box .wuot__container, #foobot-search-box .search #content #ais-wrapper, .search #content #foobot-search-box #ais-wrapper {
        padding-top: 1.5rem;
        padding-bottom: 1rem; } }
    #foobot-search-box .container > *, #foobot-search-box .grid-wrapper > *, #foobot-search-box #post-taxonomies .post-taxonomies-categories > *, #post-taxonomies #foobot-search-box .post-taxonomies-categories > *, #foobot-search-box #post-taxonomies .post-taxonomies-tags > *, #post-taxonomies #foobot-search-box .post-taxonomies-tags > *, #foobot-search-box .stats-post-grid .tve_post_grid_wrapper .tve_pg_row > *, .stats-post-grid .tve_post_grid_wrapper #foobot-search-box .tve_pg_row > *, #foobot-search-box .cc-grower .cc-window.cc-banner > *, .cc-grower #foobot-search-box .cc-window.cc-banner > *, #foobot-search-box .product-list__featured > .tcb-flex-row > *, #foobot-search-box .testimonials > .in > *, #foobot-search-box .wuot__container > *, #foobot-search-box .search #content #ais-wrapper > *, .search #content #foobot-search-box #ais-wrapper > * {
      flex: 1 100%; }

#algolia-search-box {
  display: flex;
  flex-flow: row wrap; }
  #algolia-search-box > * {
    flex: 1 100%; }
  @media (min-width: 768px) {
    #algolia-search-box {
      margin: 0 0 1.5rem 0; } }
  #algolia-search-box input, #algolia-search-box textarea {
    background-color: white;
    border: none;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }
    @media (min-width: 768px) {
      #algolia-search-box input, #algolia-search-box textarea {
        font-size: 1.8rem;
        font-weight: 700;
        padding: 1em .715em; } }

.ais-search-box--powered-by {
  font-size: 1rem;
  text-align: right;
  font-style: italic;
  color: #3b4f4b; }
  @media (min-width: 768px) {
    .ais-search-box--powered-by {
      margin-top: 5px;
      font-size: 12px; } }

body.search .blog {
  background-color: white; }

body.search ul.tabs {
  display: flex;
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 100%;
  border-bottom: 1px solid #ddd; }
  @media (min-width: 768px) {
    body.search ul.tabs {
      margin-bottom: 20px; } }
  body.search ul.tabs h2, body.search ul.tabs #comments #reply-title, #comments body.search ul.tabs #reply-title {
    font-weight: 700;
    font-size: 1.276rem;
    margin-bottom: 0; }

body.search ul.tabs li {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  background-clip: padding-box;
  background-color: #f6fbff;
  color: #222;
  margin: 0 5px 0 0;
  cursor: pointer;
  text-align: left;
  padding: 5px 10px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd; }
  @media (min-width: 480px) {
    body.search ul.tabs li {
      display: inline-flex; } }
  @media (min-width: 768px) {
    body.search ul.tabs li {
      padding: 16px 20px; } }
  body.search ul.tabs li .algolia-stats {
    display: none; }
    @media (min-width: 768px) {
      body.search ul.tabs li .algolia-stats {
        display: block; } }

body.search ul.tabs li.current {
  background-color: white;
  color: #222;
  margin-bottom: -1px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd; }

body.search .tab-content {
  display: none;
  padding: 15px;
  width: 100%;
  -webkit-border-radius: 0px 5px 5px 5px;
  border-radius: 0px 5px 5px 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }
  body.search .tab-content.current {
    display: inherit; }

button, a.button, .button, input[type="submit"], textarea[type="submit"], input[type="reset"], textarea[type="reset"], #masthead .menu li.contact-button a, a#search-toggle {
  text-decoration: none;
  padding: 0.66rem;
  transition: all 0.3s ease-in-out;
  border-radius: 7px;
  color: white;
  background-color: #ff8000;
  border: 1px solid #ff8000; }
  button:link, .button:link, input:link[type="submit"], textarea:link[type="submit"], input:link[type="reset"], textarea:link[type="reset"], #masthead .menu li.contact-button a:link, a#search-toggle:link, button:visited, .button:visited, input:visited[type="submit"], textarea:visited[type="submit"], input:visited[type="reset"], textarea:visited[type="reset"], #masthead .menu li.contact-button a:visited, a#search-toggle:visited {
    color: white;
    background-color: #ff8000;
    border: 1px solid #ff8000; }
  button:hover, .button:hover, input:hover[type="submit"], textarea:hover[type="submit"], input:hover[type="reset"], textarea:hover[type="reset"], #masthead .menu li.contact-button a:hover, a#search-toggle:hover, button:active, .button:active, input:active[type="submit"], textarea:active[type="submit"], input:active[type="reset"], textarea:active[type="reset"], #masthead .menu li.contact-button a:active, a#search-toggle:active {
    color: white;
    background-color: #e67300;
    border: 1px solid #e67300; }
  button.secondary, button--secondary, a.button.secondary, a.button--secondary, .button.secondary, input.secondary[type="submit"], textarea.secondary[type="submit"], input.secondary[type="reset"], textarea.secondary[type="reset"], .button--secondary, a#search-toggle {
    color: white;
    background-color: #639bcf;
    border-color: #639bcf; }
    button.secondary:link, button--secondary:link, .button.secondary:link, input.secondary:link[type="submit"], textarea.secondary:link[type="submit"], input.secondary:link[type="reset"], textarea.secondary:link[type="reset"], .button--secondary:link, a#search-toggle:link, button.secondary:visited, button--secondary:visited, .button.secondary:visited, input.secondary:visited[type="submit"], textarea.secondary:visited[type="submit"], input.secondary:visited[type="reset"], textarea.secondary:visited[type="reset"], .button--secondary:visited, a#search-toggle:visited {
      color: white;
      background-color: #639bcf;
      border-color: #639bcf; }
    button.secondary:hover, button--secondary:hover, .button.secondary:hover, input.secondary:hover[type="submit"], textarea.secondary:hover[type="submit"], input.secondary:hover[type="reset"], textarea.secondary:hover[type="reset"], .button--secondary:hover, a#search-toggle:hover, button.secondary:active, button--secondary:active, .button.secondary:active, input.secondary:active[type="submit"], textarea.secondary:active[type="submit"], input.secondary:active[type="reset"], textarea.secondary:active[type="reset"], .button--secondary:active, a#search-toggle:active {
      color: white;
      background-color: #4f8ec9;
      border-color: #4f8ec9; }
  button.ghost, button--ghost, a.button.ghost, a.button--ghost, .button.ghost, input.ghost[type="submit"], textarea.ghost[type="submit"], input.ghost[type="reset"], textarea.ghost[type="reset"], .button--ghost, #masthead .menu li.contact-button a, a#search-toggle {
    color: white;
    background-color: transparent;
    border-color: white; }
    button.ghost:link, button--ghost:link, .button.ghost:link, input.ghost:link[type="submit"], textarea.ghost:link[type="submit"], input.ghost:link[type="reset"], textarea.ghost:link[type="reset"], .button--ghost:link, #masthead .menu li.contact-button a:link, a#search-toggle:link, button.ghost:visited, button--ghost:visited, .button.ghost:visited, input.ghost:visited[type="submit"], textarea.ghost:visited[type="submit"], input.ghost:visited[type="reset"], textarea.ghost:visited[type="reset"], .button--ghost:visited, #masthead .menu li.contact-button a:visited, a#search-toggle:visited {
      color: white;
      background-color: transparent;
      border-color: white; }
    button.ghost:hover, button--ghost:hover, .button.ghost:hover, input.ghost:hover[type="submit"], textarea.ghost:hover[type="submit"], input.ghost:hover[type="reset"], textarea.ghost:hover[type="reset"], .button--ghost:hover, #masthead .menu li.contact-button a:hover, a#search-toggle:hover, button.ghost:active, button--ghost:active, .button.ghost:active, input.ghost:active[type="submit"], textarea.ghost:active[type="submit"], input.ghost:active[type="reset"], textarea.ghost:active[type="reset"], .button--ghost:active, #masthead .menu li.contact-button a:active, a#search-toggle:active {
      color: #ff8000;
      background-color: #fff;
      border-color: white; }

button.button__buy, a.button.button__buy, .button.button__buy, input.button__buy[type="submit"], textarea.button__buy[type="submit"], input.button__buy[type="reset"], textarea.button__buy[type="reset"] {
  font-family: "DIN2014-DemiBold";
  text-transform: none;
  letter-spacing: normal;
  font-weight: 300;
  text-align: center; }
  @media (min-width: 768px) {
    button.button__buy span.button-content, a.button.button__buy span.button-content, .button.button__buy span.button-content, input.button__buy[type="submit"] span.button-content, textarea.button__buy[type="submit"] span.button-content, input.button__buy[type="reset"] span.button-content, textarea.button__buy[type="reset"] span.button-content {
      display: flex;
      align-items: center;
      justify-content: center; } }
  button.button__buy span.button-content .price-wrapper, a.button.button__buy span.button-content .price-wrapper, .button.button__buy span.button-content .price-wrapper, input.button__buy[type="submit"] span.button-content .price-wrapper, textarea.button__buy[type="submit"] span.button-content .price-wrapper, input.button__buy[type="reset"] span.button-content .price-wrapper, textarea.button__buy[type="reset"] span.button-content .price-wrapper {
    white-space: nowrap; }
    @media (min-width: 768px) {
      button.button__buy span.button-content .price-wrapper, a.button.button__buy span.button-content .price-wrapper, .button.button__buy span.button-content .price-wrapper, input.button__buy[type="submit"] span.button-content .price-wrapper, textarea.button__buy[type="submit"] span.button-content .price-wrapper, input.button__buy[type="reset"] span.button-content .price-wrapper, textarea.button__buy[type="reset"] span.button-content .price-wrapper {
        display: flex;
        align-items: center; } }
    button.button__buy span.button-content .price-wrapper .currency, a.button.button__buy span.button-content .price-wrapper .currency, .button.button__buy span.button-content .price-wrapper .currency, input.button__buy[type="submit"] span.button-content .price-wrapper .currency, textarea.button__buy[type="submit"] span.button-content .price-wrapper .currency, input.button__buy[type="reset"] span.button-content .price-wrapper .currency, textarea.button__buy[type="reset"] span.button-content .price-wrapper .currency {
      font-weight: 700; }
    button.button__buy span.button-content .price-wrapper .amount, a.button.button__buy span.button-content .price-wrapper .amount, .button.button__buy span.button-content .price-wrapper .amount, input.button__buy[type="submit"] span.button-content .price-wrapper .amount, textarea.button__buy[type="submit"] span.button-content .price-wrapper .amount, input.button__buy[type="reset"] span.button-content .price-wrapper .amount, textarea.button__buy[type="reset"] span.button-content .price-wrapper .amount {
      font-weight: 700; }

button .button__jaffa:link, button .button__jaffa:active, a.button .button__jaffa:link, a.button .button__jaffa:active, .button .button__jaffa:link, input[type="submit"] .button__jaffa:link, textarea[type="submit"] .button__jaffa:link, input[type="reset"] .button__jaffa:link, textarea[type="reset"] .button__jaffa:link, .button .button__jaffa:active, input[type="submit"] .button__jaffa:active, textarea[type="submit"] .button__jaffa:active, input[type="reset"] .button__jaffa:active, textarea[type="reset"] .button__jaffa:active {
  background-color: #ff8000; }

button .button__jaffa:hover, a.button .button__jaffa:hover, .button .button__jaffa:hover, input[type="submit"] .button__jaffa:hover, textarea[type="submit"] .button__jaffa:hover, input[type="reset"] .button__jaffa:hover, textarea[type="reset"] .button__jaffa:hover {
  background-color: #cc6600; }

button .button__jaffa:active, a.button .button__jaffa:active, .button .button__jaffa:active, input[type="submit"] .button__jaffa:active, textarea[type="submit"] .button__jaffa:active, input[type="reset"] .button__jaffa:active, textarea[type="reset"] .button__jaffa:active {
  background-color: #b35900; }

header#resources-header {
  background: #29004c;
  background: -webkit-linear-gradient(top left, #29004c, #3b70be);
  background: linear-gradient(to bottom right, #29004c, #3b70be); }

.blog .custom_btn,
.blog .custom_btn:hover {
  background: #639bcf;
  border-color: #639bcf; }

.custom_btn,
.custom_btn:hover {
  background: #00add8;
  margin-top: 0;
  font-size: 16px; }

.custom_btn {
  border: 1px solid #00add8;
  border-radius: 0.6em;
  padding: 1em 1.5em 1em 1.5em !important;
  transition: all 0.2s linear; }

.custom_btn:hover {
  border: 1px solid #00add8;
  border-radius: 10px;
  padding: 16px 27px 15px 25px;
  background: #009fc6; }

.dt-mega-menu-wrap:after,
.flags_item_features:after {
  content: "";
  border-style: solid;
  border-width: 0 12px 10px;
  position: absolute; }

.menu-item-has-children .dt-mega-menu-wrap {
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  left: -124px;
  width: 209px !important;
  min-width: 100%;
  min-width: 170px !important;
  top: 97%;
  padding: 3px !important; }

.menu-item-has-children:hover .dt-mega-menu-wrap {
  visibility: visible;
  opacity: 1;
  background-color: #EBEBEB !important;
  padding: 3px !important;
  box-shadow: 0 3px 9px -2px rgba(0, 0, 0, 0.5); }

.border_link,
.border_link_recourses {
  background-color: transparent;
  font-weight: 400; }

.dt-mega-menu-wrap:after {
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  width: 0;
  height: 0;
  border-color: transparent transparent #EBEBEB;
  top: -9px;
  right: 28px; }

.border_link_recourses {
  padding-top: 8px !important;
  padding-bottom: 2px !important;
  font-size: 14px; }

.sub-nav {
  visibility: visible;
  opacity: 1;
  width: 100% !important; }

.flags_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flags_mob,
.mobile_menu_button_custom,
.scroll-top {
  display: none; }

.flag_lins img {
  height: 24px;
  width: auto;
  padding-right: 8px; }

.linksdropdawn {
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important; }

.country_name {
  font-size: 17px;
  font-weight: 400; }

.country_name a {
  color: #000; }

.border_link {
  padding: 7px !important;
  font-size: 14px; }

.border_link:hover {
  background-color: #FFF; }

.scroll-top {
  bottom: 65px; }

.flags_item_features {
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  opacity: 0;
  visibility: hidden;
  padding: 3px !important;
  width: 211px;
  position: absolute;
  top: 51%;
  left: 23%; }

.btn_buy_features {
  background: #ec692f !important;
  border-color: #ec692f !important; }

.btn_buy_features:hover .flags_item_features {
  opacity: 1;
  visibility: visible;
  background: #EBEBEB;
  box-shadow: 0 3px 9px -2px rgba(0, 0, 0, 0.5); }

.flag_lins {
  text-decoration: none; }

.flags_item_features:after {
  width: 0;
  height: 0;
  border-color: transparent transparent #EBEBEB;
  top: -9px;
  right: 97px; }

.flags_home_middle {
  top: 68%;
  right: 23%;
  left: inherit; }

.short_form {
  width: 87px !important; }

.short_form:hover .flags_item_2 {
  visibility: visible;
  transition: 0.7s;
  opacity: 1; }

.flags_item_2:before {
  position: absolute;
  top: -7px;
  right: 30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 8px 12px;
  border-color: transparent transparent #ebebeb transparent; }

.flags_item_2 {
  opacity: 0;
  transition: 0.7s;
  box-shadow: 0 3px 9px -2px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  position: absolute;
  display: flex;
  background-color: #EBEBEB !important;
  width: 200px !important;
  margin-top: 11px !important;
  margin-left: -115px !important; }

.flag_lins_2 {
  display: flex !important; }

form {
  position: relative;
  display: flex;
  align-items: center; }
  form.searchform label, form.searchform table th, table form.searchform th, form.searchform .wpcf7 .disclaimer, .wpcf7 form.searchform .disclaimer {
    margin: 0;
    position: absolute;
    display: block;
    opacity: 0.5; }
    form.searchform label:before, form.searchform table th:before, table form.searchform th:before, form.searchform .wpcf7 .disclaimer:before, .wpcf7 form.searchform .disclaimer:before {
      font-family: 'FontAwesome';
      content: '\f002';
      transition: all 0.2s ease-in-out;
      text-align: right;
      display: inline-block;
      opacity: .6;
      padding-left: 7px; }
  form#mc-embedded-subscribe-form {
    display: flex;
    width: 100%;
    flex-direction: column; }
    form#mc-embedded-subscribe-form > * {
      width: 100%; }
    form#mc-embedded-subscribe-form input, form#mc-embedded-subscribe-form textarea {
      padding: 1em 10px;
      border-radius: 7px; }
      form#mc-embedded-subscribe-form input[type="submit"], form#mc-embedded-subscribe-form textarea[type="submit"] {
        margin-top: 1rem;
        width: 100%; }

input[type="search"], textarea[type="search"] {
  padding: 1rem;
  font-weight: 700;
  color: #639bcf; }

input[type="search"], textarea[type="search"] {
  text-indent: 25px;
  margin: 0; }

svg.foobot-logo {
  width: 100px;
  height: 30px; }
  @media (min-width: 768px) {
    svg.foobot-logo {
      width: 130px;
      height: 30px; } }
  svg.foobot-logo .wordmark path {
    fill: #46525d; }
  svg.foobot-logo .target path {
    fill: #ff8000; }
  svg.foobot-logo:hover .target path {
    fill: #639bcf; }

body.cover_dark_background_image #site-wrapper > #masthead svg.foobot-logo {
  /* &:hover {
		  .target {
				path {
					 fill: $orange;
				}
		  }
	 }*/ }
  body.cover_dark_background_image #site-wrapper > #masthead svg.foobot-logo path {
    fill: white; }

@media (max-width: 767px) {
  .site-branding {
    flex-grow: 1; } }

@media (max-width: 767px) {
  .site-logo {
    max-width: 220px; } }

@media (max-width: 480px) {
  .site-logo {
    max-width: 180px; } }

@media (max-width: 767px) {
  .menu li,
  .menu ul li {
    text-align: right; } }

@media (max-width: 767px) {
  ul#menu-mnml-main {
    margin-bottom: 0;
    text-align: right !important; } }

@media (max-width: 767px) {
  ul#menu-mnml-main li a {
    padding: 0; } }

.flags_item .menu li a {
  padding: 0; }

#masthead .menu li {
  margin: 0; }
  #masthead .menu li.menu-item-has-children:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 1px #dedede inset; }
    #masthead .menu li.menu-item-has-children:hover > a:link, #masthead .menu li.menu-item-has-children:hover > a:visited {
      color: #ff8000 !important; }
  #masthead .menu li.search-link {
    display: none; }
  #masthead .menu li a {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease; }
    .current-menu-item #masthead .menu li a, #masthead .menu li a:hover {
      color: #ff8000; }

#masthead .menu .sub-menu {
  border: 1px solid #dedede; }
  #masthead .menu .sub-menu li {
    border-bottom: 1px solid #dedede;
    background-color: rgba(255, 255, 255, 0.9); }
    #masthead .menu .sub-menu li a:link, #masthead .menu .sub-menu li a:visited {
      color: rgba(0, 0, 0, 0.5); }
    #masthead .menu .sub-menu li a:hover {
      color: #ff8000; }

@media (min-width: 768px) {
  #menu-main_menu > li:first-of-type {
    display: none; } }

.mm-wrapper_blocking body {
  overflow: initial !important; }

.mm-menu ul li {
  border-color: rgba(38, 43, 46, 0.08);
  font-size: 15px; }
  .mm-menu ul li a {
    color: #262b2e;
    padding: 16px 0 16px 30px;
    font-weight: 700;
    text-transform: uppercase;
    background-image: none; }
    .mm-menu ul li a:hover {
      color: #f26c0c; }
    .mm-menu ul li a.mm-btn_next {
      padding: 26px; }
  .mm-menu ul li.search-link {
    display: block; }
    .mm-menu ul li.search-link a:after {
      font-family: 'FontAwesome';
      content: '\f002';
      transition: all 0.2s ease-in-out;
      text-align: right;
      display: inline-block;
      opacity: .6;
      padding-left: 7px; }

.mm-menu .mm-listitem:after {
  left: 0; }

.mm-menu.mm-menu_navbar_top-1 .mm-navbars_top {
  height: 57.78px; }

.mm-menu.mm-menu_navbar_top-1 .mm-panels {
  top: 57.78px; }

.mm-menu .mm-listitem_vertical > .mm-panel {
  padding: 0; }

.mm-menu .mm-navbars_bottom {
  padding: 1rem; }
  .mm-menu .mm-navbars_bottom .mm-navbar {
    height: auto; }
    .mm-menu .mm-navbars_bottom .mm-navbar form {
      display: flex; }

button.hamburger {
  background-color: transparent;
  border: none;
  padding: 2px; }

body.cover_dark_background_image #site-wrapper > #masthead .sub-menu a:link,
body.cover_dark_background_image #site-wrapper > #masthead .sub-menu a:visited {
  color: rgba(0, 0, 0, 0.5) !important; }

body.cover_dark_background_image #site-wrapper > #masthead .sub-menu a:hover {
  color: #ff8000 !important; }

.mobile-menu-logo {
  padding: 5% 1rem;
  flex: none;
  text-align: left; }
  .mobile-menu-logo img {
    margin: 0;
    width: 130px;
    height: 29px; }

.mh-head .mh-logo {
  padding: 0;
  margin: 0; }

.stats-post-grid {
  text-align: center; }
  .stats-post-grid .tve_post_grid_wrapper .tve_pg_row {
    display: grid;
    height: auto !important;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px; }
  .stats-post-grid .tve_post {
    font-size: 1rem; }
    .stats-post-grid .tve_post .tve-post-grid-title,
    .stats-post-grid .tve_post strong {
      font-size: 0.88rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      display: block;
      padding: 2rem 5%;
      font-weight: bold; }
    .stats-post-grid .tve_post strong {
      padding: 2rem 0; }
    .stats-post-grid .tve_post .tve-post-grid-text {
      background-color: #f4f4f4;
      padding: 1rem 1rem 3rem;
      font-size: 2rem; }

/* Thrive video modal fixes */
.tcb-video-popup {
  background: #3b4f4b; }

body.tve_editor_page:not(.tcb_symbol-template-default):not(.tve_form_type-template-default) {
  overflow-x: unset !important; }

body.tve_editor_page:not(.tcb_symbol-template-default) {
  overflow-x: initial !important; }

body.tve_editor_page:not(.tcb_symbol-template-default) .tcb-icons-left > *,
body.tve_editor_page:not(.tcb_symbol-template-default) .tcb-icons-right > * {
  display: block !important; }

.wf-loading #main-nav-wrapper {
  opacity: 0; }

.wf-active #main-nav-wrapper {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.wf-inactive #main-nav-wrapper {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

#grid {
  -moz-transform: translate(1px, 0px);
  -ms-transform: translate(1px, 0px);
  -webkit-transform: translate(1px, 0px);
  transform: translate(1px, 0px); }

/* GRAPH - 1 */
#graph-1 {
  stroke: url(#gradient-1) !important;
  stroke-width: 1.5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  -moz-animation: lineani 1.3s linear forwards;
  -webkit-animation: lineani 1.3s linear forwards;
  animation: lineani 1.3s linear forwards; }

#graph-2 {
  stroke: url(#gradient-2) !important;
  stroke-width: 1.5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  -moz-animation: lineani 1.3s linear forwards;
  -webkit-animation: lineani 1.3s linear forwards;
  animation: lineani 1.3s linear forwards; }

#poly-1 {
  fill: url(#gradient-3) !important; }

#poly-2 {
  fill: url(#gradient-2) !important; }

@-moz-keyframes lineani {
  to {
    stroke-dashoffset: 0; } }

@-webkit-keyframes lineani {
  to {
    stroke-dashoffset: 0; } }

@keyframes lineani {
  to {
    stroke-dashoffset: 0; } }

.underlay {
  stroke-width: 5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #24303a; }

#circle-graph-1 {
  stroke: url(#gradient-1);
  stroke-width: 5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round; }

.chart-circle {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

#circle-graph-2 {
  stroke: url(#gradient-2);
  stroke-width: 5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round; }

.charts-container {
  padding: 0;
  width: 100%;
  max-width: 1024px;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%; }

.chart {
  color: #4a667a;
  text-align: left;
  position: relative;
  height: auto;
  background-color: #1e2730;
  display: inline-block;
  float: left;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px;
  padding: 15px 20px 65px 20px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100% !important;
  height: 100%; }

.chart.circle {
  padding: 15px 20px 40px 20px; }

@media screen and (max-width: 700px) {
  .chart {
    width: calc(100% - 20px); } }

@media screen and (min-width: 700px) {
  .chart {
    width: calc(50% - 20px); } }

.title {
  font-size: 22px;
  margin-bottom: 12px; }

.chart-circle {
  display: inline-block;
  position: relative; }

.chart-svg {
  position: relative;
  height: 100%; }

.circle-percentage {
  position: absolute;
  color: white;
  font-size: 48px;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

@media screen and (max-width: 480px) {
  .circle-percentage {
    font-size: 32px; } }

.align-center {
  text-align: center; }

.chart-line {
  width: 100%;
  height: 100%; }

.valueX {
  font-size: 14px; }

.chart-values {
  text-align: right;
  font-size: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px; }

.h-value {
  -moz-transition: ease-in-out 700ms;
  -o-transition: ease-in-out 700ms;
  -webkit-transition: ease-in-out 700ms;
  transition: ease-in-out 700ms;
  opacity: 0; }

.h-value.visible {
  opacity: 1; }

.percentage-value {
  -moz-transition: ease-in-out 700ms;
  -o-transition: ease-in-out 700ms;
  -webkit-transition: ease-in-out 700ms;
  transition: ease-in-out 700ms;
  color: #48c15e;
  margin-top: 2px;
  opacity: 0; }

.percentage-value.negative {
  color: #ef6670; }

.percentage-value.visible {
  opacity: 1; }

.total-gain {
  color: white;
  font-size: 48px; }

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  position: absolute;
  left: 0;
  bottom: 0; }

.triangle.red {
  border-color: transparent transparent transparent #ef6670; }

.triangle.green {
  border-color: transparent transparent transparent #48c15e; }

.horizontal,
.vertical {
  stroke-width: 0.1;
  stroke: rgba(255, 255, 255, 0.1) !important; }

/* CLEARFIX HELPER */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1; }

/*IRRELEVANT CSS*/
.followlinks {
  position: fixed;
  right: 35px;
  bottom: 15px;
  display: table; }

.followlinks a {
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
  color: white; }

.followlinks a svg path {
  fill: white; }

.heartIt {
  margin-top: 50px;
  margin-bottom: 80px; }

.heartIt p {
  font-size: 24px;
  line-height: 40px; }

.heartIt img {
  width: 64px;
  height: auto;
  opacity: 0.7;
  -webkit-filter: invert(100%);
  filter: invert(100%); }

.original {
  color: #ef6670;
  font-size: 14px; }

@media (max-width: 770px) {
  #harmful.equal-split .equal-split-image {
    min-height: auto; } }

/* Animations */
/** Tech Page 2019 **/
/* "Leveraging The Cloud */
#harry-foobotter {
  animation: rocketMotion 4s infinite ease-in-out;
  transform-box: fill-box; }

#flame_x5F_right,
#flame_x5F_left {
  /*-webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(41deg) skew(-24deg, -11deg);
  transform: rotate(41deg) skew(-24deg, -11deg);
  top: 14px;
  left: -6px;*/
  background: -webkit-linear-gradient(315deg, yellow 0%, yellow 50%, orange 50%, orange 100%);
  background: linear-gradient(135deg, yellow 0%, yellow 50%, orange 50%, orange 100%);
  animation: flameMotion .1s infinite;
  box-shadow: 0 0 50px 1px rgba(238, 158, 0, 0.5);
  transform-box: fill-box; }

@keyframes flameMotion {
  0% {
    opacity: .4;
    /* transform: 
			translate(5px, 0px) scale(1, 1.1) rotate(53deg) skew(-10deg, -20deg); */ }
  100% {
    opacity: 1;
    /* transform: translate(0px, 0px) scale(1.4, 1) rotate(53deg) skew(-10deg, -20deg);*/ } }

@keyframes rocketMotion {
  50% {
    transform: translate(10px, 20px); } }

.home-hero-svg #g218 {
  transform-box: fill-box;
  -webkit-animation: bubbleFloat ease-in-out 30s 0s infinite alternate;
  -moz-animation: bubbleFloat ease-in-out 30s 0s infinite alternate;
  -o-animation: bubbleFloat ease-in-out 30s 0s infinite alternate;
  animation: bubbleFloat ease-in-out 30s 0s infinite alternate; }

.home-hero-svg #g294 {
  transform-box: fill-box;
  -webkit-animation: bubbleFloat ease-in-out 24s 3s infinite alternate;
  -moz-animation: bubbleFloat ease-in-out 24s 3s infinite alternate;
  -o-animation: bubbleFloat ease-in-out 24s 3s infinite alternate;
  animation: bubbleFloat ease-in-out 24s 3s infinite alternate; }

.home-hero-svg #g82 {
  transform-box: fill-box;
  -webkit-animation: bubbleFloat ease-in-out 32s 3s infinite alternate;
  -moz-animation: bubbleFloat ease-in-out 32s 3s infinite alternate;
  -o-animation: bubbleFloat ease-in-out 32s 3s infinite alternate;
  animation: bubbleFloat ease-in-out 32s 3s infinite alternate; }

.home-hero-svg #g98 {
  transform-box: fill-box;
  -webkit-animation: bubbleFloat ease-in-out 26s 3s infinite alternate;
  -moz-animation: bubbleFloat ease-in-out 26s 3s infinite alternate;
  -o-animation: bubbleFloat ease-in-out 26s 3s infinite alternate;
  animation: bubbleFloat ease-in-out 26s 3s infinite alternate; }

.home-hero-svg #g50 {
  transform-box: fill-box;
  -webkit-animation: blobThrob ease-in-out 8s infinite alternate;
  -moz-animation: blobThrob ease-in-out 8s infinite alternate;
  -o-animation: blobThrob ease-in-out 8s infinite alternate;
  animation: blobThrob ease-in-out 8s infinite alternate; }

.home-hero-svg #g378, .home-hero-svg #g382, .home-hero-svg #g386, .home-hero-svg #g390, .home-hero-svg #g394, .home-hero-svg #g398, .home-hero-svg #g402, .home-hero-svg #g406, .home-hero-svg #g410, .home-hero-svg #g414, .home-hero-svg #g418, .home-hero-svg #g422, .home-hero-svg #g426, .home-hero-svg #g430, .home-hero-svg #g434, .home-hero-svg #g438 {
  opacity: 0;
  transform-box: fill-box;
  animation: fadeIn ease-in-out 4s;
  animation-fill-mode: forwards; }

.home-hero-svg #g418 {
  animation-delay: 0s; }

.home-hero-svg #g414 {
  animation-delay: 2s; }

.home-hero-svg #g426 {
  animation-delay: 2s; }

.home-hero-svg #g390 {
  animation-delay: 4s; }

.home-hero-svg #g398 {
  animation-delay: 4s; }

.home-hero-svg #g402 {
  animation-delay: 4s; }

.home-hero-svg #g410 {
  animation-delay: 4s; }

.home-hero-svg #g430 {
  animation-delay: 4s; }

.home-hero-svg #g378 {
  animation-delay: 8s; }

.home-hero-svg #g386 {
  animation-delay: 8s; }

.home-hero-svg #g406 {
  animation-delay: 8s; }

.home-hero-svg #g434 {
  animation-delay: 8s; }

.home-hero-svg #g438 {
  animation-delay: 8s; }

.home-hero-svg #g422 {
  animation-delay: 9s; }

.home-hero-svg #g394 {
  animation-delay: 9s; }

.home-hero-svg #g382 {
  animation-delay: 9s; }

.art3-wrapper {
  /* Background shape */
  /* Medium blue bubble */
  /* Medium orange bubble */
  /* Small blue bubble */
  /* Hair strand - Woman, yellow hair */ }
  .art3-wrapper #g136 {
    transform-box: fill-box;
    -webkit-animation: blobThrob ease-in-out 8s infinite alternate;
    -moz-animation: blobThrob ease-in-out 8s infinite alternate;
    -o-animation: blobThrob ease-in-out 8s infinite alternate;
    animation: blobThrob ease-in-out 8s infinite alternate; }
  .art3-wrapper #g180 {
    animation: fadeIn 14s, bounce 9s cubic-bezier(0.49, 0.51, 0.22, 1.14) infinite alternate; }
  .art3-wrapper #g256 {
    animation: fadeIn 4s, bounce 9s cubic-bezier(0.49, 0.51, 0.22, 1.14) infinite alternate;
    transform-box: fill-box; }
  .art3-wrapper #g288 {
    animation: fadeIn 6s, pulse 8s, bounce 11s cubic-bezier(0.59, 0.11, 0.32, 1.04) infinite alternate;
    transform-box: fill-box; }
  .art3-wrapper #g562 path {
    animation: swing-hair ease-in-out 1s infinite alternate;
    transform-origin: 100% 100%;
    transform-box: fill-box; }
  .art3-wrapper #g272 {
    -webkit-animation: bubbleBurst ease-in-out 10s 0s infinite;
    -moz-animation: bubbleBurst ease-in-out 10s 0s infinite;
    -o-animation: bubbleBurst ease-in-out 10s 0s infinite;
    animation: bubbleBurst ease-in-out 10s 0s infinite;
    transform-box: fill-box; }
  .art3-wrapper #g954 path, .art3-wrapper #g958 path {
    animation: swing-wrist cubic-bezier(0.41, 0.11, 0.32, 0.34) 1s infinite alternate;
    transform-origin: 16% 20%;
    transform-box: fill-box; }

.office-hero-wrapper #g86 {
  animation: pulse 8s, bounce 8s cubic-bezier(0.69, 0.31, 0.82, 1.24) infinite alternate;
  transform-box: fill-box;
  z-index: 0; }

.office-hero-wrapper #g286 {
  animation: pulse 5s, bounce 10s cubic-bezier(0.29, 0.11, 0.82, 1.24) infinite alternate;
  transform-box: fill-box;
  z-index: 0; }

.office-hero-wrapper #g222 {
  animation: pulse 8s, bounce 8s cubic-bezier(0.69, 0.31, 0.82, 1.24) infinite alternate;
  transform-box: fill-box;
  z-index: 0; }

.office-hero-wrapper #g270 {
  animation: pulse 3s, bounce 9s cubic-bezier(0.49, 0.22, 0.72, 0.89) infinite alternate;
  transform-box: fill-box;
  z-index: 0; }

.office-pilot-svg .st36 {
  animation: pulse 5s, bounce 10s cubic-bezier(0.29, 0.11, 0.82, 1.24) infinite alternate;
  transform-box: fill-box;
  z-index: 0; }

.office-pilot-svg path.st9, .office-pilot-svg path.st33 {
  animation: swing-hair ease-in-out 3s infinite alternate;
  transform-origin: 100% 100%;
  transform-box: fill-box; }

.office-pilot-svg circle.st34 {
  position: absolute;
  left: auto;
  right: auto;
  margin-left: 50%;
  margin-right: 50%; }

/*
.foobot-logo {
    .target {
        path {
            &.ring {
                transform-origin: center;
                @include animation(fadeIn 4s ease-out);
                &__middle {
                    transition-delay: 0.4s;
                    @include animation(fadeIn 4s ease-out);
                }
                &__outer {
                    transition-delay: 0.8s;
                    @include animation(fadeIn 4s ease-out);
                }
            }

        }
    }
}
*/
@-webkit-keyframes swing-hair {
  0% {
    transform: rotate(3deg); }
  100% {
    transform: rotate(-3deg); } }

@-moz-keyframes swing-hair {
  0% {
    transform: rotate(3deg); }
  100% {
    transform: rotate(-3deg); } }

@-o-keyframes swing-hair {
  0% {
    transform: rotate(3deg); }
  100% {
    transform: rotate(-3deg); } }

@keyframes swing-hair {
  0% {
    transform: rotate(3deg); }
  100% {
    transform: rotate(-3deg); } }

@-webkit-keyframes swing-hair-more {
  0% {
    transform: rotate(13deg); }
  100% {
    transform: rotate(-13deg); } }

@-moz-keyframes swing-hair-more {
  0% {
    transform: rotate(13deg); }
  100% {
    transform: rotate(-13deg); } }

@-o-keyframes swing-hair-more {
  0% {
    transform: rotate(13deg); }
  100% {
    transform: rotate(-13deg); } }

@keyframes swing-hair-more {
  0% {
    transform: rotate(13deg); }
  100% {
    transform: rotate(-13deg); } }

@-webkit-keyframes swing-wrist {
  0% {
    transform: rotate(21deg); }
  100% {
    transform: rotate(-9deg); } }

@-moz-keyframes swing-wrist {
  0% {
    transform: rotate(21deg); }
  100% {
    transform: rotate(-9deg); } }

@-o-keyframes swing-wrist {
  0% {
    transform: rotate(21deg); }
  100% {
    transform: rotate(-9deg); } }

@keyframes swing-wrist {
  0% {
    transform: rotate(21deg); }
  100% {
    transform: rotate(-9deg); } }

@-webkit-keyframes bubbleL {
  0% {
    transform: scale(0.2); }
  10% {
    opacity: 1;
    transform: scale(0.2); }
  100% {
    opacity: 0;
    transform: scale(1); } }

@-moz-keyframes bubbleL {
  0% {
    transform: scale(0.2); }
  10% {
    opacity: 1;
    transform: scale(0.2); }
  100% {
    opacity: 0;
    transform: scale(1); } }

@-o-keyframes bubbleL {
  0% {
    transform: scale(0.2); }
  10% {
    opacity: 1;
    transform: scale(0.2); }
  100% {
    opacity: 0;
    transform: scale(1); } }

@keyframes bubbleL {
  0% {
    transform: scale(0.2); }
  10% {
    opacity: 1;
    transform: scale(0.2); }
  100% {
    opacity: 0;
    transform: scale(1); } }

@-webkit-keyframes bubbleR {
  10% {
    opacity: 1;
    transform: scale(0.2) translate(0, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@-moz-keyframes bubbleR {
  10% {
    opacity: 1;
    transform: scale(0.2) translate(0, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@-o-keyframes bubbleR {
  10% {
    opacity: 1;
    transform: scale(0.2) translate(0, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@keyframes bubbleR {
  10% {
    opacity: 1;
    transform: scale(0.2) translate(0, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@-webkit-keyframes bubbleBurst {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, -5px); }
  60% {
    opacity: 1;
    transform: scale(0.6) translate(10px, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@-moz-keyframes bubbleBurst {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, -5px); }
  60% {
    opacity: 1;
    transform: scale(0.6) translate(10px, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@-o-keyframes bubbleBurst {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, -5px); }
  60% {
    opacity: 1;
    transform: scale(0.6) translate(10px, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@keyframes bubbleBurst {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, -5px); }
  60% {
    opacity: 1;
    transform: scale(0.6) translate(10px, -5px); }
  100% {
    opacity: 0;
    transform: scale(1) translate(-20px, -130px); } }

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-20px, -60px); } }

@-moz-keyframes fadeInOut {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-20px, -60px); } }

@-o-keyframes fadeInOut {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-20px, -60px); } }

@keyframes fadeInOut {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-20px, -60px); } }

@-webkit-keyframes stroke {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes stroke {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes stroke {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes stroke {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes targetScale {
  0% {
    transform: scale(0.2); }
  100% {
    transform: scale(1); } }

@-moz-keyframes targetScale {
  0% {
    transform: scale(0.2); }
  100% {
    transform: scale(1); } }

@-o-keyframes targetScale {
  0% {
    transform: scale(0.2); }
  100% {
    transform: scale(1); } }

@keyframes targetScale {
  0% {
    transform: scale(0.2); }
  100% {
    transform: scale(1); } }

@-webkit-keyframes blobThrob {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }

@-moz-keyframes blobThrob {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }

@-o-keyframes blobThrob {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }

@keyframes blobThrob {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }

@-webkit-keyframes bubbleFloat {
  0% {
    transform: scale(1) translate(0, -3px); }
  10% {
    transform: scale(0.95) translate(3px, -5px); }
  20% {
    transform: scale(0.9) translate(7px, -7px); }
  30% {
    transform: scale(0.95) translate(10px, -15px); }
  40% {
    transform: scale(1) translate(50px, 20px); }
  60% {
    transform: scale(0.9) translate(-30px, -35px); }
  80% {
    transform: scale(1) translate(5px, 0); }
  90% {
    transform: scale(0.9) translate(10px, -5px); }
  100% {
    transform: scale(0.95) translate(5px, 0); } }

@-moz-keyframes bubbleFloat {
  0% {
    transform: scale(1) translate(0, -3px); }
  10% {
    transform: scale(0.95) translate(3px, -5px); }
  20% {
    transform: scale(0.9) translate(7px, -7px); }
  30% {
    transform: scale(0.95) translate(10px, -15px); }
  40% {
    transform: scale(1) translate(50px, 20px); }
  60% {
    transform: scale(0.9) translate(-30px, -35px); }
  80% {
    transform: scale(1) translate(5px, 0); }
  90% {
    transform: scale(0.9) translate(10px, -5px); }
  100% {
    transform: scale(0.95) translate(5px, 0); } }

@-o-keyframes bubbleFloat {
  0% {
    transform: scale(1) translate(0, -3px); }
  10% {
    transform: scale(0.95) translate(3px, -5px); }
  20% {
    transform: scale(0.9) translate(7px, -7px); }
  30% {
    transform: scale(0.95) translate(10px, -15px); }
  40% {
    transform: scale(1) translate(50px, 20px); }
  60% {
    transform: scale(0.9) translate(-30px, -35px); }
  80% {
    transform: scale(1) translate(5px, 0); }
  90% {
    transform: scale(0.9) translate(10px, -5px); }
  100% {
    transform: scale(0.95) translate(5px, 0); } }

@keyframes bubbleFloat {
  0% {
    transform: scale(1) translate(0, -3px); }
  10% {
    transform: scale(0.95) translate(3px, -5px); }
  20% {
    transform: scale(0.9) translate(7px, -7px); }
  30% {
    transform: scale(0.95) translate(10px, -15px); }
  40% {
    transform: scale(1) translate(50px, 20px); }
  60% {
    transform: scale(0.9) translate(-30px, -35px); }
  80% {
    transform: scale(1) translate(5px, 0); }
  90% {
    transform: scale(0.9) translate(10px, -5px); }
  100% {
    transform: scale(0.95) translate(5px, 0); } }

.h1, h1, .h1-reset, blockquote.fancy:before, .blockquote-fancy:before, .h2, h2, #comments #reply-title, .h2-reset, .h3, h3, .h3-reset, .media-object .media-object-content header .entry-title, .before-after-labels > *, .page-template-features-page #get-fresh-air-effortlessly footer, .h4, h4, .h4-reset, blockquote.fancy, .h5, h5, .h5-reset, #sensors .accordion .tab label, #sensors .accordion .tab table th, table #sensors .accordion .tab th, #sensors .accordion .tab .wpcf7 .disclaimer, .wpcf7 #sensors .accordion .tab .disclaimer, .h6, h6, .h6-reset, .widget-title {
  font-family: "DIN2014-DemiBold";
  color: #3b4f4b;
  font-weight: normal; }

span.header-secondary {
  color: #73a5d4; }

@font-face {
  font-family: "DIN2014-DemiBold";
  font-style: "normal";
  font-weight: "600";
  src: url("assets/fonts/DIN2014-DemiBold.eot");
  src: url("assets/fonts/DIN2014-DemiBold.eot#iefix") format("embedded-opentype"), url("assets/fonts/DIN2014-DemiBold.woff") format("woff"), url("assets/fonts/DIN2014-DemiBold.ttf") format("truetype"), url("assets/fonts/DIN2014-DemiBold.svg#DIN2014-DemiBold") format("svg"); }

@font-face {
  font-family: "DIN2014-Regular";
  font-style: "normal";
  font-weight: "normal";
  src: url("assets/fonts/DIN2014-Regular.eot");
  src: url("assets/fonts/DIN2014-Regular.eot#iefix") format("embedded-opentype"), url("assets/fonts/DIN2014-Regular.woff") format("woff"), url("assets/fonts/DIN2014-Regular.ttf") format("truetype"), url("assets/fonts/DIN2014-Regular.svg#DIN2014-Regular") format("svg"); }

body {
  font-family: "DIN2014-Regular"; }

html {
  overflow-x: hidden;
  color: #3b4f4b; }

body {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.09s ease-in-out;
  -moz-transition: opacity 0.09s ease-in-out;
  -ms-transition: opacity 0.09s ease-in-out;
  -o-transition: opacity 0.09s ease-in-out;
  transition: opacity 0.09s ease-in-out; }
  html.js body.DIN2014-Regular--active, html.js body.DIN2014-DemiBold--active, html.js body.DIN2014-Regular--unavailable, html.js body.DIN2014-DemiBold--unavailable {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.09s ease-in-out;
    -moz-transition: opacity 0.09s ease-in-out;
    -ms-transition: opacity 0.09s ease-in-out;
    -o-transition: opacity 0.09s ease-in-out;
    transition: opacity 0.09s ease-in-out; }

.text-highlight-default {
  color: #639bcf; }

.preheader, .resources-promo__footer {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06rem; }

.lity {
  background: rgba(0, 0, 0, 0.8); }

html.tve-o-hidden.tve-hide-overflow.tve-l-open,
body.tve-o-hidden.tve-hide-overflow.tve-l-open {
  overflow: initial !important; }

#player {
  background-color: #000; }

.asterisk {
  color: #ff8000; }

b,
strong {
  font-family: "DIN2014-DemiBold";
  font-weight: normal; }

a {
  background-image: none;
  background-size: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  a:link {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    article a:link {
      color: #639bcf; }
  a:visited {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    article a:visited {
      color: #639bcf; }
  a:hover {
    text-decoration: none;
    color: black;
    background-image: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    article a:hover {
      color: #639bcf; }

svg {
  max-width: 100%;
  height: auto;
  position: relative; }

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0; }

aside h5 {
  font-size: 15px;
  font-weight: bold;
  color: #333; }

aside ul {
  margin: 0;
  padding: 0; }
  aside ul li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    padding: 0; }
    aside ul li:hover {
      background: #f8f8f8;
      cursor: pointer; }
      aside ul li:hover label, aside ul li:hover table th, table aside ul li:hover th, aside ul li:hover .wpcf7 .disclaimer, .wpcf7 aside ul li:hover .disclaimer {
        color: #59514c; }
    aside ul li a {
      text-decoration: none;
      background: none; }
    aside ul li label, aside ul li table th, table aside ul li th, aside ul li .wpcf7 .disclaimer, .wpcf7 aside ul li .disclaimer {
      margin: 0 0 0 12px;
      color: gray;
      font-weight: 100;
      font-size: 15px; }
    @media (min-width: 991px) {
      aside ul li {
        display: flex;
        border-top: 1px solid rgba(0, 0, 0, 0.1); } }

address {
  font-style: normal; }

.foobot-custom .page-title, .foobot-landing .page-title {
  display: none; }

.foobot-custom .masthead,
.foobot-custom .dt-close-mobile-menu-icon,
.foobot-custom .dt-mobile-header, .foobot-landing .masthead,
.foobot-landing .dt-close-mobile-menu-icon,
.foobot-landing .dt-mobile-header {
  display: none; }

.in {
  max-width: 90rem;
  margin: 0 auto; }

@media (min-width: 768px) {
  #main article {
    display: flex;
    flex-flow: row wrap; } }

@media (min-width: 768px) {
  #main article #primary, #main article .with-sidebar #comments .container > div, .with-sidebar #comments #main article .container > div, #main article .with-sidebar #comments .grid-wrapper > div, .with-sidebar #comments #main article .grid-wrapper > div, #main article .with-sidebar #comments #post-taxonomies .post-taxonomies-categories > div, .with-sidebar #comments #post-taxonomies #main article .post-taxonomies-categories > div, #main article #post-taxonomies .with-sidebar #comments .post-taxonomies-categories > div, #post-taxonomies .with-sidebar #comments #main article .post-taxonomies-categories > div, #main article .with-sidebar #comments #post-taxonomies .post-taxonomies-tags > div, .with-sidebar #comments #post-taxonomies #main article .post-taxonomies-tags > div, #main article #post-taxonomies .with-sidebar #comments .post-taxonomies-tags > div, #post-taxonomies .with-sidebar #comments #main article .post-taxonomies-tags > div, #main article .with-sidebar #comments .stats-post-grid .tve_post_grid_wrapper .tve_pg_row > div, .with-sidebar #comments .stats-post-grid .tve_post_grid_wrapper #main article .tve_pg_row > div, #main article .stats-post-grid .tve_post_grid_wrapper .with-sidebar #comments .tve_pg_row > div, .stats-post-grid .tve_post_grid_wrapper .with-sidebar #comments #main article .tve_pg_row > div, #main article .with-sidebar #comments .cc-grower .cc-window.cc-banner > div, .with-sidebar #comments .cc-grower #main article .cc-window.cc-banner > div, #main article .cc-grower .with-sidebar #comments .cc-window.cc-banner > div, .cc-grower .with-sidebar #comments #main article .cc-window.cc-banner > div, #main article .with-sidebar #comments .product-list__featured > .tcb-flex-row > div, .with-sidebar #comments #main article .product-list__featured > .tcb-flex-row > div, #main article .with-sidebar #comments .testimonials > .in > div, .with-sidebar #comments #main article .testimonials > .in > div, #main article .with-sidebar #comments .wuot__container > div, .with-sidebar #comments #main article .wuot__container > div, #main article .with-sidebar #comments .search #content #ais-wrapper > div, .with-sidebar #comments .search #content #main article #ais-wrapper > div, #main article .search #content .with-sidebar #comments #ais-wrapper > div, .search #content .with-sidebar #comments #main article #ais-wrapper > div {
    flex: 3;
    order: 1; } }

@media (min-width: 768px) {
  #main article #secondary {
    flex: 1;
    order: 2;
    padding-left: 20px; } }

#colophon {
  color: #013945;
  font-size: 1.1rem;
  background-color: white; }
  @media (min-width: 768px) {
    #colophon {
      padding-top: 1rem;
      padding-bottom: 1rem; } }
  #colophon .container, #colophon .grid-wrapper, #colophon #post-taxonomies .post-taxonomies-categories, #post-taxonomies #colophon .post-taxonomies-categories,
  #colophon #post-taxonomies .post-taxonomies-tags, #post-taxonomies #colophon .post-taxonomies-tags, #colophon .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #colophon .tve_pg_row, #colophon .cc-grower .cc-window.cc-banner, .cc-grower #colophon .cc-window.cc-banner, #colophon .product-list__featured > .tcb-flex-row, #colophon .testimonials > .in, #colophon .wuot__container, #colophon .search #content #ais-wrapper, .search #content #colophon #ais-wrapper {
    padding-top: 1rem;
    padding-bottom: 0; }
    @media (min-width: 768px) {
      #colophon .container, #colophon .grid-wrapper, #colophon #post-taxonomies .post-taxonomies-categories, #post-taxonomies #colophon .post-taxonomies-categories,
      #colophon #post-taxonomies .post-taxonomies-tags, #post-taxonomies #colophon .post-taxonomies-tags, #colophon .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #colophon .tve_pg_row, #colophon .cc-grower .cc-window.cc-banner, .cc-grower #colophon .cc-window.cc-banner, #colophon .product-list__featured > .tcb-flex-row, #colophon .testimonials > .in, #colophon .wuot__container, #colophon .search #content #ais-wrapper, .search #content #colophon #ais-wrapper {
        padding-top: 0;
        display: flex; } }
    @media (min-width: 768px) {
      #colophon .container > *, #colophon .grid-wrapper > *, #colophon #post-taxonomies .post-taxonomies-categories > *, #post-taxonomies #colophon .post-taxonomies-categories > *, #colophon #post-taxonomies .post-taxonomies-tags > *, #post-taxonomies #colophon .post-taxonomies-tags > *, #colophon .stats-post-grid .tve_post_grid_wrapper .tve_pg_row > *, .stats-post-grid .tve_post_grid_wrapper #colophon .tve_pg_row > *, #colophon .cc-grower .cc-window.cc-banner > *, .cc-grower #colophon .cc-window.cc-banner > *, #colophon .product-list__featured > .tcb-flex-row > *, #colophon .testimonials > .in > *, #colophon .wuot__container > *, #colophon .search #content #ais-wrapper > *, .search #content #colophon #ais-wrapper > * {
        width: 50%; } }
  #colophon .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    text-align: left;
    padding-bottom: 1rem; }
    @media (min-width: 768px) {
      #colophon .menu {
        display: block;
        padding-bottom: 0; } }
    #colophon .menu:before {
      display: none; }
    #colophon .menu li {
      margin: 0;
      text-align: left; }
      @media (min-width: 768px) {
        #colophon .menu li {
          margin: 0 1rem 0 0; } }
    #colophon .menu a {
      padding: 0; }
  #colophon .copyright {
    text-align: left;
    opacity: 0.5;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 2rem; }
    @media (min-width: 768px) {
      #colophon .copyright {
        opacity: 1;
        border-top: none;
        text-align: right;
        flex-grow: 1;
        padding-top: 0;
        padding-bottom: 0; } }

#widget-area {
  color: #013945;
  background-color: #e8f0f5; }
  #widget-area .container, #widget-area .grid-wrapper, #widget-area #post-taxonomies .post-taxonomies-categories, #post-taxonomies #widget-area .post-taxonomies-categories,
  #widget-area #post-taxonomies .post-taxonomies-tags, #post-taxonomies #widget-area .post-taxonomies-tags, #widget-area .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #widget-area .tve_pg_row, #widget-area .cc-grower .cc-window.cc-banner, .cc-grower #widget-area .cc-window.cc-banner, #widget-area .product-list__featured > .tcb-flex-row, #widget-area .testimonials > .in, #widget-area .wuot__container, #widget-area .search #content #ais-wrapper, .search #content #widget-area #ais-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-row-gap: 10px; }
    @media (min-width: 768px) {
      #widget-area .container, #widget-area .grid-wrapper, #widget-area #post-taxonomies .post-taxonomies-categories, #post-taxonomies #widget-area .post-taxonomies-categories,
      #widget-area #post-taxonomies .post-taxonomies-tags, #post-taxonomies #widget-area .post-taxonomies-tags, #widget-area .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #widget-area .tve_pg_row, #widget-area .cc-grower .cc-window.cc-banner, .cc-grower #widget-area .cc-window.cc-banner, #widget-area .product-list__featured > .tcb-flex-row, #widget-area .testimonials > .in, #widget-area .wuot__container, #widget-area .search #content #ais-wrapper, .search #content #widget-area #ais-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 2fr;
        grid-template-rows: 1fr;
        grid-column-gap: 60px; } }
  #widget-area a:link, #widget-area a:visited, #widget-area a:hover, #widget-area a:active {
    color: #013945; }
  #widget-area .widget .widget-title {
    margin-bottom: 1rem;
    font-size: 1.5rem; }
  #widget-area .widget .menu li {
    border: none;
    text-align: left; }
    #widget-area .widget .menu li:hover {
      background-color: transparent; }
    #widget-area .widget .menu li a {
      padding: 0;
      text-decoration: none; }
      #widget-area .widget .menu li a:hover {
        background-color: transparent;
        text-decoration: underline; }
  #widget-area .widget address:last-of-type,
  #widget-area .widget p:last-of-type,
  #widget-area .widget ul:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0; }
  #widget-area .widget .social {
    margin-top: 1rem; }
  #widget-area .widget__container--one {
    grid-column: 1/3;
    grid-row: 1/2;
    font-size: 1.1rem; }
    @media (min-width: 768px) {
      #widget-area .widget__container--one {
        grid-row: 1/2;
        grid-column: 1/2; } }
  #widget-area .widget__container--two {
    grid-row: 2/3;
    grid-column: 1/2; }
    @media (min-width: 768px) {
      #widget-area .widget__container--two {
        grid-row: 1/2;
        grid-column: 2/3; } }
  #widget-area .widget__container--three {
    grid-row: 2/3;
    grid-column: 2/3; }
    @media (min-width: 768px) {
      #widget-area .widget__container--three {
        grid-row: 1/2;
        grid-column: 3/4; } }
  #widget-area .widget__container--four {
    grid-row: 3/4;
    grid-column: 1/3;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    font-size: 1.1rem; }
    @media (min-width: 768px) {
      #widget-area .widget__container--four {
        grid-row: 1/2;
        grid-column: 4/5;
        border-top: none;
        padding-top: 0; } }
    #widget-area .widget__container--four .widget-title {
      margin-bottom: 0;
      font-size: 1.5rem; }
  #widget-area .widget .social-media-links li {
    border: none; }
    #widget-area .widget .social-media-links li:hover {
      background: transparent; }
  #widget-area .widget .social-media-links a:hover {
    background-color: transparent; }
  #widget-area .widget .social-media-links a .fa:before {
    color: #639bcf; }
  #widget-area .widget .social-media-links a .fa-square:before {
    color: white; }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    #widget-area .widget.social-widget {
      width: 100%;
      display: flex;
      padding-top: 40px; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    #widget-area .widget.social-widget .widget-split {
      align-self: flex-end; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    #widget-area .widget.social-widget .widget-split .social {
      padding-left: 60px; } }

.site-footer .container, .site-footer .grid-wrapper, .site-footer #post-taxonomies .post-taxonomies-categories, #post-taxonomies .site-footer .post-taxonomies-categories,
.site-footer #post-taxonomies .post-taxonomies-tags, #post-taxonomies .site-footer .post-taxonomies-tags, .site-footer .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .site-footer .tve_pg_row, .site-footer .cc-grower .cc-window.cc-banner, .cc-grower .site-footer .cc-window.cc-banner, .site-footer .product-list__featured > .tcb-flex-row, .site-footer .testimonials > .in, .site-footer .wuot__container, .site-footer .search #content #ais-wrapper, .search #content .site-footer #ais-wrapper {
  max-width: 90rem; }
  @media (min-width: 768px) {
    .site-footer .container, .site-footer .grid-wrapper, .site-footer #post-taxonomies .post-taxonomies-categories, #post-taxonomies .site-footer .post-taxonomies-categories,
    .site-footer #post-taxonomies .post-taxonomies-tags, #post-taxonomies .site-footer .post-taxonomies-tags, .site-footer .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .site-footer .tve_pg_row, .site-footer .cc-grower .cc-window.cc-banner, .cc-grower .site-footer .cc-window.cc-banner, .site-footer .product-list__featured > .tcb-flex-row, .site-footer .testimonials > .in, .site-footer .wuot__container, .site-footer .search #content #ais-wrapper, .search #content .site-footer #ais-wrapper {
      text-align: left; }
      .site-footer .container .widget, .site-footer .grid-wrapper .widget, .site-footer #post-taxonomies .post-taxonomies-categories .widget, #post-taxonomies .site-footer .post-taxonomies-categories .widget, .site-footer #post-taxonomies .post-taxonomies-tags .widget, #post-taxonomies .site-footer .post-taxonomies-tags .widget, .site-footer .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .widget, .stats-post-grid .tve_post_grid_wrapper .site-footer .tve_pg_row .widget, .site-footer .cc-grower .cc-window.cc-banner .widget, .cc-grower .site-footer .cc-window.cc-banner .widget, .site-footer .product-list__featured > .tcb-flex-row .widget, .site-footer .testimonials > .in .widget, .site-footer .wuot__container .widget, .site-footer .search #content #ais-wrapper .widget, .search #content .site-footer #ais-wrapper .widget {
        margin-bottom: 2em; }
        .site-footer .container .widget span, .site-footer .grid-wrapper .widget span, .site-footer #post-taxonomies .post-taxonomies-categories .widget span, #post-taxonomies .site-footer .post-taxonomies-categories .widget span, .site-footer #post-taxonomies .post-taxonomies-tags .widget span, #post-taxonomies .site-footer .post-taxonomies-tags .widget span, .site-footer .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .widget span, .stats-post-grid .tve_post_grid_wrapper .site-footer .tve_pg_row .widget span, .site-footer .cc-grower .cc-window.cc-banner .widget span, .cc-grower .site-footer .cc-window.cc-banner .widget span, .site-footer .product-list__featured > .tcb-flex-row .widget span, .site-footer .testimonials > .in .widget span, .site-footer .wuot__container .widget span, .site-footer .search #content #ais-wrapper .widget span, .search #content .site-footer #ais-wrapper .widget span {
          display: block; }
        .site-footer .container .widget address, .site-footer .grid-wrapper .widget address, .site-footer #post-taxonomies .post-taxonomies-categories .widget address, #post-taxonomies .site-footer .post-taxonomies-categories .widget address, .site-footer #post-taxonomies .post-taxonomies-tags .widget address, #post-taxonomies .site-footer .post-taxonomies-tags .widget address, .site-footer .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .widget address, .stats-post-grid .tve_post_grid_wrapper .site-footer .tve_pg_row .widget address, .site-footer .cc-grower .cc-window.cc-banner .widget address, .cc-grower .site-footer .cc-window.cc-banner .widget address, .site-footer .product-list__featured > .tcb-flex-row .widget address, .site-footer .testimonials > .in .widget address, .site-footer .wuot__container .widget address, .site-footer .search #content #ais-wrapper .widget address, .search #content .site-footer #ais-wrapper .widget address {
          font-style: normal; } }

.site-footer a:link, .site-footer a:visited, .site-footer a:hover, .site-footer a:active {
  color: #013945; }

.logo-footer {
  padding: 0 0 1em 0;
  max-width: 145px;
  opacity: 0.7; }

.logo-box .preload-me {
  display: none; }

#masthead {
  display: none;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 20; }
  #masthead .container, #masthead .grid-wrapper, #masthead #post-taxonomies .post-taxonomies-categories, #post-taxonomies #masthead .post-taxonomies-categories,
  #masthead #post-taxonomies .post-taxonomies-tags, #post-taxonomies #masthead .post-taxonomies-tags, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row, #masthead .cc-grower .cc-window.cc-banner, .cc-grower #masthead .cc-window.cc-banner, #masthead .product-list__featured > .tcb-flex-row, #masthead .testimonials > .in, #masthead .wuot__container, #masthead .search #content #ais-wrapper, .search #content #masthead #ais-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center; }
    @media (min-width: 768px) {
      #masthead .container, #masthead .grid-wrapper, #masthead #post-taxonomies .post-taxonomies-categories, #post-taxonomies #masthead .post-taxonomies-categories,
      #masthead #post-taxonomies .post-taxonomies-tags, #post-taxonomies #masthead .post-taxonomies-tags, #masthead .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #masthead .tve_pg_row, #masthead .cc-grower .cc-window.cc-banner, .cc-grower #masthead .cc-window.cc-banner, #masthead .product-list__featured > .tcb-flex-row, #masthead .testimonials > .in, #masthead .wuot__container, #masthead .search #content #ais-wrapper, .search #content #masthead #ais-wrapper {
        padding-top: 0;
        padding-bottom: 0; } }
  @media (min-width: 768px) {
    #masthead {
      display: block;
      padding-top: 0;
      padding-bottom: 0; } }
  #site-wrapper #masthead {
    background-color: #efefef; }
    body.foobot-has-cover #site-wrapper #masthead {
      background-color: transparent;
      position: absolute; }
    #site-wrapper #masthead .flags_item a:link {
      color: #3b4f4b; }
    #site-wrapper #masthead .flags_item a {
      color: #3b4f4b; }
  body.page-template-full-width #site-wrapper #masthead {
    position: relative;
    background-color: #272827;
    color: white; }
    body.page-template-full-width #site-wrapper #masthead .h1, body.page-template-full-width #site-wrapper #masthead h1, body.page-template-full-width #site-wrapper #masthead .h1-reset, body.page-template-full-width #site-wrapper #masthead blockquote.fancy:before, body.page-template-full-width #site-wrapper #masthead .blockquote-fancy:before, body.page-template-full-width #site-wrapper #masthead .h2, body.page-template-full-width #site-wrapper #masthead h2, body.page-template-full-width #site-wrapper #masthead #comments #reply-title, #comments body.page-template-full-width #site-wrapper #masthead #reply-title, body.page-template-full-width #site-wrapper #masthead .h2-reset, body.page-template-full-width #site-wrapper #masthead .h3, body.page-template-full-width #site-wrapper #masthead h3, body.page-template-full-width #site-wrapper #masthead .h3-reset, body.page-template-full-width #site-wrapper #masthead .media-object .media-object-content header .entry-title, .media-object .media-object-content header body.page-template-full-width #site-wrapper #masthead .entry-title, body.page-template-full-width #site-wrapper #masthead .before-after-labels > *, body.page-template-full-width #site-wrapper #masthead .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly body.page-template-full-width #site-wrapper #masthead footer, body.page-template-full-width #site-wrapper #masthead .h4, body.page-template-full-width #site-wrapper #masthead h4, body.page-template-full-width #site-wrapper #masthead .h4-reset, body.page-template-full-width #site-wrapper #masthead blockquote.fancy, body.page-template-full-width #site-wrapper #masthead .h5, body.page-template-full-width #site-wrapper #masthead h5, body.page-template-full-width #site-wrapper #masthead .h5-reset, body.page-template-full-width #site-wrapper #masthead #sensors .accordion .tab label, #sensors .accordion .tab body.page-template-full-width #site-wrapper #masthead label, body.page-template-full-width #site-wrapper #masthead #sensors .accordion .tab table th, #sensors .accordion .tab table body.page-template-full-width #site-wrapper #masthead th, body.page-template-full-width #site-wrapper #masthead table #sensors .accordion .tab th, table #sensors .accordion .tab body.page-template-full-width #site-wrapper #masthead th, body.page-template-full-width #site-wrapper #masthead #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 body.page-template-full-width #site-wrapper #masthead .disclaimer, body.page-template-full-width #site-wrapper #masthead .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab body.page-template-full-width #site-wrapper #masthead .disclaimer, body.page-template-full-width #site-wrapper #masthead .h6, body.page-template-full-width #site-wrapper #masthead h6, body.page-template-full-width #site-wrapper #masthead .h6-reset, body.page-template-full-width #site-wrapper #masthead .widget-title {
      color: white; }
    body.page-template-full-width #site-wrapper #masthead a:link, body.page-template-full-width #site-wrapper #masthead a:visited {
      color: white; }
    body.page-template-full-width #site-wrapper #masthead a:hover {
      color: #fff;
      border-bottom-color: #fff; }
    body.page-template-full-width #site-wrapper #masthead a:active {
      color: #fff; }
  body.page-template-template__thrive-hero-section #site-wrapper #masthead {
    position: absolute;
    background-color: transparent; }
  body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead {
    color: white; }
    body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h1, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead h1, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h1-reset, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead blockquote.fancy:before, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .blockquote-fancy:before, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h2, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead h2, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead #comments #reply-title, #comments body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead #reply-title, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h2-reset, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h3, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead h3, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h3-reset, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .media-object .media-object-content header .entry-title, .media-object .media-object-content header body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .entry-title, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .before-after-labels > *, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead footer, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h4, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead h4, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h4-reset, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead blockquote.fancy, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h5, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead h5, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h5-reset, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead #sensors .accordion .tab label, #sensors .accordion .tab body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead label, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead #sensors .accordion .tab table th, #sensors .accordion .tab table body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead th, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead table #sensors .accordion .tab th, table #sensors .accordion .tab body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead th, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .disclaimer, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .disclaimer, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h6, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead h6, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .h6-reset, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead .widget-title {
      color: white; }
    body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead a:link, body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead a:visited {
      color: white; }
    body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead a:hover {
      color: #fff;
      border-bottom-color: #fff; }
    body.page-template-template__thrive-hero-section.foobot-header-color-light #site-wrapper #masthead a:active {
      color: #fff; }
  body.foobot-boxed #masthead {
    max-width: 1280px;
    left: 0;
    right: 0; }
  body.cover_dark_background_image #site-wrapper > #masthead {
    color: white; }
    body.cover_dark_background_image #site-wrapper > #masthead .h1, body.cover_dark_background_image #site-wrapper > #masthead h1, body.cover_dark_background_image #site-wrapper > #masthead .h1-reset, body.cover_dark_background_image #site-wrapper > #masthead blockquote.fancy:before, body.cover_dark_background_image #site-wrapper > #masthead .blockquote-fancy:before, body.cover_dark_background_image #site-wrapper > #masthead .h2, body.cover_dark_background_image #site-wrapper > #masthead h2, body.cover_dark_background_image #site-wrapper > #masthead #comments #reply-title, #comments body.cover_dark_background_image #site-wrapper > #masthead #reply-title, body.cover_dark_background_image #site-wrapper > #masthead .h2-reset, body.cover_dark_background_image #site-wrapper > #masthead .h3, body.cover_dark_background_image #site-wrapper > #masthead h3, body.cover_dark_background_image #site-wrapper > #masthead .h3-reset, body.cover_dark_background_image #site-wrapper > #masthead .media-object .media-object-content header .entry-title, .media-object .media-object-content header body.cover_dark_background_image #site-wrapper > #masthead .entry-title, body.cover_dark_background_image #site-wrapper > #masthead .before-after-labels > *, body.cover_dark_background_image #site-wrapper > #masthead .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly body.cover_dark_background_image #site-wrapper > #masthead footer, body.cover_dark_background_image #site-wrapper > #masthead .h4, body.cover_dark_background_image #site-wrapper > #masthead h4, body.cover_dark_background_image #site-wrapper > #masthead .h4-reset, body.cover_dark_background_image #site-wrapper > #masthead blockquote.fancy, body.cover_dark_background_image #site-wrapper > #masthead .h5, body.cover_dark_background_image #site-wrapper > #masthead h5, body.cover_dark_background_image #site-wrapper > #masthead .h5-reset, body.cover_dark_background_image #site-wrapper > #masthead #sensors .accordion .tab label, #sensors .accordion .tab body.cover_dark_background_image #site-wrapper > #masthead label, body.cover_dark_background_image #site-wrapper > #masthead #sensors .accordion .tab table th, #sensors .accordion .tab table body.cover_dark_background_image #site-wrapper > #masthead th, body.cover_dark_background_image #site-wrapper > #masthead table #sensors .accordion .tab th, table #sensors .accordion .tab body.cover_dark_background_image #site-wrapper > #masthead th, body.cover_dark_background_image #site-wrapper > #masthead #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 body.cover_dark_background_image #site-wrapper > #masthead .disclaimer, body.cover_dark_background_image #site-wrapper > #masthead .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab body.cover_dark_background_image #site-wrapper > #masthead .disclaimer, body.cover_dark_background_image #site-wrapper > #masthead .h6, body.cover_dark_background_image #site-wrapper > #masthead h6, body.cover_dark_background_image #site-wrapper > #masthead .h6-reset, body.cover_dark_background_image #site-wrapper > #masthead .widget-title {
      color: white; }
    body.cover_dark_background_image #site-wrapper > #masthead a:link, body.cover_dark_background_image #site-wrapper > #masthead a:visited {
      color: white; }
    body.cover_dark_background_image #site-wrapper > #masthead a:hover {
      color: #fff;
      border-bottom-color: #fff; }
    body.cover_dark_background_image #site-wrapper > #masthead a:active {
      color: #fff; }
    body.cover_dark_background_image #site-wrapper > #masthead .menu li.contact-button a {
      border-color: white; }
      body.cover_dark_background_image #site-wrapper > #masthead .menu li.contact-button a:hover {
        border-color: transparent;
        background-color: rgba(255, 255, 255, 0.2); }
  #masthead.headhesive--stick {
    background-color: #fff;
    box-shadow: 1px 1px 17px 2px rgba(0, 0, 0, 0.1); }
    #masthead.headhesive--stick .site-branding .site-logo svg .st0 {
      fill: #46525d !important; }
  #masthead .site-branding .site-logo {
    width: 130px;
    height: 30px; }
  #masthead .site-branding a {
    background-image: none;
    display: block;
    width: 130px;
    height: 30px; }
  #masthead .site-branding--minimal {
    padding-top: 5px;
    padding-bottom: 5px; }
  body.home #site-wrapper #masthead {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0; }
  #masthead.with-progress-bar {
    width: 100%;
    margin: 0; }
    #masthead.with-progress-bar .section, #masthead.with-progress-bar #post-taxonomies, #masthead.with-progress-bar .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid #masthead.with-progress-bar .tve_post_grid_wrapper, #masthead.with-progress-bar .cc-grower, #masthead.with-progress-bar .testimonials, #masthead.with-progress-bar .wuot, #masthead.with-progress-bar header.article-header {
      padding-top: 0;
      padding-bottom: 0; }
    #masthead.with-progress-bar progress {
      display: none; }
  body.single #masthead.headhesive progress {
    display: block; }
  #masthead .menu li.contact-button {
    padding: 7px 0; }
    #masthead .menu li.contact-button a:link, #masthead .menu li.contact-button a:visited {
      color: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(128, 127, 127, 0.5); }
    #masthead .menu li.contact-button a:hover, #masthead .menu li.contact-button a:active {
      color: white;
      background-color: #ff8000;
      border-color: #ff8000; }

#masthead-mobile {
  box-shadow: 1px 1px 17px 2px rgba(0, 0, 0, 0.1); }
  @media (min-width: 768px) {
    #masthead-mobile {
      display: none; } }
  #masthead-mobile.mh-head {
    background: #fff; }
    #masthead-mobile.mh-head .mh-text {
      padding: 5px; }
  #masthead-mobile a {
    background-image: none;
    display: block; }
  #masthead-mobile .hamburger-inner {
    color: #3b4f4b; }
  #masthead-mobile button.hamburger:focus {
    outline: none; }
  #masthead-mobile #search-toggle {
    text-decoration: none; }
    #masthead-mobile #search-toggle:before {
      font-size: 1.8rem;
      color: #3b4f4b; }

a#search-toggle {
  color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  margin: 0;
  cursor: pointer;
  background-image: none;
  text-decoration: none;
  width: auto;
  height: auto; }
  a#search-toggle:link, a#search-toggle:visited {
    color: rgba(0, 0, 0, 0.5);
    border-color: transparent; }
  a#search-toggle:hover, a#search-toggle:active {
    color: #ff8000;
    background: transparent; }
  a#search-toggle:before {
    font-family: 'FontAwesome';
    content: '\f002';
    display: table-cell;
    text-align: center;
    vertical-align: middle; }
  @media (min-width: 768px) {
    a#search-toggle {
      margin-left: 5px; } }

.site-header--minimal {
  display: block !important; }

#menu-main_menu button.custom_btn {
  color: #fff !important; }

.slick-slider.works-with {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; }
  .slick-slider.works-with li.slick-slide {
    width: 100px;
    opacity: 0;
    margin: 0 1rem;
    display: block;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
    @media (min-width: 768px) {
      .slick-slider.works-with li.slick-slide {
        width: 200px; } }
    @media (min-width: 1024px) {
      .slick-slider.works-with li.slick-slide {
        width: 240px; } }
    .slick-slider.works-with li.slick-slide.slick-active {
      opacity: 1; }
    .slick-slider.works-with li.slick-slide .works-with__logo {
      max-width: 240px; }
    .slick-slider.works-with li.slick-slide img {
      width: 100%;
      max-width: 350px; }
  .slick-slider.works-with .slick-list {
    width: 100%; }
  .slick-slider.works-with .slick-arrow {
    height: 50px;
    width: 50px; }
    @media (min-width: 768px) {
      .slick-slider.works-with .slick-arrow {
        height: 100px;
        width: 100px; } }
    .slick-slider.works-with .slick-arrow.next svg {
      transform: rotate(180deg); }
    .slick-slider.works-with .slick-arrow svg {
      height: 50px;
      width: 50px; }
      @media (min-width: 768px) {
        .slick-slider.works-with .slick-arrow svg {
          height: 75px;
          width: 75px; } }
      .slick-slider.works-with .slick-arrow svg path {
        fill: #46525d; }

.page-template-hvac-page .slick-slider .slick-arrow svg path {
  fill: #ddd; }

.page-template-features-page .airborn__slider .slick-slider .slick-slide {
  width: 320px; }
  @media (min-width: 768px) {
    .page-template-features-page .airborn__slider .slick-slider .slick-slide {
      width: 550px; } }

.page-template-features-page .airborn__slider .slick-slider .slick-active {
  opacity: 0.2;
  transition: all 0.7s linear; }
  .page-template-features-page .airborn__slider .slick-slider .slick-active.slick-center {
    opacity: 1; }

.page-template-features-page .airborn__slider .slick-slider .slick-list.draggable {
  padding: 0 !important; }

.page-template-features-page .airborn__slider .slick-slider .slick-arrow {
  position: absolute;
  z-index: 20;
  top: 0;
  bottom: 0; }
  .page-template-features-page .airborn__slider .slick-slider .slick-arrow:hover {
    cursor: pointer; }

.page-template-features-page .airborn__slider .slick-slider .slick-arrow img {
  width: 50px; }

.page-template-features-page .airborn__slider .slick-slider .slick-arrow.prev {
  left: 0px; }
  @media (min-width: 768px) {
    .page-template-features-page .airborn__slider .slick-slider .slick-arrow.prev {
      left: -50px; } }

.page-template-features-page .airborn__slider .slick-slider .slick-arrow.next {
  right: 0px; }
  @media (min-width: 768px) {
    .page-template-features-page .airborn__slider .slick-slider .slick-arrow.next {
      right: -50px; } }

.page-template-features-page .airborn__slider .slick-slider .svgcirclepoint:hover circle {
  opacity: 0.3; }
  .page-template-features-page .airborn__slider .slick-slider .svgcirclepoint:hover circle:last-of-type {
    opacity: 1; }

.page-template-features-page .airborn__slider .slick-slider .svgcirclepoint.orangecircle circle:first-of-type {
  fill: #ff6800 !important; }

.page-template-features-page .airborn__slider .slick-slider .svgcirclepoint.yellowcircle circle:first-of-type {
  fill: #ffca65 !important; }

.page-template-features-page .airborn__slider .slick-slider .svgcirclepoint.activefill.orangecircle circle:first-of-type {
  fill: #ff6800 !important; }

.page-template-features-page .airborn__slider .slick-slider .svgcirclepoint.activefill.yellowcircle circle:first-of-type {
  fill: #ffca65 !important; }

.page-template-features-page .airborn__slider .slick-slider .svgcirclepoint.activefill circle {
  opacity: 0.4; }
  .page-template-features-page .airborn__slider .slick-slider .svgcirclepoint.activefill circle:last-of-type {
    opacity: 1; }

.page-template-features-page .airborn__slider .slick-slider .activefill circle {
  fill: #fff !important; }

.page-template-features-page .airborn__slider .slick-slider path,
.page-template-features-page .airborn__slider .slick-slider circle,
.page-template-features-page .airborn__slider .slick-slider line {
  transition: all 0.2s linear; }

.page-template-features-page .airborn__slider .slick-slider text.st13 {
  font-family: "DIN2014-Regular", sans-serif; }

.page-template-features-page .airborn__slider .slick-slider .activeLine {
  stroke-opacity: 0.1 !important;
  fill-opacity: 0.1 !important; }

ul.works-with {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 50% 50%; }
  @media (min-width: 768px) {
    ul.works-with {
      display: block; } }
  ul.works-with .works-with__device {
    display: none; }
    @media (min-width: 768px) {
      ul.works-with .works-with__device {
        display: block; } }
  ul.works-with .works-with__logo {
    max-width: 240px;
    margin: 0 auto; }

.questions > .in {
  padding: 5% 0; }
  .questions > .in .section-header {
    padding: 0 5%; }

.questions .question {
  width: 100%; }
  @media (max-width: 610px) {
    .questions .question:last-of-type > .in {
      padding-bottom: 0; } }
  .questions .question > .in {
    display: flex;
    padding: 0 5%; }
    @media (max-width: 991px) {
      .questions .question > .in {
        padding-bottom: 5%;
        padding-top: 5%; } }
    @media (max-width: 610px) {
      .questions .question > .in {
        flex-wrap: wrap;
        padding-bottom: 8%; } }
  .questions .question__content {
    width: 50%;
    padding-left: 5rem;
    position: relative;
    z-index: 3; }
    @media (max-width: 610px) {
      .questions .question__content {
        width: 100%;
        padding-left: 0;
        order: 2; } }
    .questions .question__content > .in {
      display: flex;
      text-align: left;
      font-weight: 100;
      flex-direction: column;
      justify-content: center;
      height: 100%; }
    .questions .question__content p {
      font-size: 20px; }
      @media (max-width: 991px) {
        .questions .question__content p {
          font-size: 16px; } }
    .questions .question__content a {
      text-decoration: none;
      color: #f2922f;
      background: none; }
      .questions .question__content a:hover {
        color: #639bcf; }
    .questions .question__content h3 {
      font-size: 30px;
      font-weight: 300; }
      @media (max-width: 991px) {
        .questions .question__content h3 {
          font-size: 24px; } }
    .questions .question__content footer {
      display: block;
      width: 100%; }
  .questions .question__image {
    width: 50%;
    position: relative;
    z-index: 3; }
    @media (max-width: 610px) {
      .questions .question__image {
        order: 1;
        width: 100%; } }
    .questions .question__image > .in {
      display: flex;
      align-items: center;
      padding: 0 2rem; }
      @media (max-width: 610px) {
        .questions .question__image > .in {
          padding: 0 0 2rem 0; } }
    .questions .question__image img {
      max-width: 100%; }
  @media (max-width: 991px) {
    .questions .question--flip > .in {
      background: #f9f9f9; } }
  .questions .question--flip > .in .question__content {
    order: 1;
    padding-right: 5rem;
    padding-left: 0; }
    @media (max-width: 610px) {
      .questions .question--flip > .in .question__content {
        padding-right: 0;
        order: 2; } }
  .questions .question--flip > .in .question__image {
    order: 2; }
    @media (max-width: 610px) {
      .questions .question--flip > .in .question__image {
        order: 1; } }
  .questions .question--grey > .in {
    position: relative; }
    .questions .question--grey > .in:after {
      content: "";
      position: absolute;
      top: -20%;
      bottom: -10%;
      left: 0;
      right: 0;
      background-size: cover;
      background-position: center center; }
      @media (max-width: 1199px) {
        .questions .question--grey > .in:after {
          top: -10%; } }
      @media (max-width: 991px) {
        .questions .question--grey > .in:after {
          display: none; } }

.wpcf7 {
  max-width: 660px; }
  .wpcf7 input[type="text"], .wpcf7 textarea[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 textarea[type="email"],
  .wpcf7 textarea {
    background-color: #eaedf0;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 7px;
    border: none;
    width: 100%; }
  .wpcf7 select {
    padding: 1rem;
    color: #3b4f4b;
    font-size: 1.5rem;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 7px;
    border: none;
    width: 100%;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat, repeat;
    background-color: #eaedf0;
    background-position: right 1em top 50%, 0 0;
    background-size: 1rem auto, 100%; }
  .wpcf7 label, .wpcf7 table th, table .wpcf7 th, .wpcf7 .disclaimer {
    font-size: 1rem;
    color: #858585;
    width: 100%;
    display: block; }
    .wpcf7 label span, .wpcf7 table th span, table .wpcf7 th span, .wpcf7 .disclaimer span {
      margin-top: .5rem; }

.cc-grower {
  padding-top: 0;
  padding-bottom: 0;
  background: #2c3e50; }
  .cc-grower a {
    background-image: none; }
  .cc-grower .cc-window.cc-banner {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%; }
  .cc-grower .cc-message {
    text-align: left; }

#cover {
  background-image: url("assets/images/blue-cover-with-illustrations.png");
  background-size: cover; }
  #cover .cover-text {
    padding: 3rem 0; }
    .wf-loading #cover .cover-text {
      opacity: 0; }
    .wf-active #cover .cover-text {
      opacity: 1;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .wf-inactive #cover .cover-text {
      opacity: 1;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    #cover .cover-text h1, #cover .cover-text h2, #cover .cover-text #comments #reply-title, #comments #cover .cover-text #reply-title, #cover .cover-text h3, #cover .cover-text h4, #cover .cover-text h5 {
      color: white;
      font-weight: bold; }
      #cover .cover-text h1:last-child, #cover .cover-text h2:last-child, #cover .cover-text #comments #reply-title:last-child, #comments #cover .cover-text #reply-title:last-child, #cover .cover-text h3:last-child, #cover .cover-text h4:last-child, #cover .cover-text h5:last-child {
        margin-bottom: 0; }
    #cover .cover-text h1 {
      font-size: 60px;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        #cover .cover-text h1 {
          font-size: 48px; } }
      @media (max-width: 770px) {
        #cover .cover-text h1 {
          font-size: 36px; } }
      @media (max-width: 610px) {
        #cover .cover-text h1 {
          font-size: 28px; } }
    #cover .cover-text h2, #cover .cover-text #comments #reply-title, #comments #cover .cover-text #reply-title {
      font-size: 24px; }
      @media (max-width: 991px) {
        #cover .cover-text h2, #cover .cover-text #comments #reply-title, #comments #cover .cover-text #reply-title {
          font-size: 20px; } }
      @media (max-width: 770px) {
        #cover .cover-text h2, #cover .cover-text #comments #reply-title, #comments #cover .cover-text #reply-title {
          font-size: 18px; } }
  @media (min-width: 768px) {
    #cover .container, #cover .grid-wrapper, #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies #cover .post-taxonomies-categories,
    #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies #cover .post-taxonomies-tags, #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #cover .tve_pg_row, #cover .cc-grower .cc-window.cc-banner, .cc-grower #cover .cc-window.cc-banner, #cover .product-list__featured > .tcb-flex-row, #cover .testimonials > .in, #cover .wuot__container, #cover .search #content #ais-wrapper, .search #content #cover #ais-wrapper {
      display: block;
      text-align: center;
      max-width: 90rem; } }
  #cover .full-height-scroll-trigger {
    position: absolute;
    z-index: 2;
    background-image: none;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto; }
    #cover .full-height-scroll-trigger:after {
      font-family: "FontAwesome";
      content: "";
      display: block;
      margin-top: 5px; }
  @media (min-width: 768px) {
    #cover .equal-split-text {
      width: 100%; } }
  #cover .equal-split-image {
    min-height: 300px;
    background-image: url("assets/images/twenty20comp_f5be0cb0-6472-454c-98a2-2c9eeebb8272.jpg");
    background-size: cover;
    background-position: 0 0; }
    @media (min-width: 768px) {
      #cover .equal-split-image {
        order: 2; } }
  body.page-template-template__page__technology #cover {
    position: relative;
    color: white;
    background-image: none;
    position: relative;
    background-color: #73a5d4;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(5, auto);
    grid-template-areas: "header1 header1" "header2 header2" "button man-pointing-at-sky-left" "woman-pointing-at-sky-right man-pointing-at-sky-left"; }
    body.page-template-template__page__technology #cover .h1, body.page-template-template__page__technology #cover h1, body.page-template-template__page__technology #cover .h1-reset, body.page-template-template__page__technology #cover blockquote.fancy:before, body.page-template-template__page__technology #cover .blockquote-fancy:before, body.page-template-template__page__technology #cover .h2, body.page-template-template__page__technology #cover h2, body.page-template-template__page__technology #cover #comments #reply-title, #comments body.page-template-template__page__technology #cover #reply-title, body.page-template-template__page__technology #cover .h2-reset, body.page-template-template__page__technology #cover .h3, body.page-template-template__page__technology #cover h3, body.page-template-template__page__technology #cover .h3-reset, body.page-template-template__page__technology #cover .media-object .media-object-content header .entry-title, .media-object .media-object-content header body.page-template-template__page__technology #cover .entry-title, body.page-template-template__page__technology #cover .before-after-labels > *, body.page-template-template__page__technology #cover .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly body.page-template-template__page__technology #cover footer, body.page-template-template__page__technology #cover .h4, body.page-template-template__page__technology #cover h4, body.page-template-template__page__technology #cover .h4-reset, body.page-template-template__page__technology #cover blockquote.fancy, body.page-template-template__page__technology #cover .h5, body.page-template-template__page__technology #cover h5, body.page-template-template__page__technology #cover .h5-reset, body.page-template-template__page__technology #cover #sensors .accordion .tab label, #sensors .accordion .tab body.page-template-template__page__technology #cover label, body.page-template-template__page__technology #cover #sensors .accordion .tab table th, #sensors .accordion .tab table body.page-template-template__page__technology #cover th, body.page-template-template__page__technology #cover table #sensors .accordion .tab th, table #sensors .accordion .tab body.page-template-template__page__technology #cover th, body.page-template-template__page__technology #cover #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 body.page-template-template__page__technology #cover .disclaimer, body.page-template-template__page__technology #cover .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab body.page-template-template__page__technology #cover .disclaimer, body.page-template-template__page__technology #cover .h6, body.page-template-template__page__technology #cover h6, body.page-template-template__page__technology #cover .h6-reset, body.page-template-template__page__technology #cover .widget-title {
      color: white; }
    body.page-template-template__page__technology #cover a:link, body.page-template-template__page__technology #cover a:visited {
      color: white; }
    body.page-template-template__page__technology #cover a:hover {
      color: #fff;
      border-bottom-color: #fff; }
    body.page-template-template__page__technology #cover a:active {
      color: #fff; }
    body.page-template-template__page__technology #cover::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100' fill='rgb(99,155,207)' fill-opacity='1'%3E%3Cpolygon points='0,100 100,100 100,0'%3E%3C/polygon%3E%3C/svg%3E");
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      content: '';
      height: 100px;
      left: 0;
      position: absolute;
      right: 0;
      width: 100%;
      z-index: 1;
      bottom: 0; }
    @media (min-width: 480px) {
      body.page-template-template__page__technology #cover {
        grid-template-areas: "header1 header1" "header1 header1" "empty button man-pointing-at-sky-left" "woman-pointing-at-sky-right button man-pointing-at-sky-left" "woman-pointing-at-sky-right button man-pointing-at-sky-left"; } }
    @media (min-width: 768px) {
      body.page-template-template__page__technology #cover {
        grid-template-columns: repeat(5, 20%);
        grid-template-rows: repeat(4);
        grid-template-areas: "header1 header1 header1 header1 header1" "header2 header2 header2 header2 header2" "woman-pointing-at-sky-right man-pointing-at-sky-right button woman-pointing-at-sky-left man-pointing-at-sky-left" "woman-pointing-at-sky-right man-pointing-at-sky-right scroll woman-pointing-at-sky-left man-pointing-at-sky-left"; } }
    body.page-template-template__page__technology #cover h1:link,
    body.page-template-template__page__technology #cover h3:link,
    body.page-template-template__page__technology #cover a:link {
      background-image: none; }
    @media (min-width: 768px) {
      body.page-template-template__page__technology #cover h1,
      body.page-template-template__page__technology #cover h3,
      body.page-template-template__page__technology #cover a {
        text-align: center; } }
    body.page-template-template__page__technology #cover .character#woman-pointing-at-sky-left {
      position: relative;
      grid-area: woman-pointing-at-sky-left;
      display: none; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .character#woman-pointing-at-sky-left {
          display: block; } }
    body.page-template-template__page__technology #cover .character#man-pointing-at-sky-left {
      grid-area: man-pointing-at-sky-left; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .character#man-pointing-at-sky-left {
          padding: 18%; } }
    body.page-template-template__page__technology #cover .character#woman-pointing-at-sky-right {
      grid-area: woman-pointing-at-sky-right;
      padding: 9%; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .character#woman-pointing-at-sky-right {
          padding: 21%; } }
    body.page-template-template__page__technology #cover .character#man-pointing-at-sky-right {
      grid-area: man-pointing-at-sky-right;
      display: none; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .character#man-pointing-at-sky-right {
          display: block; } }
    body.page-template-template__page__technology #cover .container, body.page-template-template__page__technology #cover .grid-wrapper, body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-categories,
    body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-tags, body.page-template-template__page__technology #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cover .tve_pg_row, body.page-template-template__page__technology #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cover .cc-window.cc-banner, body.page-template-template__page__technology #cover .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cover .testimonials > .in, body.page-template-template__page__technology #cover .wuot__container, body.page-template-template__page__technology #cover .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cover #ais-wrapper {
      grid-area: header1;
      z-index: 2;
      padding-bottom: 1.5rem; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .container, body.page-template-template__page__technology #cover .grid-wrapper, body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-categories,
        body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-tags, body.page-template-template__page__technology #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cover .tve_pg_row, body.page-template-template__page__technology #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cover .cc-window.cc-banner, body.page-template-template__page__technology #cover .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cover .testimonials > .in, body.page-template-template__page__technology #cover .wuot__container, body.page-template-template__page__technology #cover .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cover #ais-wrapper {
          display: grid;
          align-items: center;
          text-align: center;
          max-width: 75rem; } }
    body.page-template-template__page__technology #cover .equal-split-text {
      margin-top: 0;
      position: relative;
      z-index: 10; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .equal-split-text {
          width: 100%; } }
    body.page-template-template__page__technology #cover .intro h1 {
      font-size: 1.7169856rem;
      margin-bottom: 1rem; }
      @media (min-width: 320px) {
        body.page-template-template__page__technology #cover .intro h1 {
          font-size: 1.991703296rem; } }
      @media (min-width: 360px) {
        body.page-template-template__page__technology #cover .intro h1 {
          font-size: 2.3103758234rem; } }
      @media (min-width: 390px) {
        body.page-template-template__page__technology #cover .intro h1 {
          font-size: 2.6800359551rem; } }
      @media (min-width: 430px) {
        body.page-template-template__page__technology #cover .intro h1 {
          font-size: 3.1088417079rem; } }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover .intro h1 {
          font-size: 3.2rem; } }
      @media (min-width: 1050px) {
        body.page-template-template__page__technology #cover .intro h1 {
          font-size: 4.2rem; } }
    body.page-template-template__page__technology #cover .intro span {
      grid-area: header1;
      animation-direction: alternate;
      animation-iteration-count: infinite;
      animation-duration: 11s;
      display: block;
      margin-bottom: 0; }
    body.page-template-template__page__technology #cover #tech-hero-scroll-trigger {
      display: none;
      text-align: center; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cover #tech-hero-scroll-trigger {
          display: block;
          grid-area: scroll; } }

@keyframes make-visible {
  0% {
    opacity: 1; }
  50% {
    opacity: 1; } }

@keyframes make-disappear {
  0% {
    opacity: 0.2; }
  50% {
    opacity: 1; } }

@keyframes fading-star {
  0% {
    opacity: 0.65; }
  80% {
    opacity: 0; } }
    body.page-template-template__page__technology #cover .twinkle {
      -webkit-animation: twinkly 1s alternate infinite;
      -moz-animation: twinkly 1s alternate infinite;
      -ms-animation: twinkly 1s alternate infinite;
      animation: twinkly 1s alternate infinite; }
    body.page-template-template__page__technology #cover #particles-js-techpage {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      animation-name: fading-star;
      animation-direction: alternate;
      animation-iteration-count: infinite;
      animation-duration: 15s; }
    body.page-template-template__page__technology #cover h1 {
      font-size: 3.1088417079rem;
      font-weight: 300;
      margin-bottom: 20px; }
      @media (max-width: 1020px) {
        body.page-template-template__page__technology #cover h1 {
          font-size: 50px; } }
      @media (max-width: 800px) {
        body.page-template-template__page__technology #cover h1 {
          font-size: 46px; } }
      @media (max-width: 770px) {
        body.page-template-template__page__technology #cover h1 {
          font-size: 38px; } }
      body.page-template-template__page__technology #cover h1 strong {
        font-weight: 700; }
    body.page-template-template__page__technology #cover h3 {
      margin-bottom: 20px;
      font-size: 48px;
      font-weight: 500; }
      @media (max-width: 1020px) {
        body.page-template-template__page__technology #cover h3 {
          font-size: 36px; } }
      @media (max-width: 800px) {
        body.page-template-template__page__technology #cover h3 {
          font-size: 32px; } }
      @media (max-width: 770px) {
        body.page-template-template__page__technology #cover h3 {
          font-size: 28px; } }
    @media (max-width: 610px) {
      body.page-template-template__page__technology #cover {
        min-height: 100vh; } }
    @media (min-width: 320px) {
      body.page-template-template__page__technology #cover .container, body.page-template-template__page__technology #cover .grid-wrapper, body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-categories,
      body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-tags, body.page-template-template__page__technology #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cover .tve_pg_row, body.page-template-template__page__technology #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cover .cc-window.cc-banner, body.page-template-template__page__technology #cover .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cover .testimonials > .in, body.page-template-template__page__technology #cover .wuot__container, body.page-template-template__page__technology #cover .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cover #ais-wrapper {
        padding-top: 3em; } }
    @media (min-width: 480px) {
      body.page-template-template__page__technology #cover .container, body.page-template-template__page__technology #cover .grid-wrapper, body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-categories,
      body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-tags, body.page-template-template__page__technology #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cover .tve_pg_row, body.page-template-template__page__technology #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cover .cc-window.cc-banner, body.page-template-template__page__technology #cover .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cover .testimonials > .in, body.page-template-template__page__technology #cover .wuot__container, body.page-template-template__page__technology #cover .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cover #ais-wrapper {
        padding-top: 5em; } }
    @media (min-width: 768px) {
      body.page-template-template__page__technology #cover {
        padding-top: 7em; }
        body.page-template-template__page__technology #cover .container, body.page-template-template__page__technology #cover .grid-wrapper, body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-categories,
        body.page-template-template__page__technology #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cover .post-taxonomies-tags, body.page-template-template__page__technology #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cover .tve_pg_row, body.page-template-template__page__technology #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cover .cc-window.cc-banner, body.page-template-template__page__technology #cover .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cover .testimonials > .in, body.page-template-template__page__technology #cover .wuot__container, body.page-template-template__page__technology #cover .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cover #ais-wrapper {
          padding-top: 0; } }
  body.page-template-landing-page_adwords #cover {
    background-image: url("assets/images/twenty20comp_f5be0cb0-6472-454c-98a2-2c9eeebb8272.jpg");
    background-position: 0 0; }
    @media (max-width: 991px) {
      body.page-template-landing-page_adwords #cover {
        background-image: url("assets/images/twenty20comp_f5be0cb0-6472-454c-98a2-2c9eeebb82722.jpg"); } }
    @media (max-width: 580px) {
      body.page-template-landing-page_adwords #cover {
        background-image: url("assets/images/twenty20comp_f5be0cb0-6472-454c-98a2-2c9eeebb827222.jpg"); } }
    @media (min-width: 768px) {
      body.page-template-landing-page_adwords #cover {
        min-height: 800px; } }
  body.page-template-template__hvac-manufacturers #cover,
  body.page-template-hvac-page #cover,
  body.post-type-archive-hvac_pro_blog #cover {
    min-height: 0;
    background-image: none;
    background-color: #dee3e7;
    background-image: url(assets/images/waves-transparent-blue.png), url(assets/images/waves-transparent-orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100% 100%, 0 0; }
    @media (min-width: 768px) {
      body.page-template-template__hvac-manufacturers #cover .container, body.page-template-template__hvac-manufacturers #cover .grid-wrapper, body.page-template-template__hvac-manufacturers #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__hvac-manufacturers #cover .post-taxonomies-categories,
      body.page-template-template__hvac-manufacturers #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__hvac-manufacturers #cover .post-taxonomies-tags, body.page-template-template__hvac-manufacturers #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__hvac-manufacturers #cover .tve_pg_row, body.page-template-template__hvac-manufacturers #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__hvac-manufacturers #cover .cc-window.cc-banner, body.page-template-template__hvac-manufacturers #cover .product-list__featured > .tcb-flex-row, body.page-template-template__hvac-manufacturers #cover .testimonials > .in, body.page-template-template__hvac-manufacturers #cover .wuot__container, body.page-template-template__hvac-manufacturers #cover .search #content #ais-wrapper, .search #content body.page-template-template__hvac-manufacturers #cover #ais-wrapper,
      body.page-template-hvac-page #cover .container,
      body.page-template-hvac-page #cover .grid-wrapper,
      body.page-template-hvac-page #cover #post-taxonomies .post-taxonomies-categories,
      #post-taxonomies body.page-template-hvac-page #cover .post-taxonomies-categories,
      body.page-template-hvac-page #cover #post-taxonomies .post-taxonomies-tags,
      #post-taxonomies body.page-template-hvac-page #cover .post-taxonomies-tags,
      body.page-template-hvac-page #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row,
      .stats-post-grid .tve_post_grid_wrapper body.page-template-hvac-page #cover .tve_pg_row,
      body.page-template-hvac-page #cover .cc-grower .cc-window.cc-banner,
      .cc-grower body.page-template-hvac-page #cover .cc-window.cc-banner,
      body.page-template-hvac-page #cover .product-list__featured > .tcb-flex-row,
      body.page-template-hvac-page #cover .testimonials > .in,
      body.page-template-hvac-page #cover .wuot__container,
      body.page-template-hvac-page #cover .search #content #ais-wrapper,
      .search #content body.page-template-hvac-page #cover #ais-wrapper,
      body.post-type-archive-hvac_pro_blog #cover .container,
      body.post-type-archive-hvac_pro_blog #cover .grid-wrapper,
      body.post-type-archive-hvac_pro_blog #cover #post-taxonomies .post-taxonomies-categories,
      #post-taxonomies body.post-type-archive-hvac_pro_blog #cover .post-taxonomies-categories,
      body.post-type-archive-hvac_pro_blog #cover #post-taxonomies .post-taxonomies-tags,
      #post-taxonomies body.post-type-archive-hvac_pro_blog #cover .post-taxonomies-tags,
      body.post-type-archive-hvac_pro_blog #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row,
      .stats-post-grid .tve_post_grid_wrapper body.post-type-archive-hvac_pro_blog #cover .tve_pg_row,
      body.post-type-archive-hvac_pro_blog #cover .cc-grower .cc-window.cc-banner,
      .cc-grower body.post-type-archive-hvac_pro_blog #cover .cc-window.cc-banner,
      body.post-type-archive-hvac_pro_blog #cover .product-list__featured > .tcb-flex-row,
      body.post-type-archive-hvac_pro_blog #cover .testimonials > .in,
      body.post-type-archive-hvac_pro_blog #cover .wuot__container,
      body.post-type-archive-hvac_pro_blog #cover .search #content #ais-wrapper,
      .search #content body.post-type-archive-hvac_pro_blog #cover #ais-wrapper {
        display: grid;
        grid-template-columns: 40% 1fr;
        text-align: left; } }
    body.page-template-template__hvac-manufacturers #cover .cover-text,
    body.page-template-hvac-page #cover .cover-text,
    body.post-type-archive-hvac_pro_blog #cover .cover-text {
      justify-items: start;
      align-self: center;
      padding: 3rem 0; }
      body.page-template-template__hvac-manufacturers #cover .cover-text h1,
      body.page-template-hvac-page #cover .cover-text h1,
      body.post-type-archive-hvac_pro_blog #cover .cover-text h1 {
        font-family: "DIN2014-Regular", sans-serif;
        line-height: 1.1;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06rem;
        color: #ff8000;
        margin-bottom: 2rem; }
        @media (min-width: 768px) {
          body.page-template-template__hvac-manufacturers #cover .cover-text h1,
          body.page-template-hvac-page #cover .cover-text h1,
          body.post-type-archive-hvac_pro_blog #cover .cover-text h1 {
            font-size: 4rem; } }
        @media (min-width: 768px) {
          body.page-template-template__hvac-manufacturers #cover .cover-text h1 span,
          body.page-template-hvac-page #cover .cover-text h1 span,
          body.post-type-archive-hvac_pro_blog #cover .cover-text h1 span {
            color: #639bcf;
            display: block;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06rem;
            margin-bottom: 2rem; } }
      body.page-template-template__hvac-manufacturers #cover .cover-text h3,
      body.page-template-hvac-page #cover .cover-text h3,
      body.post-type-archive-hvac_pro_blog #cover .cover-text h3 {
        font-weight: bold; }
      body.page-template-template__hvac-manufacturers #cover .cover-text .button, body.page-template-template__hvac-manufacturers #cover .cover-text input[type="submit"], body.page-template-template__hvac-manufacturers #cover .cover-text textarea[type="submit"], body.page-template-template__hvac-manufacturers #cover .cover-text input[type="reset"], body.page-template-template__hvac-manufacturers #cover .cover-text textarea[type="reset"],
      body.page-template-hvac-page #cover .cover-text .button,
      body.page-template-hvac-page #cover .cover-text input[type="submit"],
      body.page-template-hvac-page #cover .cover-text textarea[type="submit"],
      body.page-template-hvac-page #cover .cover-text input[type="reset"],
      body.page-template-hvac-page #cover .cover-text textarea[type="reset"],
      body.post-type-archive-hvac_pro_blog #cover .cover-text .button,
      body.post-type-archive-hvac_pro_blog #cover .cover-text input[type="submit"],
      body.post-type-archive-hvac_pro_blog #cover .cover-text textarea[type="submit"],
      body.post-type-archive-hvac_pro_blog #cover .cover-text input[type="reset"],
      body.post-type-archive-hvac_pro_blog #cover .cover-text textarea[type="reset"] {
        margin-top: 2rem; }
    body.page-template-template__hvac-manufacturers #cover .cover-image,
    body.page-template-hvac-page #cover .cover-image,
    body.post-type-archive-hvac_pro_blog #cover .cover-image {
      text-align: center; }
      @media (min-width: 768px) {
        body.page-template-template__hvac-manufacturers #cover .cover-image img,
        body.page-template-hvac-page #cover .cover-image img,
        body.post-type-archive-hvac_pro_blog #cover .cover-image img {
          width: 85%; } }
  body.post-type-archive-hvac_pro_blog #cover h3 {
    color: #8ab4db; }
  body.page-template-template__hvac-manufacturers #cover .cover-text {
    justify-items: start;
    align-self: center; }
    body.page-template-template__hvac-manufacturers #cover .cover-text h5 {
      margin-bottom: 0; }
  @media (min-width: 768px) {
    body.page-template-template__hvac-manufacturers #cover .container, body.page-template-template__hvac-manufacturers #cover .grid-wrapper, body.page-template-template__hvac-manufacturers #cover #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__hvac-manufacturers #cover .post-taxonomies-categories,
    body.page-template-template__hvac-manufacturers #cover #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__hvac-manufacturers #cover .post-taxonomies-tags, body.page-template-template__hvac-manufacturers #cover .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__hvac-manufacturers #cover .tve_pg_row, body.page-template-template__hvac-manufacturers #cover .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__hvac-manufacturers #cover .cc-window.cc-banner, body.page-template-template__hvac-manufacturers #cover .product-list__featured > .tcb-flex-row, body.page-template-template__hvac-manufacturers #cover .testimonials > .in, body.page-template-template__hvac-manufacturers #cover .wuot__container, body.page-template-template__hvac-manufacturers #cover .search #content #ais-wrapper, .search #content body.page-template-template__hvac-manufacturers #cover #ais-wrapper {
      display: grid;
      grid-template-columns: 40% 1fr;
      text-align: left; } }
  body.home #cover {
    min-height: 0; }
    body.home #cover h2, body.home #cover #comments #reply-title, #comments body.home #cover #reply-title {
      margin-bottom: 1rem; }
    .wf-loading body.home #cover .hero-col-1 {
      opacity: 0; }
    .wf-active body.home #cover .hero-col-1 {
      opacity: 1;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .wf-inactive body.home #cover .hero-col-1 {
      opacity: 1;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  #cover.hero-product-page {
    text-align: center;
    min-height: 0;
    background-image: none;
    background-color: #dedede;
    background-image: url(assets/images/waves-transparent-blue.png), url(assets/images/waves-transparent-orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100% 100%, 0 0; }
    #cover.hero-product-page .container, #cover.hero-product-page .grid-wrapper, #cover.hero-product-page #post-taxonomies .post-taxonomies-categories, #post-taxonomies #cover.hero-product-page .post-taxonomies-categories,
    #cover.hero-product-page #post-taxonomies .post-taxonomies-tags, #post-taxonomies #cover.hero-product-page .post-taxonomies-tags, #cover.hero-product-page .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #cover.hero-product-page .tve_pg_row, #cover.hero-product-page .cc-grower .cc-window.cc-banner, .cc-grower #cover.hero-product-page .cc-window.cc-banner, #cover.hero-product-page .product-list__featured > .tcb-flex-row, #cover.hero-product-page .testimonials > .in, #cover.hero-product-page .wuot__container, #cover.hero-product-page .search #content #ais-wrapper, .search #content #cover.hero-product-page #ais-wrapper {
      display: grid;
      grid-template-columns: 3fr 40px 2fr 40px 3fr;
      align-items: center; }
      @media (min-width: 768px) {
        #cover.hero-product-page .container, #cover.hero-product-page .grid-wrapper, #cover.hero-product-page #post-taxonomies .post-taxonomies-categories, #post-taxonomies #cover.hero-product-page .post-taxonomies-categories,
        #cover.hero-product-page #post-taxonomies .post-taxonomies-tags, #post-taxonomies #cover.hero-product-page .post-taxonomies-tags, #cover.hero-product-page .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #cover.hero-product-page .tve_pg_row, #cover.hero-product-page .cc-grower .cc-window.cc-banner, .cc-grower #cover.hero-product-page .cc-window.cc-banner, #cover.hero-product-page .product-list__featured > .tcb-flex-row, #cover.hero-product-page .testimonials > .in, #cover.hero-product-page .wuot__container, #cover.hero-product-page .search #content #ais-wrapper, .search #content #cover.hero-product-page #ais-wrapper {
          text-align: left; } }
    #cover.hero-product-page .flex-inline {
      display: inline-flex; }
    #cover.hero-product-page .cover-text {
      justify-items: start;
      align-self: center;
      grid-row: 1;
      grid-column-start: 1;
      grid-column-end: 6;
      padding: 3rem 0; }
      @media (min-width: 768px) {
        #cover.hero-product-page .cover-text {
          grid-column-start: 1;
          grid-column-end: 3; } }
      #cover.hero-product-page .cover-text h1 {
        font-family: "DIN2014-Regular", sans-serif;
        line-height: 1.1;
        font-size: 3rem;
        font-weight: 500;
        color: #3b4f4b;
        margin-bottom: 2rem; }
        @media (min-width: 768px) {
          #cover.hero-product-page .cover-text h1 {
            font-size: 4rem; } }
        @media (min-width: 768px) {
          #cover.hero-product-page .cover-text h1 span {
            color: #3b4f4b;
            display: block;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06rem;
            margin-bottom: 2rem; } }
      #cover.hero-product-page .cover-text h3 {
        font-weight: 500;
        color: #3b4f4b; }
    #cover.hero-product-page .cover-image {
      text-align: center; }
      @media (min-width: 768px) {
        #cover.hero-product-page .cover-image img {
          width: 85%; } }
      #cover.hero-product-page .cover-image-family {
        align-self: center;
        grid-column-start: 2;
        grid-column-end: 6;
        grid-row: 2; }
        @media (min-width: 768px) {
          #cover.hero-product-page .cover-image-family {
            grid-column-start: 4;
            grid-column-end: 6;
            grid-row: 1; } }
      #cover.hero-product-page .cover-image-foobot {
        align-self: center;
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row: 2; }
        @media (min-width: 768px) {
          #cover.hero-product-page .cover-image-foobot {
            grid-column-start: 2;
            grid-column-end: 5;
            grid-row: 1; } }
    #cover.hero-product-page .button, #cover.hero-product-page input[type="submit"], #cover.hero-product-page textarea[type="submit"], #cover.hero-product-page input[type="reset"], #cover.hero-product-page textarea[type="reset"] {
      padding: 1rem; }
      #cover.hero-product-page .button.ghost, #cover.hero-product-page input.ghost[type="submit"], #cover.hero-product-page textarea.ghost[type="submit"], #cover.hero-product-page input.ghost[type="reset"], #cover.hero-product-page textarea.ghost[type="reset"] {
        color: #3b4f4b !important;
        border-color: #3b4f4b !important; }
    #cover.hero-product-page .store-locator__button {
      font-size: 1.276rem;
      padding: 1rem; }
      #cover.hero-product-page .store-locator__button label, #cover.hero-product-page .store-locator__button table th, table #cover.hero-product-page .store-locator__button th, #cover.hero-product-page .store-locator__button .wpcf7 .disclaimer, .wpcf7 #cover.hero-product-page .store-locator__button .disclaimer {
        margin: 0; }
    #cover.hero-product-page .store-locator__links {
      width: 300px;
      left: 0;
      transform: none; }

.banner .intro {
  text-align: center;
  max-width: 33rem; }

#cta-partner-1 {
  color: white;
  background: linear-gradient(to right, #ff8000 0%, #ff8c1a 100%); }
  #cta-partner-1 .h1, #cta-partner-1 h1, #cta-partner-1 .h1-reset, #cta-partner-1 blockquote.fancy:before, #cta-partner-1 .blockquote-fancy:before, #cta-partner-1 .h2, #cta-partner-1 h2, #cta-partner-1 #comments #reply-title, #comments #cta-partner-1 #reply-title, #cta-partner-1 .h2-reset, #cta-partner-1 .h3, #cta-partner-1 h3, #cta-partner-1 .h3-reset, #cta-partner-1 .media-object .media-object-content header .entry-title, .media-object .media-object-content header #cta-partner-1 .entry-title, #cta-partner-1 .before-after-labels > *, #cta-partner-1 .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #cta-partner-1 footer, #cta-partner-1 .h4, #cta-partner-1 h4, #cta-partner-1 .h4-reset, #cta-partner-1 blockquote.fancy, #cta-partner-1 .h5, #cta-partner-1 h5, #cta-partner-1 .h5-reset, #cta-partner-1 #sensors .accordion .tab label, #sensors .accordion .tab #cta-partner-1 label, #cta-partner-1 #sensors .accordion .tab table th, #sensors .accordion .tab table #cta-partner-1 th, #cta-partner-1 table #sensors .accordion .tab th, table #sensors .accordion .tab #cta-partner-1 th, #cta-partner-1 #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #cta-partner-1 .disclaimer, #cta-partner-1 .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #cta-partner-1 .disclaimer, #cta-partner-1 .h6, #cta-partner-1 h6, #cta-partner-1 .h6-reset, #cta-partner-1 .widget-title {
    color: white; }
  #cta-partner-1 a:link, #cta-partner-1 a:visited {
    color: white; }
  #cta-partner-1 a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #cta-partner-1 a:active {
    color: #fff; }
  #cta-partner-1.alt {
    background: #639bcf; }
    #cta-partner-1.alt .button.ghost, #cta-partner-1.alt input.ghost[type="submit"], #cta-partner-1.alt textarea.ghost[type="submit"], #cta-partner-1.alt input.ghost[type="reset"], #cta-partner-1.alt textarea.ghost[type="reset"] {
      color: #fff !important;
      border-color: #fff; }
      #cta-partner-1.alt .button.ghost:hover, #cta-partner-1.alt input.ghost:hover[type="submit"], #cta-partner-1.alt textarea.ghost:hover[type="submit"], #cta-partner-1.alt input.ghost:hover[type="reset"], #cta-partner-1.alt textarea.ghost:hover[type="reset"] {
        background: #fff;
        color: #639bcf !important;
        cursor: pointer; }
  @media (min-width: 1024px) {
    #cta-partner-1 .section-title {
      margin: 0 1rem 0 0;
      display: inline-block; } }

#cta-leverage {
  background-color: #e7e7e7; }
  #cta-leverage img {
    max-width: 50%; }
  #cta-leverage .button, #cta-leverage input[type="submit"], #cta-leverage textarea[type="submit"], #cta-leverage input[type="reset"], #cta-leverage textarea[type="reset"] {
    /* Mixin needs to overrule other   
		/* Important required to overrule mixin */
    color: #fff;
    background: #ff8000;
    border: none; }
    #cta-leverage .button:hover, #cta-leverage input:hover[type="submit"], #cta-leverage textarea:hover[type="submit"], #cta-leverage input:hover[type="reset"], #cta-leverage textarea:hover[type="reset"] {
      background: #e67300;
      cursor: pointer;
      border: none; }
  #cta-leverage .media-object-container {
    text-align: left; }
    #cta-leverage .media-object-container .media-object-media {
      text-align: center; }

.ebook {
  background-color: #3e6589; }
  @media (min-width: 1280px) {
    .ebook {
      background-image: url(assets/images/woman-meditating-with-foobot.png);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: right -110% bottom 20px; }
      .ebook > .tve-page-section-in > .thrv-columns > .tcb-flex-row {
        padding-right: 532px; } }
  @media (min-width: 1350px) {
    .ebook {
      background-position: right -90% bottom 20px; } }
  @media (min-width: 1450px) {
    .ebook {
      background-position: right -60% bottom 20px; } }
  @media (min-width: 1500px) {
    .ebook {
      background-position: right -50% bottom 20px; } }
  @media (min-width: 1600px) {
    .ebook {
      background-position: right -40% bottom 20px; } }
  @media (min-width: 1700px) {
    .ebook {
      background-position: right -30% bottom 20px; } }
  @media (min-width: 1800px) {
    .ebook {
      background-position: right -20% bottom 20px; } }
  .ebook .thrv_wrapper {
    margin: 0;
    padding: 0;
    /*
		&.thrv-columns {
			@extend .section;
			.tcb-flex-row {
				@extend .container;
			}
		}
		*/ }
    .ebook .thrv_wrapper .tcb-flex-row {
      display: block;
      padding: 1em 5%; }
      @media (min-width: 768px) {
        .ebook .thrv_wrapper .tcb-flex-row {
          display: flex; } }
      .ebook .thrv_wrapper .tcb-flex-row .tcb-flex-col {
        text-align: center;
        max-width: 100%; }
        @media (min-width: 768px) {
          .ebook .thrv_wrapper .tcb-flex-row .tcb-flex-col {
            max-width: 50%;
            text-align: left; } }
        .ebook .thrv_wrapper .tcb-flex-row .tcb-flex-col .tve_image_caption {
          margin: 0 auto 2rem auto; }
          @media (min-width: 768px) {
            .ebook .thrv_wrapper .tcb-flex-row .tcb-flex-col .tve_image_caption {
              margin: 0; } }
        .ebook .thrv_wrapper .tcb-flex-row .tcb-flex-col .thrive_leads_shortcode {
          margin: 0 auto;
          padding: 3rem 0;
          float: none;
          max-width: 100%;
          width: 100%; }
          @media (min-width: 768px) {
            .ebook .thrv_wrapper .tcb-flex-row .tcb-flex-col .thrive_leads_shortcode {
              margin: 0; } }
  .ebook .thrv-leads-form-box.thrv_wrapper {
    padding: 0; }
  .ebook .tve_lg_input_container button {
    margin-top: 0; }

.eu-funding {
  background-color: #d8e6f3;
  color: #3b4f4b;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.1rem; }
  .eu-funding .container, .eu-funding .grid-wrapper, .eu-funding #post-taxonomies .post-taxonomies-categories, #post-taxonomies .eu-funding .post-taxonomies-categories,
  .eu-funding #post-taxonomies .post-taxonomies-tags, #post-taxonomies .eu-funding .post-taxonomies-tags, .eu-funding .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .eu-funding .tve_pg_row, .eu-funding .cc-grower .cc-window.cc-banner, .cc-grower .eu-funding .cc-window.cc-banner, .eu-funding .product-list__featured > .tcb-flex-row, .eu-funding .testimonials > .in, .eu-funding .wuot__container, .eu-funding .search #content #ais-wrapper, .search #content .eu-funding #ais-wrapper {
    display: flex;
    flex-direction: row;
    justify-self: center;
    align-items: flex-start; }
    @media (min-width: 768px) {
      .eu-funding .container, .eu-funding .grid-wrapper, .eu-funding #post-taxonomies .post-taxonomies-categories, #post-taxonomies .eu-funding .post-taxonomies-categories,
      .eu-funding #post-taxonomies .post-taxonomies-tags, #post-taxonomies .eu-funding .post-taxonomies-tags, .eu-funding .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .eu-funding .tve_pg_row, .eu-funding .cc-grower .cc-window.cc-banner, .cc-grower .eu-funding .cc-window.cc-banner, .eu-funding .product-list__featured > .tcb-flex-row, .eu-funding .testimonials > .in, .eu-funding .wuot__container, .eu-funding .search #content #ais-wrapper, .search #content .eu-funding #ais-wrapper {
        align-items: center; } }
  .eu-funding__logo {
    width: 100px;
    margin-right: 1rem;
    flex: 0 0 100px; }
    .eu-funding__logo svg, .eu-funding__logo svg rect {
      background-color: #3c82c3;
      max-width: 100%;
      height: auto; }

#as-featured-in {
  padding-top: 1rem;
  padding-bottom: 0rem;
  text-align: center;
  color: white;
  background-color: #46525d; }
  #as-featured-in .h1, #as-featured-in h1, #as-featured-in .h1-reset, #as-featured-in blockquote.fancy:before, #as-featured-in .blockquote-fancy:before, #as-featured-in .h2, #as-featured-in h2, #as-featured-in #comments #reply-title, #comments #as-featured-in #reply-title, #as-featured-in .h2-reset, #as-featured-in .h3, #as-featured-in h3, #as-featured-in .h3-reset, #as-featured-in .media-object .media-object-content header .entry-title, .media-object .media-object-content header #as-featured-in .entry-title, #as-featured-in .before-after-labels > *, #as-featured-in .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #as-featured-in footer, #as-featured-in .h4, #as-featured-in h4, #as-featured-in .h4-reset, #as-featured-in blockquote.fancy, #as-featured-in .h5, #as-featured-in h5, #as-featured-in .h5-reset, #as-featured-in #sensors .accordion .tab label, #sensors .accordion .tab #as-featured-in label, #as-featured-in #sensors .accordion .tab table th, #sensors .accordion .tab table #as-featured-in th, #as-featured-in table #sensors .accordion .tab th, table #sensors .accordion .tab #as-featured-in th, #as-featured-in #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #as-featured-in .disclaimer, #as-featured-in .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #as-featured-in .disclaimer, #as-featured-in .h6, #as-featured-in h6, #as-featured-in .h6-reset, #as-featured-in .widget-title {
    color: white; }
  #as-featured-in a:link, #as-featured-in a:visited {
    color: white; }
  #as-featured-in a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #as-featured-in a:active {
    color: #fff; }
  #as-featured-in header {
    margin: 0; }
    #as-featured-in header h3 {
      font-size: 1.276rem;
      margin: 0;
      opacity: 0.5; }
  #as-featured-in ul {
    display: grid;
    list-style-type: none;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(2, 1fr); }
    #as-featured-in ul:before {
      display: none; }
    @media (min-width: 768px) {
      #as-featured-in ul {
        grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1280px) {
      #as-featured-in ul {
        grid-template-columns: repeat(6, 1fr); } }
  #as-featured-in .logo {
    justify-self: center;
    /* &-cbs {
        background-image: url($cbs-image);
        width: $cbs-width;
        height: $cbs-height;
        background-position: $cbs-offset-x $cbs-offset-y;
      }
      &-bbc {
        background-image: url($bbc-image);
        width: $bbc-width;
        height: $bbc-height;
        background-position: $bbc-offset-x $bbc-offset-y;
      }
      &-digitaltrends {
        background-image: url($digitaltrends-image);
        width: $digitaltrends-width;
        height: $digitaltrends-height;
        background-position: $digitaltrends-offset-x $digitaltrends-offset-y;
      }
      &-fabric {
        background-image: url($fabric-image);
        width: $fabric-width;
        height: $fabric-height;
        background-position: $fabric-offset-x $fabric-offset-y;
      }
      &-htd {
        background-image: url($htd-image);
        width: $htd-width;
        height: $htd-height;
        background-position: $htd-offset-x $htd-offset-y;
      }
      &-sitepoint {
        background-image: url($sitepoint-image);
        width: $sitepoint-width;
        height: $sitepoint-height;
        background-position: $sitepoint-offset-x $sitepoint-offset-y;
      }*/ }

.as-featured-in-logos .thrv_wrapper.tve_image_caption {
  height: 40px;
  display: flex;
  align-items: center; }
  @media (min-width: 768px) {
    .as-featured-in-logos .thrv_wrapper.tve_image_caption {
      height: 60px; } }

@media (min-width: 768px) {
  .product-list__featured > .tcb-flex-row > .tcb-flex-col {
    width: 50% !important; } }

.product-list__featured > .tcb-flex-row > .tcb-flex-col > .tcb-col {
  background-color: #cfcfcf !important;
  background-image: #cfcfcf !important;
  background-size: 0, 0 !important;
  background-position: 0 150%, 50% 50% !important;
  min-height: auto !important; }
  .product-list__featured > .tcb-flex-row > .tcb-flex-col > .tcb-col .tve_empty_dropzone {
    min-height: auto !important; }
  @media (min-width: 768px) {
    .product-list__featured > .tcb-flex-row > .tcb-flex-col > .tcb-col {
      background-image: url("assets/images/devices-foobot/zeppelin2.png") !important;
      background-color: transparent;
      background-size: contain, auto !important;
      background-position: bottom right, 50% 50% !important;
      min-height: 575px !important; } }

.product-list__featured > .tcb-flex-row > .tcb-flex-col:last-child > .tcb-col {
  background-color: #97a4b0 !important; }
  @media (min-width: 768px) {
    .product-list__featured > .tcb-flex-row > .tcb-flex-col:last-child > .tcb-col {
      background-image: url("assets/images/icb-rotated-color.png") !important;
      background-color: transparent;
      background-size: contain, auto !important;
      background-position: bottom right, 50% 50% !important;
      min-height: 575px !important; } }

progress {
  /* Positioning */
  position: fixed;
  left: 0;
  bottom: 0;
  /* Dimensions */
  width: 100%;
  height: .25em;
  /* Reset the apperance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Get rid of the default border in Firefox/Opera. */
  border: none;
  /* For Firefox/IE10+ */
  background-color: transparent;
  /* For IE10+, color of the progress bar */
  color: #73a5d4; }

progress::-webkit-progress-bar {
  background-color: transparent; }

#progressBar::-webkit-progress-value {
  background-color: #73a5d4; }

#progressBar::-moz-progress-bar {
  background-color: #73a5d4; }

.progress-container {
  width: 100%;
  background-color: transparent;
  position: fixed;
  bottom: 0;
  left: 0;
  height: .25em;
  display: block; }

.progress-bar {
  background-color: #73a5d4;
  width: 50%;
  display: block;
  height: inherit; }

.thrv_wrapper .resources-promo {
  box-sizing: border-box; }

.resources-promo__wrapper {
  display: grid;
  width: 100%;
  max-width: 90rem; }
  @media (min-width: 480px) {
    .resources-promo__wrapper {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 1fr);
      grid-row-gap: 10px; } }
  @media (min-width: 991px) {
    .resources-promo__wrapper {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 1fr);
      grid-row-gap: 0; } }

.resources-promo a {
  background: none;
  /* Remove underline effect */ }

.resources-promo__primary a {
  display: block;
  /* Wrap div in link */ }

.resources-promo__primary.resources-promo__text {
  background-color: #f4cb89; }

.resources-promo__image {
  background: #c1d3e0;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media (min-width: 480px) {
    .resources-promo__image {
      background: linear-gradient(to right, #c1d3e0 80%, #dedede 80%); } }
  .resources-promo__image.resources-promo__primary {
    background-color: transparent;
    background-size: cover;
    background-postion: top left;
    background-image: url("assets/images/Asthmatic-Child-because-of-indoor-air-quality2-small.jpg");
    min-height: 200px; }
    @media (min-width: 480px) {
      .resources-promo__image.resources-promo__primary img {
        display: none; } }
    @media (min-width: 480px) and (max-width: 991px) {
      .resources-promo__image.resources-promo__primary {
        background-image: linear-gradient(to right, transparent 80%, #f4cb89 80%), url(assets/images/Asthmatic-Child-because-of-indoor-air-quality2-small.jpg); } }
    @media (min-width: 991px) {
      .resources-promo__image.resources-promo__primary {
        min-height: 0;
        grid-column: 1/3;
        grid-row: 1/2;
        margin-right: 5px; } }
  @media (min-width: 480px) {
    .resources-promo__image.resources-promo__secondary {
      grid-column: 2;
      grid-row: 2/3;
      background: linear-gradient(to left, #c1d3e0 80%, #82a9c5 80%); } }
  @media (min-width: 991px) {
    .resources-promo__image.resources-promo__secondary {
      grid-column: 4/5;
      grid-row: 1/2; } }
  .resources-promo__image.resources-promo__tertiary {
    padding: 5px; }
    @media (min-width: 991px) {
      .resources-promo__image.resources-promo__tertiary {
        grid-column: 3/4;
        grid-row: 2/3;
        margin-left: 5px; } }
  .resources-promo__image a {
    display: block; }
  .resources-promo__image img {
    object-fit: contain;
    object-position: right top; }

.resources-promo__footer {
  font-size: 0.88rem !important;
  color: #2d5b6f;
  font-size: 1.1rem; }
  .resources-promo__footer a {
    background-image: none; }
    .resources-promo__footer a:after {
      font-family: 'FontAwesome';
      content: '\f0da';
      transition: all 0.2s ease-in-out;
      text-align: right;
      display: inline-block;
      opacity: .6;
      padding-left: 7px; }

.resources-promo__text {
  color: #3c4f48;
  font-weight: 300;
  background-color: #83a9c5;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem; }
  @media (min-width: 480px) {
    .resources-promo__text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-bottom: 0; } }
  @media (min-width: 991px) {
    .resources-promo__text.resources-promo__primary {
      grid-column: 1/3;
      grid-row: 2/3;
      margin-right: 5px; } }
  @media (min-width: 480px) {
    .resources-promo__text.resources-promo__secondary {
      grid-column: 1;
      grid-row: 2/3; } }
  @media (min-width: 991px) {
    .resources-promo__text.resources-promo__secondary {
      grid-column: 3/4;
      grid-row: 1/2;
      margin-left: 5px; } }
  .resources-promo__text.resources-promo__tertiary {
    background-color: #dedede; }
    @media (min-width: 991px) {
      .resources-promo__text.resources-promo__tertiary {
        grid-column: 4/5;
        grid-row: 2/3; } }

.resources-promo__header {
  font-weight: bold;
  font-size: 1.48016rem;
  font-family: "DIN2014-DemiBold", "DIN2014-Regular", sans-serif, sans-serif; }

@media (min-width: 480px) {
  .resources-promo .section-header {
    display: none; } }

.slick-slide img {
  height: auto; }

ul.social-media-links {
  text-align: left; }

.stats {
  text-align: center;
  color: #73a5d4;
  background-color: #e7f8fb;
  background-position: 0 0; }
  @media (min-width: 768px) {
    .stats {
      padding-top: 3rem;
      padding-bottom: 3rem; } }
  @media (min-width: 768px) {
    .stats .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, auto);
      grid-gap: 30px 20px;
      justify-items: stretch;
      align-items: stretch;
      grid-auto-flow: column;
      text-align: center; } }
  .stats__content {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.7169856rem;
    padding: 3rem 2rem 5rem;
    background-color: #ff8c1a; }
    .stats__content:nth-of-type(5) {
      background-color: #3e7e83; }
    .stats__content:nth-of-type(3) {
      background-color: #e69d00; }
    .stats__content span {
      display: block;
      margin-bottom: 2rem;
      font-size: 0.77rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold; }
  .stats__source {
    margin-bottom: 2rem;
    font-size: 0.77rem;
    align-self: start;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    opacity: 0.8; }
  .thrv_wrapper .stats {
    box-sizing: border-box; }
  .stats .section-header h2, .stats .section-header #comments #reply-title, #comments .stats .section-header #reply-title {
    font-weight: bold;
    margin-bottom: 3rem;
    color: #588f9a; }

.testimonials {
  background: #e8f0f5; }
  .testimonials__quotes > .in {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    @media (min-width: 991px) {
      .testimonials__quotes > .in {
        justify-content: flex-start;
        flex-wrap: nowrap; } }
  .testimonials__title {
    margin-bottom: 6rem; }
    @media (min-width: 991px) {
      .testimonials__title {
        margin-bottom: 7rem; } }
  .testimonials .testimonial {
    padding: 2rem 3%;
    width: 100%;
    margin: 0 5% 6em 0;
    border-radius: 10px;
    position: relative;
    background: white; }
    @media (min-width: 991px) {
      .testimonials .testimonial {
        width: 30%;
        margin: 0 5% 0 0; } }
    .testimonials .testimonial > .in {
      position: relative;
      z-index: 1; }
    .testimonials .testimonial:nth-of-type(3n) {
      margin-bottom: 1.4em; }
      @media (min-width: 991px) {
        .testimonials .testimonial:nth-of-type(3n) {
          margin-right: 0;
          margin-bottom: 0; } }
    .testimonials .testimonial__image {
      display: flex;
      justify-content: center;
      margin-top: -67px;
      margin-bottom: 2rem; }
      .testimonials .testimonial__image > .in {
        margin: 0 30%;
        border-radius: 100%;
        overflow: hidden;
        position: relative; }
      .testimonials .testimonial__image img {
        position: relative;
        z-index: 1;
        border-radius: 100%; }
    .testimonials .testimonial__quote > .in {
      text-align: center;
      font-size: 1.48016rem;
      margin-bottom: 2rem; }
    .testimonials .testimonial__quote:before {
      display: block;
      text-align: center;
      margin: 1rem auto;
      opacity: 0.3; }
    .testimonials .testimonial__author {
      color: #3b4f4b;
      text-align: center;
      font-size: 1.276rem; }
      .testimonials .testimonial__author--title {
        font-size: 1.1rem; }

.thrv_tvo_display_testimonials p {
  font-size: 2em; }

.thrv_tvo_display_testimonials .tvo-testimonial-quote {
  display: none; }

.tvo-default-template.tve_green .thrlider-nav .thrlider-active .thrlider-navItem-inner {
  color: #5fc2c9; }

.wuot {
  box-sizing: border-box !important; }
  @media (min-width: 1024px) {
    .wuot__container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 1fr 50px 1fr 1fr 1fr; } }
  .wuot__intro {
    margin: 0 auto 4rem; }
    @media (min-width: 768px) {
      .wuot__intro {
        text-align: center;
        max-width: 500px; } }
    @media (min-width: 1024px) {
      .wuot__intro {
        text-align: left;
        grid-row: 1/3;
        grid-column: 1/2; } }
    @media (min-width: 1280px) {
      .wuot__intro {
        margin-left: 100px;
        align-self: flex-end; } }
    .wuot__intro h2, .wuot__intro #comments #reply-title, #comments .wuot__intro #reply-title {
      line-height: 1.1;
      margin-bottom: 1rem; }
  .wuot__item {
    margin-bottom: 4rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }
    @media (min-width: 768px) {
      .wuot__item {
        display: grid;
        grid-template-columns: 2fr 20px 1fr;
        grid-template-rows: 30% auto auto auto auto 1fr; } }
    @media (min-width: 1280px) {
      .wuot__item {
        grid-template-rows: 60% auto auto auto auto 1fr; } }
    .wuot__item--real-estate {
      background-image: url("assets/images/tech_2/wuot/WUOT2-1-back.png"); }
      @media (min-width: 768px) {
        .wuot__item--real-estate {
          grid-row: 1/4;
          grid-column: 2/4; } }
      .wuot__item--real-estate .wuot__item__image {
        max-width: 376px; }
        @media (min-width: 768px) {
          .wuot__item--real-estate .wuot__item__image {
            align-self: end; } }
    .wuot__item--hr {
      background-image: url("assets/images/tech_2/wuot/WUOT2-2-back.png"); }
      @media (min-width: 768px) {
        .wuot__item--hr {
          grid-row: 4/6;
          grid-column: 1/3; } }
      .wuot__item--hr .wuot__item__image {
        max-width: 360px; }
        @media (min-width: 768px) {
          .wuot__item--hr .wuot__item__image {
            align-self: end; } }
    .wuot__item--hvac {
      background-image: url("assets/images/tech_2/wuot/WUOT2-3-back.png"); }
      @media (min-width: 768px) {
        .wuot__item--hvac {
          grid-row: 6/8;
          grid-column: 1/4;
          grid-template-rows: auto auto auto auto auto 1fr; } }
      @media (min-width: 1280px) {
        .wuot__item--hvac {
          grid-template-rows: auto auto auto auto auto 1fr;
          grid-column: 2/4; } }
      .wuot__item--hvac .wuot__item__image {
        max-width: 460px; }
        @media (min-width: 768px) {
          .wuot__item--hvac .wuot__item__image {
            align-self: end; } }
    .wuot__item > * {
      z-index: 2; }
    .wuot__item__title {
      margin: 0;
      padding: 0;
      font-family: "DIN2014-DemiBold"; }
      @media (min-width: 768px) {
        .wuot__item__title {
          grid-row: 2/3;
          grid-column: 2/4; } }
    .wuot__item__subtitle {
      font-family: "DIN2014-DemiBold";
      font-size: 0.95rem;
      padding-bottom: 1rem; }
      @media (min-width: 768px) {
        .wuot__item__subtitle {
          grid-row: 3/4;
          grid-column: 2/4; } }
    .wuot__item__tag {
      padding-bottom: 1rem; }
      @media (min-width: 768px) {
        .wuot__item__tag {
          grid-column: 2/4;
          grid-row: 4/5; } }
      .wuot__item__tag span {
        font-size: 0.95rem;
        display: inline;
        border-radius: 3px;
        padding: 5px 10px;
        color: white;
        background-color: #3b4f4b; }
    .wuot__item__image {
      margin-bottom: 2rem;
      max-width: 500px;
      z-index: 1; }
      @media (min-width: 768px) {
        .wuot__item__image {
          grid-column: 1/3;
          grid-row: 1/7;
          justify-self: end; } }
    .wuot__item__subitems {
      list-style-type: none;
      margin: 0 !important;
      padding: 0 !important; }
      @media (min-width: 768px) {
        .wuot__item__subitems {
          grid-row: 5/6;
          grid-column: 2/4; } }
      .wuot__item__subitems header {
        margin: 0;
        padding: 0;
        font-family: "DIN2014-DemiBold";
        line-height: 1.1; }
      .wuot__item__subitems li {
        margin-bottom: 1rem; }
      .wuot__item__subitems p {
        font-size: 0.95rem;
        line-height: 1.25;
        margin: 0;
        padding: 0; }
      .wuot__item__subitems:before {
        content: unset; }
    .wuot__item__more {
      font-size: 1rem;
      list-style-type: none;
      margin: 0 !important;
      padding: 0 !important; }
      @media (min-width: 768px) {
        .wuot__item__more {
          grid-row: 6/7;
          grid-column: 2/4; } }
      .wuot__item__more li {
        display: inline; }
        .wuot__item__more li:after {
          display: inline-block;
          content: "|";
          padding: 0 8px; }
        .wuot__item__more li:last-of-type:after {
          content: ""; }
      .wuot__item__more:before {
        content: unset; }
      .wuot__item__more a:link, .wuot__item__more a:visited {
        color: #ff8000;
        text-decoration: none;
        font-family: "DIN2014-DemiBold"; }

.section--xray {
  background-image: linear-gradient(#f6f6f6, #f6f6f6);
  background-image: url("assets/images/tech_2/hero/tech-hero-bg.svg");
  background-color: #f6f6f6;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100px 50px; }
  .section--xray .container, .section--xray .grid-wrapper, .section--xray #post-taxonomies .post-taxonomies-categories, #post-taxonomies .section--xray .post-taxonomies-categories,
  .section--xray #post-taxonomies .post-taxonomies-tags, #post-taxonomies .section--xray .post-taxonomies-tags, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row, .section--xray .cc-grower .cc-window.cc-banner, .cc-grower .section--xray .cc-window.cc-banner, .section--xray .product-list__featured > .tcb-flex-row, .section--xray .testimonials > .in, .section--xray .wuot__container, .section--xray .search #content #ais-wrapper, .search #content .section--xray #ais-wrapper {
    margin-left: 0; }
    @media (min-width: 768px) {
      .section--xray .container, .section--xray .grid-wrapper, .section--xray #post-taxonomies .post-taxonomies-categories, #post-taxonomies .section--xray .post-taxonomies-categories,
      .section--xray #post-taxonomies .post-taxonomies-tags, #post-taxonomies .section--xray .post-taxonomies-tags, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row, .section--xray .cc-grower .cc-window.cc-banner, .cc-grower .section--xray .cc-window.cc-banner, .section--xray .product-list__featured > .tcb-flex-row, .section--xray .testimonials > .in, .section--xray .wuot__container, .section--xray .search #content #ais-wrapper, .search #content .section--xray #ais-wrapper {
        display: flex;
        align-items: stretch; } }
    .section--xray .container .intro, .section--xray .grid-wrapper .intro, .section--xray #post-taxonomies .post-taxonomies-categories .intro, #post-taxonomies .section--xray .post-taxonomies-categories .intro, .section--xray #post-taxonomies .post-taxonomies-tags .intro, #post-taxonomies .section--xray .post-taxonomies-tags .intro, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro, .section--xray .cc-grower .cc-window.cc-banner .intro, .cc-grower .section--xray .cc-window.cc-banner .intro, .section--xray .product-list__featured > .tcb-flex-row .intro, .section--xray .testimonials > .in .intro, .section--xray .wuot__container .intro, .section--xray .search #content #ais-wrapper .intro, .search #content .section--xray #ais-wrapper .intro {
      z-index: 1;
      position: relative; }
      @media (min-width: 768px) {
        .section--xray .container .intro, .section--xray .grid-wrapper .intro, .section--xray #post-taxonomies .post-taxonomies-categories .intro, #post-taxonomies .section--xray .post-taxonomies-categories .intro, .section--xray #post-taxonomies .post-taxonomies-tags .intro, #post-taxonomies .section--xray .post-taxonomies-tags .intro, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro, .section--xray .cc-grower .cc-window.cc-banner .intro, .cc-grower .section--xray .cc-window.cc-banner .intro, .section--xray .product-list__featured > .tcb-flex-row .intro, .section--xray .testimonials > .in .intro, .section--xray .wuot__container .intro, .section--xray .search #content #ais-wrapper .intro, .search #content .section--xray #ais-wrapper .intro {
          padding: 5em 0;
          max-width: 50%;
          max-width: 28em;
          width: 33.3%; } }
      .section--xray .container .intro h1, .section--xray .grid-wrapper .intro h1, .section--xray #post-taxonomies .post-taxonomies-categories .intro h1, #post-taxonomies .section--xray .post-taxonomies-categories .intro h1, .section--xray #post-taxonomies .post-taxonomies-tags .intro h1, #post-taxonomies .section--xray .post-taxonomies-tags .intro h1, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro h1, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro h1, .section--xray .cc-grower .cc-window.cc-banner .intro h1, .cc-grower .section--xray .cc-window.cc-banner .intro h1, .section--xray .product-list__featured > .tcb-flex-row .intro h1, .section--xray .testimonials > .in .intro h1, .section--xray .wuot__container .intro h1, .section--xray .search #content #ais-wrapper .intro h1, .search #content .section--xray #ais-wrapper .intro h1 {
        color: #013945;
        font-size: 40px;
        line-height: 1.2em;
        margin-bottom: 0;
        padding-bottom: 30px; }
        .section--xray .container .intro h1 span, .section--xray .grid-wrapper .intro h1 span, .section--xray #post-taxonomies .post-taxonomies-categories .intro h1 span, #post-taxonomies .section--xray .post-taxonomies-categories .intro h1 span, .section--xray #post-taxonomies .post-taxonomies-tags .intro h1 span, #post-taxonomies .section--xray .post-taxonomies-tags .intro h1 span, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro h1 span, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro h1 span, .section--xray .cc-grower .cc-window.cc-banner .intro h1 span, .cc-grower .section--xray .cc-window.cc-banner .intro h1 span, .section--xray .product-list__featured > .tcb-flex-row .intro h1 span, .section--xray .testimonials > .in .intro h1 span, .section--xray .wuot__container .intro h1 span, .section--xray .search #content #ais-wrapper .intro h1 span, .search #content .section--xray #ais-wrapper .intro h1 span {
          display: block; }
          .section--xray .container .intro h1 span b, .section--xray .grid-wrapper .intro h1 span b, .section--xray #post-taxonomies .post-taxonomies-categories .intro h1 span b, #post-taxonomies .section--xray .post-taxonomies-categories .intro h1 span b, .section--xray #post-taxonomies .post-taxonomies-tags .intro h1 span b, #post-taxonomies .section--xray .post-taxonomies-tags .intro h1 span b, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro h1 span b, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro h1 span b, .section--xray .cc-grower .cc-window.cc-banner .intro h1 span b, .cc-grower .section--xray .cc-window.cc-banner .intro h1 span b, .section--xray .product-list__featured > .tcb-flex-row .intro h1 span b, .section--xray .testimonials > .in .intro h1 span b, .section--xray .wuot__container .intro h1 span b, .section--xray .search #content #ais-wrapper .intro h1 span b, .search #content .section--xray #ais-wrapper .intro h1 span b {
            color: #ff8000; }
      .section--xray .container .intro p, .section--xray .grid-wrapper .intro p, .section--xray #post-taxonomies .post-taxonomies-categories .intro p, #post-taxonomies .section--xray .post-taxonomies-categories .intro p, .section--xray #post-taxonomies .post-taxonomies-tags .intro p, #post-taxonomies .section--xray .post-taxonomies-tags .intro p, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro p, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro p, .section--xray .cc-grower .cc-window.cc-banner .intro p, .cc-grower .section--xray .cc-window.cc-banner .intro p, .section--xray .product-list__featured > .tcb-flex-row .intro p, .section--xray .testimonials > .in .intro p, .section--xray .wuot__container .intro p, .section--xray .search #content #ais-wrapper .intro p, .search #content .section--xray #ais-wrapper .intro p {
        font-size: 20px;
        color: #273746;
        line-height: 1.4em; }
      .section--xray .container .intro h2, .section--xray .grid-wrapper .intro h2, .section--xray #post-taxonomies .post-taxonomies-categories .intro h2, #post-taxonomies .section--xray .post-taxonomies-categories .intro h2, .section--xray #post-taxonomies .post-taxonomies-tags .intro h2, #post-taxonomies .section--xray .post-taxonomies-tags .intro h2, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro h2, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro h2, .section--xray .cc-grower .cc-window.cc-banner .intro h2, .cc-grower .section--xray .cc-window.cc-banner .intro h2, .section--xray .product-list__featured > .tcb-flex-row .intro h2, .section--xray .testimonials > .in .intro h2, .section--xray .wuot__container .intro h2, .section--xray .search #content #ais-wrapper .intro h2, .search #content .section--xray #ais-wrapper .intro h2, .section--xray .container .intro #comments #reply-title, #comments .section--xray .container .intro #reply-title, .section--xray .grid-wrapper .intro #comments #reply-title, #comments .section--xray .grid-wrapper .intro #reply-title, .section--xray #post-taxonomies .post-taxonomies-categories .intro #comments #reply-title, #comments .section--xray #post-taxonomies .post-taxonomies-categories .intro #reply-title, #post-taxonomies .section--xray .post-taxonomies-categories .intro #comments #reply-title, #comments #post-taxonomies .section--xray .post-taxonomies-categories .intro #reply-title, .section--xray #post-taxonomies .post-taxonomies-tags .intro #comments #reply-title, #comments .section--xray #post-taxonomies .post-taxonomies-tags .intro #reply-title, #post-taxonomies .section--xray .post-taxonomies-tags .intro #comments #reply-title, #comments #post-taxonomies .section--xray .post-taxonomies-tags .intro #reply-title, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro #comments #reply-title, #comments .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro #reply-title, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro #comments #reply-title, #comments .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro #reply-title, .section--xray .cc-grower .cc-window.cc-banner .intro #comments #reply-title, #comments .section--xray .cc-grower .cc-window.cc-banner .intro #reply-title, .cc-grower .section--xray .cc-window.cc-banner .intro #comments #reply-title, #comments .cc-grower .section--xray .cc-window.cc-banner .intro #reply-title, .section--xray .product-list__featured > .tcb-flex-row .intro #comments #reply-title, #comments .section--xray .product-list__featured > .tcb-flex-row .intro #reply-title, .section--xray .testimonials > .in .intro #comments #reply-title, #comments .section--xray .testimonials > .in .intro #reply-title, .section--xray .wuot__container .intro #comments #reply-title, #comments .section--xray .wuot__container .intro #reply-title, .section--xray .search #content #ais-wrapper .intro #comments #reply-title, #comments .section--xray .search #content #ais-wrapper .intro #reply-title, .search #content .section--xray #ais-wrapper .intro #comments #reply-title, #comments .search #content .section--xray #ais-wrapper .intro #reply-title {
        max-width: 28em;
        font-size: 24px;
        margin-bottom: 0; }
      .section--xray .container .intro h3, .section--xray .grid-wrapper .intro h3, .section--xray #post-taxonomies .post-taxonomies-categories .intro h3, #post-taxonomies .section--xray .post-taxonomies-categories .intro h3, .section--xray #post-taxonomies .post-taxonomies-tags .intro h3, #post-taxonomies .section--xray .post-taxonomies-tags .intro h3, .section--xray .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .intro h3, .stats-post-grid .tve_post_grid_wrapper .section--xray .tve_pg_row .intro h3, .section--xray .cc-grower .cc-window.cc-banner .intro h3, .cc-grower .section--xray .cc-window.cc-banner .intro h3, .section--xray .product-list__featured > .tcb-flex-row .intro h3, .section--xray .testimonials > .in .intro h3, .section--xray .wuot__container .intro h3, .section--xray .search #content #ais-wrapper .intro h3, .search #content .section--xray #ais-wrapper .intro h3 {
        font-size: 20px;
        color: #273746; }
  .section--xray .svg-container {
    position: relative;
    height: 200px;
    width: 100%; }
    @media (min-width: 768px) {
      .section--xray .svg-container {
        position: absolute;
        top: 0;
        height: 100%; } }
  .section--xray svg.xray-svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: -55px;
    margin-left: -52px; }
    .section--xray svg.xray-svg--polluted image {
      filter: grayscale(100%); }
      .section--xray svg.xray-svg--polluted image.particle {
        animation-name: particlesFloat;
        animation-duration: 5s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        width: 20px;
        height: 20px; }
        @media (min-width: 390px) {
          .section--xray svg.xray-svg--polluted image.particle {
            transform: scale(0.55); } }
        @media (min-width: 768px) {
          .section--xray svg.xray-svg--polluted image.particle {
            transform: scale(0.55); } }
        @media (min-width: 1024px) {
          .section--xray svg.xray-svg--polluted image.particle {
            transform: scale(0.75); } }
        @media (min-width: 1280px) {
          .section--xray svg.xray-svg--polluted image.particle {
            transform: scale(0.99); } }
        @media (min-width: 768px) {
          .section--xray svg.xray-svg--polluted image.particle {
            width: 30px;
            height: 30px; } }
        @media (min-width: 1280px) {
          .section--xray svg.xray-svg--polluted image.particle {
            width: 40px;
            height: 40px; } }
        .section--xray svg.xray-svg--polluted image.particle--small {
          width: 11px;
          height: 11px; }
          @media (min-width: 768px) {
            .section--xray svg.xray-svg--polluted image.particle--small {
              width: 22px;
              height: 22px; } }
          @media (min-width: 1280px) {
            .section--xray svg.xray-svg--polluted image.particle--small {
              width: 33px;
              height: 33px; } }
        .section--xray svg.xray-svg--polluted image.particle--large {
          width: 30px;
          height: 30px; }
          @media (min-width: 768px) {
            .section--xray svg.xray-svg--polluted image.particle--large {
              width: 40px;
              height: 40px; } }
          @media (min-width: 1280px) {
            .section--xray svg.xray-svg--polluted image.particle--large {
              width: 50px;
              height: 50px; } }
        .section--xray svg.xray-svg--polluted image.particle--1 {
          x: 80%;
          y: 50%; }
        .section--xray svg.xray-svg--polluted image.particle--2 {
          x: 70%;
          y: 40%; }
        .section--xray svg.xray-svg--polluted image.particle--3 {
          x: 72%;
          y: 31%; }
        .section--xray svg.xray-svg--polluted image.particle--4 {
          x: 50%;
          y: 46%; }
        .section--xray svg.xray-svg--polluted image.particle--5 {
          x: 40%;
          y: 36%; }
        .section--xray svg.xray-svg--polluted image.particle--6 {
          x: 60%;
          y: 46%; }
        .section--xray svg.xray-svg--polluted image.particle--7 {
          x: 70%;
          y: 56%; }
        .section--xray svg.xray-svg--polluted image.particle--8 {
          x: 90%;
          y: 66%; }
    .section--xray svg.xray-svg image {
      height: 100%;
      width: 100%;
      fill: transparent; }
  .section--xray .custom-cursor {
    display: none;
    position: absolute;
    cursor: crosshair;
    width: 50px;
    height: 50px; }

.hero-animation {
  margin: 0 auto;
  position: relative;
  height: 250px; }
  @media (min-width: 390px) {
    .hero-animation {
      height: 300px;
      margin-left: 11%; } }
  .hero-animation__scaler {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 500px;
    background-image: url("assets/images/bubbles/bubbles1.png"), url("assets/images/tech_2/hero/blob1.svg");
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 100% bottom;
    transform-origin: top left;
    transform: scale(0.45); }
    @media (min-width: 390px) {
      .hero-animation__scaler {
        transform: scale(0.55);
        margin-left: 0; } }
    @media (min-width: 768px) {
      .hero-animation__scaler {
        transform: scale(0.55); } }
    @media (min-width: 1024px) {
      .hero-animation__scaler {
        transform: scale(0.75); } }
    @media (min-width: 1280px) {
      .hero-animation__scaler {
        transform: scale(0.99); } }
  .hero-animation__part-wrap {
    position: absolute;
    overflow: hidden; }
  .hero-animation__part {
    /**
		 * CLOUD
		 */ }
    .hero-animation__part--data-dots {
      top: 0; }
      .hero-animation__part--data-dots.data-out {
        width: 400px;
        height: 250px;
        right: 0px; }
        .hero-animation__part--data-dots.data-out .data-dot {
          animation-duration: 20s;
          animation-fill-mode: forwards;
          animation-iteration-count: infinite;
          animation-timing-function: linear; }
          .hero-animation__part--data-dots.data-out .data-dot--bad {
            background-color: #ff8000;
            animation-name: dataFlowOutBad; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--2 {
              animation-delay: 0.19s; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--3 {
              animation-delay: 0.32s; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--4 {
              animation-delay: 0.45s; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--5 {
              animation-delay: 0.57s; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--6 {
              animation-delay: 0.69s; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--7 {
              animation-delay: 1.1s; }
            .hero-animation__part--data-dots.data-out .data-dot--bad.data-dot--8 {
              animation-delay: 1.3s; }
          .hero-animation__part--data-dots.data-out .data-dot--good {
            background-color: #639bcf;
            animation-name: dataFlowOutGood; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--2 {
              animation-delay: 0.2s; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--3 {
              animation-delay: 0.4s; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--4 {
              animation-delay: 0.6s; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--5 {
              animation-delay: 0.8s; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--6 {
              animation-delay: 1.0s; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--7 {
              animation-delay: 1.2s; }
            .hero-animation__part--data-dots.data-out .data-dot--good.data-dot--8 {
              animation-delay: 1.4s; }
      .hero-animation__part--data-dots.data-in {
        width: 200px;
        height: 320px;
        left: 0px; }
        .hero-animation__part--data-dots.data-in .data-dot {
          animation-name: dataFlowInGood;
          background-image: url("assets/images/tech_2/hero/data-2.png");
          background-position: 0 0;
          background-size: 70%;
          background-color: #bbb;
          left: 0;
          bottom: -20px;
          width: 60px;
          height: 20px;
          background-color: #b1cde7;
          border-radius: 5px;
          animation-duration: 20s;
          animation-delay: 0s;
          animation-fill-mode: forwards;
          animation-iteration-count: infinite;
          animation-timing-function: linear;
          animation-direction: forwards;
          /* 
					&--2 { animation-delay: 1s; }
					&--3 { animation-delay: 2s; }
					&--4 { animation-delay: 3s; }
					&--5 { animation-delay: 4s; }
					&--6 { animation-delay: 5s; }
					&--7 { animation-delay: 6s; }
					&--8 { animation-delay: 7s; }
					&--9 { animation-delay: 8s; }
					&--10 {  animation-delay: 9s; }
					*/ }
          .hero-animation__part--data-dots.data-in .data-dot--bad {
            background-color: #ff8000;
            animation-name: dataFlowInBad; }
    .hero-animation__part--fan {
      top: 250px;
      right: 0px;
      width: 70px;
      height: 70px; }
    .hero-animation__part--sensor {
      width: 70px;
      height: 70px;
      left: 0;
      top: 320px; }
    .hero-animation__part--users {
      left: 70px;
      bottom: 0;
      width: 460px;
      height: 304px;
      transform: scaleX(-1); }
    .hero-animation__part--cloud {
      left: 100px;
      top: 0;
      height: 109px;
      width: 200px;
      z-index: 1; }
      .hero-animation__part--cloud .thumb {
        position: absolute;
        display: flex;
        flex-direction: row;
        justify-content: center;
        left: 75px;
        top: 35px;
        width: 50px;
        height: 50px;
        border-radius: 50px;
        z-index: 2;
        background-color: #639bcf;
        animation-name: colorThumb;
        animation-delay: 20s;
        animation-duration: 20s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-direction: forwards; }
        .hero-animation__part--cloud .thumb svg {
          animation-name: spinThumb;
          animation-delay: 20s;
          animation-duration: 20s;
          animation-iteration-count: infinite;
          animation-timing-function: linear;
          animation-direction: forwards;
          width: 30px; }
          .hero-animation__part--cloud .thumb svg path {
            fill: white; }
    .hero-animation__part--gusts {
      display: none;
      top: 250px;
      right: 70px;
      height: 70px;
      width: 100px;
      overflow: visible; }
      @media (min-width: 768px) {
        .hero-animation__part--gusts {
          display: block; } }
      .hero-animation__part--gusts svg {
        position: absolute;
        top: 0;
        right: 0;
        fill: none;
        stroke: #639bcf;
        stroke-width: 5px;
        stroke-linecap: round;
        width: 100px;
        height: auto;
        transform: rotate(-7deg);
        animation-name: gustOfWind1, faded;
        stroke-dasharray: 140px;
        animation-duration: 20s, 1s;
        animation-iteration-count: infinite;
        animation-timing-function: linear; }
        .hero-animation__part--gusts svg:nth-of-type(2n) {
          top: 15px; }
        .hero-animation__part--gusts svg:nth-of-type(3n) {
          top: 30px; }
        .hero-animation__part--gusts svg:nth-of-type(4n) {
          top: 45px; }
      .hero-animation__part--gusts.gusts-2 svg {
        animation-name: gustOfWind2, faded; }
      .hero-animation__part--gusts.gusts-3 svg {
        animation-name: gustOfWind3, faded; }
      .hero-animation__part--gusts.gusts-4 svg {
        animation-name: gustOfWind4, faded; }
      .hero-animation__part--gusts.gusts-5 svg {
        animation-name: gustOfWind5, faded; }
  .hero-animation .part {
    position: absolute; }
    .hero-animation .part img {
      width: 100%;
      height: auto;
      display: block; }
    .hero-animation .part--cloudmask {
      width: 200px;
      height: 109px;
      background-image: url("assets/images/tech_2/hero/clouds.svg"); }
    .hero-animation .part--clouddots {
      width: 200px;
      height: 218px;
      background-image: url("assets/images/tech_2/hero/data-2.png");
      background-position: 100% 0;
      background-size: 30%;
      animation: dataSlide infinite 10s linear;
      animation-fill-mode: forwards;
      animation-duration: 12s; }
    .hero-animation .part--fan {
      animation-name: spinFan;
      animation-duration: 20s;
      animation-iteration-count: infinite;
      animation-timing-function: linear; }
  .hero-animation .shape-path {
    fill: none;
    stroke: #aaa;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3px; }
  .hero-animation .path-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #aaa; }
  .hero-animation .dot-wrap[data-num="2"] .path-dot {
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #ffee58; }
  .hero-animation .data-dot {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 5px;
    height: 5px;
    background-color: #b1cde7;
    border-radius: 5px; }

@keyframes spinFan {
  0% {
    transform: rotate(0deg); }
  33% {
    transform: rotate(0deg); }
  43% {
    transform: rotate(360deg); }
  53% {
    transform: rotate(720deg); }
  63% {
    transform: rotate(1080deg); }
  73% {
    transform: rotate(1440deg); }
  83% {
    transform: rotate(1800deg); }
  100% {
    transform: rotate(1800deg); } }

@keyframes faded {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes gustOfWind1 {
  0% {
    stroke-dashoffset: -140px; }
  33% {
    stroke-dashoffset: -140px; }
  43% {
    stroke-dashoffset: 140px; }
  100% {
    stroke-dashoffset: 140px; } }

@keyframes gustOfWind2 {
  0% {
    stroke-dashoffset: -140px; }
  43% {
    stroke-dashoffset: -140px; }
  53% {
    stroke-dashoffset: 140px; }
  100% {
    stroke-dashoffset: 140px; } }

@keyframes gustOfWind3 {
  0% {
    stroke-dashoffset: -140px; }
  53% {
    stroke-dashoffset: -140px; }
  63% {
    stroke-dashoffset: 140px; }
  100% {
    stroke-dashoffset: 140px; } }

@keyframes gustOfWind4 {
  0% {
    stroke-dashoffset: -140px; }
  63% {
    stroke-dashoffset: -140px; }
  73% {
    stroke-dashoffset: 140px; }
  100% {
    stroke-dashoffset: 140px; } }

@keyframes gustOfWind5 {
  0% {
    stroke-dashoffset: -140px; }
  73% {
    stroke-dashoffset: -140px; }
  83% {
    stroke-dashoffset: 140px; }
  100% {
    stroke-dashoffset: 140px; } }

@keyframes spinThumb {
  0% {
    transform: rotate(0deg); }
  16% {
    transform: rotate(0deg); }
  18% {
    transform: rotate(180deg); }
  66% {
    transform: rotate(180deg); }
  68% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(0deg); } }

@keyframes colorThumb {
  0% {
    background-color: #639bcf; }
  16% {
    background-color: #639bcf; }
  18% {
    background-color: #ff8000; }
  66% {
    background-color: #ff8000; }
  68% {
    background-color: #639bcf; }
  100% {
    background-color: #639bcf; } }

@keyframes dataFlowInBad {
  0% {
    transform: translate(5px, 20px); }
  11% {
    transform: translate(5px, -250px); }
  17% {
    transform: translate(150px, -250px); }
  100% {
    transform: translate(150px, -250px); } }

@keyframes dataFlowInGood {
  0% {
    transform: translate(5px, 20px); }
  50% {
    transform: translate(5px, 20px); }
  61% {
    transform: translate(5px, -250px); }
  67% {
    transform: translate(150px, -250px); }
  100% {
    transform: translate(150px, -250px); } }

@keyframes dataFlowOutBad {
  0% {
    transform: translate(0, -200px); }
  17% {
    transform: translate(0, -200px); }
  24% {
    transform: translate(360px, -200px); }
  34% {
    transform: translate(360px, 10px); }
  100% {
    transform: translate(360px, 10px); } }

@keyframes dataFlowOutGood {
  0% {
    transform: translate(0, -200px); }
  67% {
    transform: translate(0, -200px); }
  76% {
    transform: translate(360px, -200px); }
  84% {
    transform: translate(360px, 10px); }
  100% {
    transform: translate(360px, 10px); } }

@keyframes dataSlide {
  0% {
    transform: translate(0, 0); }
  0% {
    transform: translate(0, -109px); } }

@keyframes particlesFloat {
  0% {
    transform: translate(0, 0); }
  25% {
    transform: translate(5px, 15px); }
  50% {
    transform: translate(10px, 5px); }
  75% {
    transform: translate(0px, 15px); }
  100% {
    transform: translate(0px, 0); } }

.error404 .content-container {
  display: grid;
  width: 100%;
  max-width: 90rem; }
  @media (min-width: 480px) {
    .error404 .content-container {
      grid-template-columns: repeat(8, 1fr);
      grid-template-rows: repeat(4, auto); } }
  .error404 .content-container .text-content {
    text-align: center;
    margin-bottom: 1rem;
    grid-column: 1/9; }
    .wf-loading .error404 .content-container .text-content {
      opacity: 0; }
    .wf-active .error404 .content-container .text-content {
      opacity: 1;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .wf-inactive .error404 .content-container .text-content {
      opacity: 1;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .error404 .content-container .text-content .preheader, .error404 .content-container .text-content .resources-promo__footer {
      font-size: 15px; }
    @media (min-width: 480px) {
      .error404 .content-container .text-content {
        margin-bottom: 4rem;
        grid-column: 2/8;
        grid-row: 1/2; } }
    @media (min-width: 768px) {
      .error404 .content-container .text-content {
        grid-column: 2/8;
        grid-row: 2/3; } }
  .error404 .content-container .man-holding-broom {
    display: none; }
    @media (min-width: 480px) {
      .error404 .content-container .man-holding-broom {
        display: block;
        grid-column: 1/5;
        grid-row: 2/5;
        align-self: end; } }
  .error404 .content-container .skunk {
    padding: 0 18%; }
    @media (min-width: 480px) {
      .error404 .content-container .skunk {
        padding: 0;
        grid-column: 5/7;
        grid-row: 4/5;
        align-self: end; } }
  .error404 .content-container .woman-holding-nose {
    display: none; }
    @media (min-width: 480px) {
      .error404 .content-container .woman-holding-nose {
        display: block;
        grid-column: 7/9;
        grid-row: 2/5;
        align-self: end; } }
  .error404 .content-container .section-header {
    margin: 0; }
    .error404 .content-container .section-header h1 {
      font-weight: 700;
      margin-bottom: 1rem; }
      @media (min-width: 480px) {
        .error404 .content-container .section-header h1 {
          margin: 0;
          font-weight: 700; } }
    .error404 .content-container .section-header h3 {
      margin-bottom: 10px; }
  .error404 .content-container .me-too {
    white-space: nowrap; }
  .error404 .content-container form {
    margin: 0 auto;
    max-width: 350px; }
    .error404 .content-container form input, .error404 .content-container form textarea {
      background-color: #efefef;
      box-shadow: none; }

.error404 .resources-promo {
  background-color: #efefef; }

.blog {
  width: 100%; }
  @media (min-width: 991px) {
    .blog > .in {
      display: flex; } }

.posts {
  width: 100%; }
  .wf-loading .posts {
    opacity: 0; }
  .wf-active .posts {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .wf-inactive .posts {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  @media (min-width: 991px) {
    .posts {
      width: 80%; } }
  @media (min-width: 480px) {
    .posts__wrapper {
      display: flex;
      flex-wrap: wrap; } }
  .posts .post {
    width: 100%;
    height: 470px;
    margin-bottom: 3.22581%; }
    @media (min-width: 480px) {
      .posts .post {
        width: 46.77419%;
        height: 470px; } }
    @media (min-width: 768px) {
      .posts .post {
        width: 31.1828%; } }
    .posts .post > .in {
      position: relative;
      height: 100% !important;
      width: 100%;
      background-color: white;
      -webkit-border-radius: 7px;
      border-radius: 7px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      box-shadow: 0 0 1px 1px #cad1d8;
      overflow: hidden;
      height: 100%; }
      @media (min-width: 480px) {
        .posts .post > .in {
          display: block; } }
      .posts .post > .in:after {
        -webkit-border-radius: 7px;
        border-radius: 7px;
        background-clip: padding-box;
        /* stops bg color from leaking outside the border: */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(rgba(255, 255, 255, 0) 80%, white 90%) no-repeat; }
    .posts .post__image {
      overflow: hidden;
      border-bottom: 1px solid #eaecf0;
      width: 100%;
      margin-bottom: 20px;
      height: 180px; }
      @media (min-width: 480px) {
        .posts .post__image {
          width: 100%;
          margin-bottom: 20px;
          height: 180px;
          position: relative;
          z-index: 1; } }
      .posts .post__image a {
        display: block;
        background: none;
        height: 100%; }
        .posts .post__image a:hover img {
          opacity: 0.9; }
      .posts .post__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: 0; }
        @media (min-width: 480px) {
          .posts .post__image img {
            height: 180px; } }
    .posts .post__title {
      padding: 1rem;
      position: relative;
      z-index: 1; }
      @media (min-width: 480px) {
        .posts .post__title {
          padding: 0 15px;
          margin-bottom: 20px; } }
      .posts .post__title h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 500; }
        @media (min-width: 480px) {
          .posts .post__title h4 {
            font-size: 24px;
            font-weight: 300; } }
        .posts .post__title h4 a {
          display: block;
          font-weight: 500;
          font-size: 16px;
          color: #29303b;
          margin-bottom: 10px;
          background: none;
          text-decoration: none; }
          .posts .post__title h4 a:hover {
            text-decoration: underline #9b9b9b; }
    .posts .post__content {
      display: none;
      position: relative;
      padding: 0 15px;
      display: block;
      font-size: 14px;
      color: #686f7a;
      margin-bottom: 10px;
      line-height: 21.2px;
      font-weight: 300; }
      @media (min-width: 480px) {
        .posts .post__content {
          display: block; } }
    .posts .post__readmore {
      display: block;
      position: absolute;
      bottom: 0;
      text-align: right;
      z-index: 1;
      margin-top: auto;
      font-size: 1rem;
      width: 100%;
      padding: 1em 15px;
      float: right;
      border-radius: 0 0 8px 8px; }
      .posts .post__readmore a {
        color: #858585;
        background-image: none; }
        .posts .post__readmore a:after {
          font-family: 'FontAwesome';
          content: '\f0da';
          transition: all 0.2s ease-in-out;
          text-align: right;
          display: inline-block;
          opacity: .3;
          padding-left: 7px; }
        .posts .post__readmore a:hover:after {
          opacity: .6; }

.categories {
  width: 100%;
  margin-bottom: 40px; }
  @media (min-width: 991px) {
    .categories {
      width: 20%; } }
  .categories > .in {
    padding: 0; }
    @media (min-width: 991px) {
      .categories > .in {
        padding: 0 50px 0 0; } }
  .categories h5 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    padding-left: 1rem; }
  .categories ul {
    margin: 0;
    padding: 0; }
    .categories ul li {
      list-style: none;
      display: inline-flex;
      align-items: center;
      line-height: 1.2;
      padding: 0; }
      .categories ul li:hover {
        cursor: pointer; }
        .categories ul li:hover label, .categories ul li:hover table th, table .categories ul li:hover th, .categories ul li:hover .wpcf7 .disclaimer, .wpcf7 .categories ul li:hover .disclaimer {
          color: #59514c; }
      .categories ul li a {
        text-decoration: none;
        background: none; }
      .categories ul li label, .categories ul li table th, table .categories ul li th, .categories ul li .wpcf7 .disclaimer, .wpcf7 .categories ul li .disclaimer {
        margin: 0 0 0 12px;
        color: gray;
        font-weight: 100;
        font-size: 15px; }
      @media (min-width: 991px) {
        .categories ul li {
          display: flex; } }
  .categories button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #98928d;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    width: 100%;
    display: block;
    text-align: left;
    background-image: none;
    background-color: transparent;
    border-color: #d8d1ca; }
    .categories button:hover {
      color: #d8d1ca; }
    .categories button:focus {
      outline: 0; }
    .categories button.is-checked {
      color: #639bcf;
      border-color: #b1cde7;
      background-color: transparent; }
    @media (min-width: 991px) {
      .categories button {
        padding: 1rem;
        margin: 0;
        display: inline;
        border-color: transparent; }
        .categories button.is-checked {
          border-color: #b1cde7; } }

a.btn {
  padding: 10px;
  font-size: 15px;
  font-weight: 100; }
  a.btn--brand {
    background: #09C;
    color: #fff; }
    a.btn--brand:hover, a.btn--brand:focus {
      background: #07bbf7; }
  a.btn--block {
    display: block;
    width: 100%; }

.banner {
  background: url("assets/images/blue-cover-with-illustrations.png"); }
  .banner > .in {
    position: relative;
    height: 500px; }
    @media (max-width: 991px) {
      .banner > .in {
        height: 320px; } }
    @media (min-width: 991px) {
      .banner > .in {
        margin-bottom: 60px; } }
  .banner img {
    width: 100%;
    height: auto; }
  .banner__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .banner__content > .in {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      flex-direction: column;
      height: 100%;
      padding: 20px; }
      @media (max-width: 680px) {
        .banner__content > .in {
          align-items: flex-start; } }
    .banner__content h1,
    .banner__content h2,
    .banner__content #comments #reply-title,
    #comments .banner__content #reply-title {
      color: #fff;
      font-weight: bold; }
    .banner__content h1 {
      font-size: 60px;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        .banner__content h1 {
          font-size: 48px; } }
      @media (max-width: 770px) {
        .banner__content h1 {
          font-size: 36px; } }
      @media (max-width: 610px) {
        .banner__content h1 {
          font-size: 28px; } }
    
    .banner__content h2,
    .banner__content #comments #reply-title,
    #comments .banner__content #reply-title {
      font-size: 24px; }
      @media (max-width: 991px) {
        
        .banner__content h2,
        .banner__content #comments #reply-title,
        #comments .banner__content #reply-title {
          font-size: 20px; } }
      @media (max-width: 770px) {
        
        .banner__content h2,
        .banner__content #comments #reply-title,
        #comments .banner__content #reply-title {
          font-size: 18px; } }

.sampleContainer {
  margin-top: 250px; }

.loading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; }

.loader {
  position: relative;
  width: 44px;
  height: 8px;
  margin: 12px auto;
  margin-bottom: 40px; }
  .loader .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #ccc;
    position: absolute; }
  .loader .dot_1 {
    animation: animateDot1 1.5s linear infinite;
    left: 12px;
    background: #00add8; }
  .loader .dot_2 {
    animation: animateDot2 1.5s linear infinite;
    animation-delay: 0.5s;
    left: 24px; }
  .loader .dot_3 {
    animation: animateDot3 1.5s linear infinite;
    left: 12px; }
  .loader .dot_4 {
    animation: animateDot4 1.5s linear infinite;
    animation-delay: 0.5s;
    left: 24px; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes animateDot1 {
  0% {
    transform: rotate(0deg) translateX(-12px); }
  25% {
    transform: rotate(180deg) translateX(-12px); }
  75% {
    transform: rotate(180deg) translateX(-12px); }
  100% {
    transform: rotate(360deg) translateX(-12px); } }

@keyframes animateDot2 {
  0% {
    transform: rotate(0deg) translateX(-12px); }
  25% {
    transform: rotate(-180deg) translateX(-12px); }
  75% {
    transform: rotate(-180deg) translateX(-12px); }
  100% {
    transform: rotate(-360deg) translateX(-12px); } }

@keyframes animateDot3 {
  0% {
    transform: rotate(0deg) translateX(12px); }
  25% {
    transform: rotate(180deg) translateX(12px); }
  75% {
    transform: rotate(180deg) translateX(12px); }
  100% {
    transform: rotate(360deg) translateX(12px); } }

@keyframes animateDot4 {
  0% {
    transform: rotate(0deg) translateX(12px); }
  25% {
    transform: rotate(-180deg) translateX(12px); }
  75% {
    transform: rotate(-180deg) translateX(12px); }
  100% {
    transform: rotate(-360deg) translateX(12px); } }

.blog-sidebar-search, .widget.widget_search {
  margin-bottom: 2rem; }
  .blog-sidebar-search form.searchform input, .widget.widget_search form.searchform input, .blog-sidebar-search form.searchform textarea, .widget.widget_search form.searchform textarea {
    box-shadow: none;
    border-bottom: 2px solid #21A4D7; }
    .blog-sidebar-search form.searchform input[type="search"], .widget.widget_search form.searchform input[type="search"], .blog-sidebar-search form.searchform textarea[type="search"], .widget.widget_search form.searchform textarea[type="search"] {
      font-weight: 300; }
  .blog-sidebar-search form.searchform label, .widget.widget_search form.searchform label, .blog-sidebar-search form.searchform table th, table .blog-sidebar-search form.searchform th, .widget.widget_search form.searchform table th, table .widget.widget_search form.searchform th, .blog-sidebar-search form.searchform .wpcf7 .disclaimer, .wpcf7 .blog-sidebar-search form.searchform .disclaimer, .widget.widget_search form.searchform .wpcf7 .disclaimer, .wpcf7 .widget.widget_search form.searchform .disclaimer {
    opacity: 1; }
    .blog-sidebar-search form.searchform label:before, .widget.widget_search form.searchform label:before, .blog-sidebar-search form.searchform table th:before, table .blog-sidebar-search form.searchform th:before, .widget.widget_search form.searchform table th:before, table .widget.widget_search form.searchform th:before, .blog-sidebar-search form.searchform .wpcf7 .disclaimer:before, .wpcf7 .blog-sidebar-search form.searchform .disclaimer:before, .widget.widget_search form.searchform .wpcf7 .disclaimer:before, .wpcf7 .widget.widget_search form.searchform .disclaimer:before {
      opacity: 1;
      color: #21A4D7; }

.affiliates {
  background: #274663; }
  .affiliates > .in {
    padding: 37px 20px;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 610px) {
      .affiliates > .in {
        flex-wrap: wrap; } }
  .affiliates__logo {
    margin-right: 77px; }
    @media (max-width: 770px) {
      .affiliates__logo {
        margin-right: 40px; } }
    @media (max-width: 610px) {
      .affiliates__logo {
        margin-right: 0;
        width: 100%;
        margin-bottom: 40px;
        text-align: center; }
        .affiliates__logo:last-of-type {
          margin-bottom: 0; } }
    .affiliates__logo:last-of-type {
      margin-right: 0; }
    .affiliates__logo img {
      max-width: 100%;
      height: auto; }

.infoPanel {
  background: rgba(255, 128, 0, 0.6);
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .infoPanel:before {
      z-index: -1;
      content: "";
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      background-image: url("assets/images/hvac/closing-sales.jpg");
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat; } }
  .infoPanel.alt {
    background: #1b3a45; }
    @media (min-width: 768px) {
      .infoPanel.alt:before {
        left: 0;
        background-image: url("assets/images/hvac/callback.jpg");
        background-position: right center; } }
  .infoPanel > .in {
    display: flex; }
    @media (max-width: 770px) {
      .infoPanel > .in {
        flex-wrap: wrap; } }
  .infoPanel__text {
    width: 50%;
    font-size: 48px;
    font-weight: 100; }
    @media (max-width: 1199px) {
      .infoPanel__text {
        width: 50%; } }
    @media (max-width: 770px) {
      .infoPanel__text {
        width: 100%; } }
    .infoPanel__text h3 {
      margin: 0;
      line-height: 1.1;
      margin-bottom: 50px;
      max-width: 420px;
      font-size: 48px; }
      @media (max-width: 991px) {
        .infoPanel__text h3 {
          font-size: 36px; } }
    .infoPanel__text p {
      max-width: 300px;
      font-weight: 100;
      font-size: 16px;
      margin: 0; }
    .infoPanel__text--primary h3,
    .infoPanel__text--primary p {
      color: rgba(0, 0, 0, 0.6); }
    .infoPanel__text--secondary {
      background: #676b6f; }
      .infoPanel__text--secondary h3 {
        color: rgba(255, 255, 255, 0.4); }
      .infoPanel__text--secondary p {
        color: #fff; }
      .infoPanel__text--secondary .highlight {
        color: #ff8000; }
    .infoPanel__text--wider h3 {
      max-width: 100%; }
    .infoPanel__text > .in {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 100px; }
      @media (max-width: 1199px) {
        .infoPanel__text > .in {
          padding: 50px; } }
  .infoPanel__image {
    width: 45%; }
    @media (max-width: 1199px) {
      .infoPanel__image {
        width: 50%; } }
    @media (max-width: 770px) {
      .infoPanel__image {
        width: 100%; } }
    .infoPanel__image img {
      object-fit: cover;
      width: 100%;
      height: 100%; }
      @media (min-width: 768px) {
        .infoPanel__image img {
          display: none; } }
  .infoPanel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; }
  .infoPanel__icon {
    margin-bottom: 38px; }
    @media (max-width: 991px) {
      .infoPanel__icon img {
        max-width: 90px; } }

.centerFullImage {
  background: #e4e7e4; }
  .centerFullImage > .in {
    padding: 60px 80px; }
    @media (max-width: 770px) {
      .centerFullImage > .in {
        padding: 50px 20px; } }
  .centerFullImage__content {
    margin-bottom: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    .centerFullImage__content h3,
    .centerFullImage__content p {
      font-weight: 100;
      color: #378AB0;
      max-width: 70%; }
      @media (max-width: 991px) {
        .centerFullImage__content h3,
        .centerFullImage__content p {
          max-width: 100%; } }
    .centerFullImage__content h3 {
      font-size: 54px;
      margin-bottom: 40px;
      line-height: 1.1; }
      @media (max-width: 991px) {
        .centerFullImage__content h3 {
          font-size: 36px; } }
    .centerFullImage__content p {
      margin: 0; }
  .centerFullImage__image img {
    width: 100%;
    height: auto; }

.splitContentImage {
  background: url(assets/images/hvac/bg-mac.png) no-repeat;
  background-size: cover;
  background-position: center bottom; }
  .splitContentImage > .in {
    display: flex;
    padding: 110px 120px; }
    @media (max-width: 1199px) {
      .splitContentImage > .in {
        padding: 70px 50px; } }
    @media (max-width: 770px) {
      .splitContentImage > .in {
        padding: 50px 20px;
        flex-wrap: wrap; } }
  .splitContentImage__content {
    width: 50%;
    padding-right: 20px; }
    @media (max-width: 770px) {
      .splitContentImage__content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px; } }
    .splitContentImage__content h2, .splitContentImage__content #comments #reply-title, #comments .splitContentImage__content #reply-title,
    .splitContentImage__content h4,
    .splitContentImage__content p {
      font-weight: 100;
      color: #1A1A1A; }
    .splitContentImage__content h3 {
      font-size: 50px;
      margin-bottom: 30px;
      line-height: 1.1; }
      @media (max-width: 991px) {
        .splitContentImage__content h3 {
          font-size: 36px; } }
    .splitContentImage__content h4 {
      font-size: 24px;
      color: #FF6800;
      margin-bottom: 15px; }
      @media (max-width: 991px) {
        .splitContentImage__content h4 {
          font-size: 18px; } }
      .splitContentImage__content h4:first-of-type {
        margin: 0 0 10px 0;
        color: #1A1A1A; }
    .splitContentImage__content .button, .splitContentImage__content input[type="submit"], .splitContentImage__content textarea[type="submit"], .splitContentImage__content input[type="reset"], .splitContentImage__content textarea[type="reset"] {
      margin-top: 20px;
      color: #fff;
      background: #ff8000;
      border: none;
      padding: 1.22rem !important;
      font-size: 1.276rem;
      border-radius: 0.5em;
      font-weight: 500; }
      .splitContentImage__content .button:hover, .splitContentImage__content input:hover[type="submit"], .splitContentImage__content textarea:hover[type="submit"], .splitContentImage__content input:hover[type="reset"], .splitContentImage__content textarea:hover[type="reset"] {
        box-shadow: none !important; }
      .splitContentImage__content .button:hover, .splitContentImage__content input:hover[type="submit"], .splitContentImage__content textarea:hover[type="submit"], .splitContentImage__content input:hover[type="reset"], .splitContentImage__content textarea:hover[type="reset"] {
        background: #e67300;
        cursor: pointer;
        border: none; }
  .splitContentImage__image {
    align-self: flex-end;
    width: 50%;
    padding-left: 20px; }
    @media (max-width: 770px) {
      .splitContentImage__image {
        width: 100%;
        padding-left: 0; } }
    .splitContentImage__image img {
      max-width: 100%;
      height: auto; }

.threeColumnCentered > .in {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 110px 120px; }
  @media (max-width: 1199px) {
    .threeColumnCentered > .in {
      padding: 70px 50px; } }
  @media (max-width: 770px) {
    .threeColumnCentered > .in {
      padding: 50px 20px;
      flex-wrap: wrap; } }

.threeColumnCentered__item {
  width: 30%;
  text-align: center; }
  @media (max-width: 770px) {
    .threeColumnCentered__item {
      width: 100%;
      margin: 0 0 40px 0; }
      .threeColumnCentered__item:last-of-type {
        margin-bottom: 0; } }
  .threeColumnCentered__item img {
    margin-bottom: 30px; }
  .threeColumnCentered__item h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px; }
    @media (max-width: 991px) {
      .threeColumnCentered__item h3 {
        font-size: 24px; } }
  .threeColumnCentered__item p {
    margin: 0; }
  .threeColumnCentered__item h3,
  .threeColumnCentered__item p {
    color: #1a1a1a; }

.testimonialFull {
  background: #639bcf; }
  .testimonialFull > .in {
    padding: 100px 200px;
    background: #4f81b0 url(assets/images/hvac/wave.png) no-repeat;
    background-position: center center;
    display: flex;
    align-items: center; }
    @media (max-width: 1199px) {
      .testimonialFull > .in {
        padding: 70px 50px; } }
    @media (max-width: 770px) {
      .testimonialFull > .in {
        padding: 50px 20px;
        flex-wrap: wrap;
        justify-content: center; } }
  @media (max-width: 770px) {
    .testimonialFull__content {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      text-align: center; } }
  .testimonialFull__content p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin: 0; }
    @media (max-width: 991px) {
      .testimonialFull__content p {
        font-size: 20px; } }
  .testimonialFull__image {
    margin-right: 50px; }
    @media (max-width: 770px) {
      .testimonialFull__image {
        margin: 0 0 40px 0; } }
    .testimonialFull__image img {
      min-width: 112px; }
  .testimonialFull__sub {
    color: #fff;
    font-weight: 100;
    line-height: 1.2;
    margin-top: 25px;
    font-size: 16px; }
    @media (max-width: 991px) {
      .testimonialFull__sub {
        font-size: 14px; } }
    .testimonialFull__sub strong {
      font-weight: 400; }

.leftColTextBg {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url(assets/images/hvac/bg-ipad.jpg) no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover; }
  .leftColTextBg > .in {
    padding: 120px 50px; }
    @media (max-width: 991px) {
      .leftColTextBg > .in {
        padding: 70px 20px; } }
  .leftColTextBg__content {
    max-width: 500px; }
    @media (max-width: 770px) {
      .leftColTextBg__content {
        max-width: 100%; } }
    .leftColTextBg__content h3 {
      font-size: 50px;
      margin-bottom: 30px;
      line-height: 1.1;
      color: #fff; }
      @media (max-width: 991px) {
        .leftColTextBg__content h3 {
          font-size: 36px; } }
    .leftColTextBg__content h4 {
      font-size: 28px;
      color: #ff9d59;
      margin-bottom: 15px; }
      @media (max-width: 991px) {
        .leftColTextBg__content h4 {
          font-size: 22px; } }
    .leftColTextBg__content p {
      color: #fff; }
    .leftColTextBg__content .button, .leftColTextBg__content input[type="submit"], .leftColTextBg__content textarea[type="submit"], .leftColTextBg__content input[type="reset"], .leftColTextBg__content textarea[type="reset"] {
      margin-top: 20px;
      color: #fff;
      background: #ff8000;
      border: none;
      padding: 1.22rem !important;
      font-size: 1.276rem;
      border-radius: 0.5em;
      font-weight: 500; }
      .leftColTextBg__content .button:hover, .leftColTextBg__content input:hover[type="submit"], .leftColTextBg__content textarea:hover[type="submit"], .leftColTextBg__content input:hover[type="reset"], .leftColTextBg__content textarea:hover[type="reset"] {
        box-shadow: none !important; }
      .leftColTextBg__content .button:hover, .leftColTextBg__content input:hover[type="submit"], .leftColTextBg__content textarea:hover[type="submit"], .leftColTextBg__content input:hover[type="reset"], .leftColTextBg__content textarea:hover[type="reset"] {
        background: #e67300;
        cursor: pointer;
        border: none; }

.worksWith {
  background: url(assets/images/hvac/works-with.jpg);
  background-position: center center; }
  .worksWith > .in {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px; }
    @media (max-width: 991px) {
      .worksWith > .in {
        padding: 70px 20px; } }
  .worksWith .highlight {
    color: #5386aa; }
  .worksWith h3,
  .worksWith h4 {
    font-family: "DIN2014-DemiBold", "DIN2014-Regular", sans-serif, sans-serif;
    font-weight: 100; }
  .worksWith__title {
    margin-bottom: 60px; }
    @media (max-width: 991px) {
      .worksWith__title {
        margin-bottom: 40px; } }
    .worksWith__title h3 {
      font-size: 40px;
      color: #666666; }
      @media (max-width: 991px) {
        .worksWith__title h3 {
          font-size: 32px; } }
  .worksWith__content {
    margin-bottom: 120px;
    color: #393939;
    font-size: 18px; }
    @media (max-width: 991px) {
      .worksWith__content {
        font-size: 16px;
        margin-bottom: 70px; } }
  .worksWith__sub h4 {
    font-size: 24px;
    color: #666666; }
    @media (max-width: 991px) {
      .worksWith__sub h4 {
        font-size: 20px; } }

/*
  #content {
    .button {
        margin-top:20px;
        color: #fff;
        background: $bn-p-background;
        border: none;
        padding: 1.22rem !important;
        font-size:1.276rem;
        border-radius:0.5em;
        font-weight:500;
        &:hover {
            box-shadow:none !important;
        }
        &:hover {
            background: $bn-p-background-hover;
            cursor: pointer;
            border: none;
        }
    }
  }
*/
.before-after-labels {
  display: flex; }
  .before-after-labels > * {
    flex: 1;
    text-align: center; }

.button.thrive:after, input.thrive[type="submit"]:after, textarea.thrive[type="submit"]:after, input.thrive[type="reset"]:after, textarea.thrive[type="reset"]:after {
  display: none !important; }

.home {
  /*
	.thrv_wrapper {
		margin: 0;
		padding: 0;
	}
	*/ }
  .home #cover {
    background-image: none; }
  .home .iaq-blog .tcb-flex-col:last-child .tcb-col {
    background-size: 98%, auto !important; }
  .home #cover .thrv_wrapper {
    max-width: 100%; }
    .home #cover .thrv_wrapper .tcb-flex-row .tcb-flex-col {
      padding: 0 !important; }
      .home #cover .thrv_wrapper .tcb-flex-row .tcb-flex-col .tcb-col {
        padding: 0 5% !important; }
        .home #cover .thrv_wrapper .tcb-flex-row .tcb-flex-col .tcb-col .carousel-wrapper {
          padding: 2rem 5%; }
          @media (min-width: 768px) {
            .home #cover .thrv_wrapper .tcb-flex-row .tcb-flex-col .tcb-col .carousel-wrapper {
              padding: 20px 0 10px 100px !important; } }
          .home #cover .thrv_wrapper .tcb-flex-row .tcb-flex-col .tcb-col .carousel-wrapper .thrv_custom_html_shortcode {
            margin: 0 !important; }
  .home .buttons-box .tve-cb {
    display: flex; }
    .home .buttons-box .tve-cb div {
      padding-right: 5px; }
  .home .hero-col-1 > .tve-cb > .thrv_custom_html_shortcode {
    display: none; }
  @media (min-width: 768px) {
    .home .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr); } }
  .home .tcb-video-background-parent .thrv_wrapper.thrv-content-box {
    max-width: 100% !important; }
    .home .tcb-video-background-parent .thrv_wrapper.thrv-content-box .thrv_heading {
      margin: 0 !important;
      padding: 2rem 5% !important;
      max-width: 100% !important;
      width: 100% !important;
      float: none !important; }
      @media (min-width: 768px) {
        .home .tcb-video-background-parent .thrv_wrapper.thrv-content-box .thrv_heading {
          max-width: 50% !important;
          float: right !important;
          text-align: right !important; } }
      @media (min-width: 768px) {
        .home .tcb-video-background-parent .thrv_wrapper.thrv-content-box .thrv_heading span {
          text-align: right !important; } }

.owl-theme .owl-dots .owl-dot.active span {
  background: #ff8000; }

/**
 * Customisations to the Landing Page template
 */
#menu-mnml-main {
  display: none; }
  .foobot-landing #menu-mnml-main {
    display: block; }

.foobot-landing {
  /* Sections */ }
  .foobot-landing #masthead {
    background-color: #aaaaaa; }
    .foobot-landing #masthead #main-navigation-menu {
      display: none; }
    .foobot-landing #masthead #offcanvas-nav-trigger-wrapper {
      display: none; }
  .foobot-landing .headhesive {
    display: none; }
  .foobot-landing .social-widget {
    display: none; }
  .foobot-landing .site-footer .menu {
    display: none; }
  .foobot-landing .site-footer .copyright {
    text-align: center; }
  @media (min-width: 768px) {
    .foobot-landing #widget-area .widget-container {
      grid-template-columns: 2fr 1fr 1fr;
      grid-column-gap: 50px; } }
  .foobot-landing #pays-for-itself .entry-title {
    color: #fff; }

body.tve-l-open .mm-slideout {
  z-index: 20 !important; }

.office-hero-2020 img {
  width: 150% !important;
  max-width: none !important;
  margin-left: -25%; }

#peace-of-mind {
  background-color: #d7d7d7; }
  #peace-of-mind .equal-split-image {
    min-height: 300px;
    background-image: url("assets/images/Foobot-in-situ11HD.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left; }

#harmful {
  background-color: #d7d7d7;
  background-size: cover; }
  @media (min-width: 768px) {
    #harmful .equal-split-text {
      order: 2; } }
  #harmful .equal-split-image {
    position: relative;
    min-height: 500px;
    background: linear-gradient(to bottom, #24303a, #24303a);
    background-repeat: no-repeat;
    background-size: 100% auto, 100% auto, cover;
    background-position: center center, 0 0, 0 0; }
    @media (min-width: 768px) {
      #harmful .equal-split-image {
        order: 1; } }

#safe {
  background-color: #d7d7d7; }
  @media (min-width: 768px) {
    #safe .equal-split-text {
      order: 1; } }
  #safe .equal-split-image {
    min-height: 300px;
    background-image: url("assets/images/twenty20comp_22a3dd34-3bcc-4832-ab68-3f0a7bcfdb86.jpg");
    background-size: cover;
    background-position: 0 0; }
    @media (min-width: 768px) {
      #safe .equal-split-image {
        order: 2; } }

/*
#cover {
	@include breakpoint( $tablet ) {
		min-height: 800px;
		
	}
	.container {
		@include breakpoint( $tablet ) {
			display: block;
			text-align: center;
			max-width: $container-width;
		}
	}

	.equal-split-text {
		@include breakpoint( $tablet ) {
			width: 100%;
		}
	}
	.equal-split-image {
		min-height: 300px;
		background-image: url("assets/images/twenty20comp_f5be0cb0-6472-454c-98a2-2c9eeebb8272.jpg");
		background-size: cover;
		background-position: 0 0;
		@include breakpoint( $tablet ) {
			order: 2;
		}
	}
}
*/
#activation {
  background-image: linear-gradient(to bottom, #c5c2b7 25%, rgba(255, 255, 255, 0) 50%), url("assets/images/Foobot-in-situ10.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0, center 200px; }
  @media (min-width: 768px) {
    #activation {
      min-height: 800px; } }
  @media (max-width: 767px) {
    #activation {
      min-height: 800px; } }
  @media (min-width: 768px) {
    #activation .container, #activation .grid-wrapper, #activation #post-taxonomies .post-taxonomies-categories, #post-taxonomies #activation .post-taxonomies-categories,
    #activation #post-taxonomies .post-taxonomies-tags, #post-taxonomies #activation .post-taxonomies-tags, #activation .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #activation .tve_pg_row, #activation .cc-grower .cc-window.cc-banner, .cc-grower #activation .cc-window.cc-banner, #activation .product-list__featured > .tcb-flex-row, #activation .testimonials > .in, #activation .wuot__container, #activation .search #content #ais-wrapper, .search #content #activation #ais-wrapper {
      display: block;
      text-align: center;
      max-width: 75rem; } }
  @media (min-width: 768px) {
    #activation .equal-split-text {
      width: 100%; } }
  #activation .equal-split-image {
    min-height: 300px;
    background-image: url("assets/images/twenty20comp_f5be0cb0-6472-454c-98a2-2c9eeebb8272.jpg");
    background-size: cover;
    background-position: 0 0; }
    @media (min-width: 768px) {
      #activation .equal-split-image {
        order: 2; } }

#benefits {
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0)), url("assets/images/8.jpg");
  background-size: cover;
  background-position: 0 0; }
  #benefits .section-header {
    text-align: center; }
    #benefits .section-header p {
      font-size: 1.48016rem; }
    #benefits .section-header img {
      margin: 0 auto;
      margin-bottom: 5em; }
  #benefits .container-cta {
    text-align: center; }
    #benefits .container-cta .button, #benefits .container-cta input[type="submit"], #benefits .container-cta textarea[type="submit"], #benefits .container-cta input[type="reset"], #benefits .container-cta textarea[type="reset"] {
      display: inline-block;
      text-align: center;
      border-bottom: none;
      background-image: none !important;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.1);
      background-color: #ff8000;
      border: 1px solid #ff8000;
      padding: 1.22rem;
      -webkit-border-radius: 0.8133333333rem;
      border-radius: 0.8133333333rem;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
      #benefits .container-cta .button:link, #benefits .container-cta input:link[type="submit"], #benefits .container-cta textarea:link[type="submit"], #benefits .container-cta input:link[type="reset"], #benefits .container-cta textarea:link[type="reset"], #benefits .container-cta .button:visited, #benefits .container-cta input:visited[type="submit"], #benefits .container-cta textarea:visited[type="submit"], #benefits .container-cta input:visited[type="reset"], #benefits .container-cta textarea:visited[type="reset"] {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.2);
        background-color: #ff8000; }
      #benefits .container-cta .button:hover, #benefits .container-cta input:hover[type="submit"], #benefits .container-cta textarea:hover[type="submit"], #benefits .container-cta input:hover[type="reset"], #benefits .container-cta textarea:hover[type="reset"] {
        color: #fff;
        background-color: #eb7b08; }
      #benefits .container-cta .button:active, #benefits .container-cta input:active[type="submit"], #benefits .container-cta textarea:active[type="submit"], #benefits .container-cta input:active[type="reset"], #benefits .container-cta textarea:active[type="reset"] {
        color: #fff;
        background-color: #d8760f; }
      #benefits .container-cta .button:link, #benefits .container-cta input:link[type="submit"], #benefits .container-cta textarea:link[type="submit"], #benefits .container-cta input:link[type="reset"], #benefits .container-cta textarea:link[type="reset"], #benefits .container-cta .button:visited, #benefits .container-cta input:visited[type="submit"], #benefits .container-cta textarea:visited[type="submit"], #benefits .container-cta input:visited[type="reset"], #benefits .container-cta textarea:visited[type="reset"], #benefits .container-cta .button:hover, #benefits .container-cta input:hover[type="submit"], #benefits .container-cta textarea:hover[type="submit"], #benefits .container-cta input:hover[type="reset"], #benefits .container-cta textarea:hover[type="reset"], #benefits .container-cta .button:active, #benefits .container-cta input:active[type="submit"], #benefits .container-cta textarea:active[type="submit"], #benefits .container-cta input:active[type="reset"], #benefits .container-cta textarea:active[type="reset"] {
        text-decoration: none;
        background-image: none !important;
        border: 1px solid #ff8000; }
  #benefits img {
    max-width: 199px; }

#indoor-outdoor .container, #indoor-outdoor .grid-wrapper, #indoor-outdoor #post-taxonomies .post-taxonomies-categories, #post-taxonomies #indoor-outdoor .post-taxonomies-categories,
#indoor-outdoor #post-taxonomies .post-taxonomies-tags, #post-taxonomies #indoor-outdoor .post-taxonomies-tags, #indoor-outdoor .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #indoor-outdoor .tve_pg_row, #indoor-outdoor .cc-grower .cc-window.cc-banner, .cc-grower #indoor-outdoor .cc-window.cc-banner, #indoor-outdoor .product-list__featured > .tcb-flex-row, #indoor-outdoor .testimonials > .in, #indoor-outdoor .wuot__container, #indoor-outdoor .search #content #ais-wrapper, .search #content #indoor-outdoor #ais-wrapper {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 768px) {
    #indoor-outdoor .container, #indoor-outdoor .grid-wrapper, #indoor-outdoor #post-taxonomies .post-taxonomies-categories, #post-taxonomies #indoor-outdoor .post-taxonomies-categories,
    #indoor-outdoor #post-taxonomies .post-taxonomies-tags, #post-taxonomies #indoor-outdoor .post-taxonomies-tags, #indoor-outdoor .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #indoor-outdoor .tve_pg_row, #indoor-outdoor .cc-grower .cc-window.cc-banner, .cc-grower #indoor-outdoor .cc-window.cc-banner, #indoor-outdoor .product-list__featured > .tcb-flex-row, #indoor-outdoor .testimonials > .in, #indoor-outdoor .wuot__container, #indoor-outdoor .search #content #ais-wrapper, .search #content #indoor-outdoor #ais-wrapper {
      flex-wrap: nowrap; } }

#indoor-outdoor .indoor__content {
  width: 100%;
  margin-bottom: 3rem; }
  @media (min-width: 768px) {
    #indoor-outdoor .indoor__content {
      width: 100%;
      margin-right: 10%;
      margin-bottom: 0; } }

#indoor-outdoor .indoor__image {
  width: 100%; }
  @media (min-width: 768px) {
    #indoor-outdoor .indoor__image {
      width: 40%; } }

#indoor-outdoor .home-section-title {
  grid-column-start: 1;
  align-self: end; }

#indoor-outdoor .equal-split-image {
  min-height: 500px;
  height: 100%;
  background-image: url("assets/images/twenty20comp_d6e530b4-99e9-47c6-82e8-2a5ed485c2b2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  @media (max-width: 768px) {
    #indoor-outdoor .equal-split-image {
      margin-bottom: 30px; } }

#pays-for-itself {
  color: #fff;
  background-color: #ff8000; }
  @media (min-width: 768px) {
    #pays-for-itself .equal-split-text {
      width: 100%;
      order: 2; } }
  #pays-for-itself .equal-split-image {
    min-height: 400px;
    background-image: url("assets/images/twenty20comp_241af475-c649-4943-9049-593658bcd61e.jpg");
    background-size: cover;
    background-position: bottom center; }
    @media (min-width: 768px) {
      #pays-for-itself .equal-split-image {
        order: 1; } }

#article-header img {
  margin-bottom: 0; }

#article-header .section-footer {
  margin: 0 0 1.5rem 0;
  padding: 1.5rem 0;
  position: relative; }
  #article-header .section-footer:after {
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    height: 2px;
    width: 60px;
    background-color: #d7d7d7; }
  #article-header .section-footer ul {
    margin: 0;
    padding: 0;
    display: inline; }
    #article-header .section-footer ul li {
      display: inline;
      font-style: italic;
      font-weight: 300; }
      #article-header .section-footer ul li label, #article-header .section-footer ul li table th, table #article-header .section-footer ul li th, #article-header .section-footer ul li .wpcf7 .disclaimer, .wpcf7 #article-header .section-footer ul li .disclaimer {
        margin: 0; }
      #article-header .section-footer ul li .updated {
        display: none; }
      #article-header .section-footer ul li.post-date {
        display: none;
        font-size: 1rem; }

.page #article-header .section-footer {
  display: none; }

.single-tech_blog #article-header .section-footer ul li.post-date {
  display: block; }
  .single-tech_blog #article-header .section-footer ul li.post-date .updated {
    display: inline; }

svg path.land {
  fill: #d7d7d7; }

svg path.boundary {
  fill: #d7d7d7; }

svg path.graticule {
  fill: #4c4d4c; }

.single .category-infographics .featured-image,
.single .tech_cats-infographics .featured-image,
.single .pro_cats-infographics .featured-image {
  display: none; }

.thrv_text_element {
  max-width: 28em;
  font-size: 1.7rem; }
  .thrv_text_element p, .thrv_text_element ul, .thrv_text_element li {
    font-size: inherit; }

.post-template-template__cocoon article {
  max-width: 28em;
  font-size: 1.7rem; }
  .post-template-template__cocoon article p, .post-template-template__cocoon article ul, .post-template-template__cocoon article li {
    font-size: inherit; }

.search ::placeholder {
  font-weight: 300; }

.search .container main, .search .grid-wrapper main, .search #post-taxonomies .post-taxonomies-categories main, #post-taxonomies .search .post-taxonomies-categories main, .search #post-taxonomies .post-taxonomies-tags main, #post-taxonomies .search .post-taxonomies-tags main, .search .stats-post-grid .tve_post_grid_wrapper .tve_pg_row main, .stats-post-grid .tve_post_grid_wrapper .search .tve_pg_row main, .search .cc-grower .cc-window.cc-banner main, .cc-grower .search .cc-window.cc-banner main, .search .product-list__featured > .tcb-flex-row main, .search .testimonials > .in main, .search .wuot__container main, .search #content #ais-wrapper main {
  width: 100%; }
  @media (min-width: 768px) {
    .search .container main, .search .grid-wrapper main, .search #post-taxonomies .post-taxonomies-categories main, #post-taxonomies .search .post-taxonomies-categories main, .search #post-taxonomies .post-taxonomies-tags main, #post-taxonomies .search .post-taxonomies-tags main, .search .stats-post-grid .tve_post_grid_wrapper .tve_pg_row main, .stats-post-grid .tve_post_grid_wrapper .search .tve_pg_row main, .search .cc-grower .cc-window.cc-banner main, .cc-grower .search .cc-window.cc-banner main, .search .product-list__featured > .tcb-flex-row main, .search .testimonials > .in main, .search .wuot__container main, .search #content #ais-wrapper main {
      width: 80%; } }
  .search .container main .posts, .search .grid-wrapper main .posts, .search #post-taxonomies .post-taxonomies-categories main .posts, #post-taxonomies .search .post-taxonomies-categories main .posts, .search #post-taxonomies .post-taxonomies-tags main .posts, #post-taxonomies .search .post-taxonomies-tags main .posts, .search .stats-post-grid .tve_post_grid_wrapper .tve_pg_row main .posts, .stats-post-grid .tve_post_grid_wrapper .search .tve_pg_row main .posts, .search .cc-grower .cc-window.cc-banner main .posts, .cc-grower .search .cc-window.cc-banner main .posts, .search .product-list__featured > .tcb-flex-row main .posts, .search .testimonials > .in main .posts, .search .wuot__container main .posts, .search #content #ais-wrapper main .posts {
    width: 100%; }

.search .container aside, .search .grid-wrapper aside, .search #post-taxonomies .post-taxonomies-categories aside, #post-taxonomies .search .post-taxonomies-categories aside, .search #post-taxonomies .post-taxonomies-tags aside, #post-taxonomies .search .post-taxonomies-tags aside, .search .stats-post-grid .tve_post_grid_wrapper .tve_pg_row aside, .stats-post-grid .tve_post_grid_wrapper .search .tve_pg_row aside, .search .cc-grower .cc-window.cc-banner aside, .cc-grower .search .cc-window.cc-banner aside, .search .product-list__featured > .tcb-flex-row aside, .search .testimonials > .in aside, .search .wuot__container aside, .search #content #ais-wrapper aside {
  padding: 0 1rem 0 0;
  font-size: 1.2rem;
  display: none; }
  @media (min-width: 768px) {
    .search .container aside, .search .grid-wrapper aside, .search #post-taxonomies .post-taxonomies-categories aside, #post-taxonomies .search .post-taxonomies-categories aside, .search #post-taxonomies .post-taxonomies-tags aside, #post-taxonomies .search .post-taxonomies-tags aside, .search .stats-post-grid .tve_post_grid_wrapper .tve_pg_row aside, .stats-post-grid .tve_post_grid_wrapper .search .tve_pg_row aside, .search .cc-grower .cc-window.cc-banner aside, .cc-grower .search .cc-window.cc-banner aside, .search .product-list__featured > .tcb-flex-row aside, .search .testimonials > .in aside, .search .wuot__container aside, .search #content #ais-wrapper aside {
      display: block;
      width: 20%; } }

.search-no-results input, .search-no-results textarea {
  background-color: #efefef;
  box-shadow: none; }

.search .resources-promo {
  background-color: #efefef; }

.search #content {
  background-color: #efefef; }
  .search #content .container, .search #content .grid-wrapper, .search #content #post-taxonomies .post-taxonomies-categories, #post-taxonomies .search #content .post-taxonomies-categories,
  .search #content #post-taxonomies .post-taxonomies-tags, #post-taxonomies .search #content .post-taxonomies-tags, .search #content .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .search #content .tve_pg_row, .search #content .cc-grower .cc-window.cc-banner, .cc-grower .search #content .cc-window.cc-banner, .search #content .product-list__featured > .tcb-flex-row, .search #content .testimonials > .in, .search #content .wuot__container, .search #content #ais-wrapper {
    display: flex;
    flex-flow: row wrap;
    padding-top: 10px;
    padding-bottom: 10px; }
    @media (min-width: 768px) {
      .search #content .container, .search #content .grid-wrapper, .search #content #post-taxonomies .post-taxonomies-categories, #post-taxonomies .search #content .post-taxonomies-categories,
      .search #content #post-taxonomies .post-taxonomies-tags, #post-taxonomies .search #content .post-taxonomies-tags, .search #content .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper .search #content .tve_pg_row, .search #content .cc-grower .cc-window.cc-banner, .cc-grower .search #content .cc-window.cc-banner, .search #content .product-list__featured > .tcb-flex-row, .search #content .testimonials > .in, .search #content .wuot__container, .search #content #ais-wrapper {
        padding-top: 3rem;
        padding-bottom: 3rem; } }
  @media (min-width: 768px) {
    .search #content #ais-wrapper {
      flex-flow: row wrap; } }
  @media (min-width: 768px) {
    .search #content #ais-wrapper main#ais-main {
      flex: 0 1 auto;
      width: 80%; } }
  @media (min-width: 768px) {
    .search #content #ais-wrapper #ais-facets {
      flex: 0 1 auto;
      width: 20%; } }
  .search #content .ais-pagination {
    padding: 0;
    text-align: center; }

.search .posts#hits_zendesk .post {
  height: auto; }
  .search .posts#hits_zendesk .post .in:after {
    background: linear-gradient(rgba(255, 255, 255, 0) 60%, white 80%) no-repeat; }
  @media (min-width: 480px) {
    .search .posts#hits_zendesk .post__title {
      margin: 15px 0 10px; } }

.search .posts .post {
  width: 100%;
  height: auto;
  margin-bottom: 0; }
  .search .posts .post__image {
    display: none; }
    @media (min-width: 480px) {
      .search .posts .post__image {
        display: block; } }
  @media (min-width: 480px) {
    .search .posts .post__title {
      margin-bottom: 10px; } }
  .search .posts .post__title h4 {
    display: inline; }
    @media (min-width: 480px) {
      .search .posts .post__title h4 {
        display: block; } }
  .search .posts .post__title .post-type {
    display: none; }
    @media (min-width: 480px) {
      .search .posts .post__title .post-type {
        display: inline-block; } }

.search .posts .post-type {
  background: none;
  display: inline-block;
  padding: 8px 12px 6px;
  border-radius: 5px;
  color: #8fbac1;
  font-size: 1.05rem;
  margin-top: 0px;
  font-weight: 600;
  border: 1px solid #c1dde2; }

.search aside h1, .search aside h2, .search aside #comments #reply-title, #comments .search aside #reply-title, .search aside h3, .search aside h4, .search aside h5 {
  font-weight: bold;
  color: #333; }

.search aside h3 {
  font-size: 20px; }

.search aside h5 {
  font-size: 15px; }

/* Search dropdown */
.algolia-autocomplete {
  display: none !important; }
  .algolia-autocomplete.open {
    display: block !important; }
  .algolia-autocomplete .aa-dropdown-menu {
    font-family: "DIN2014-Regular", sans-serif; }
  .algolia-autocomplete a {
    background-image: none; }

.pulsating-sensor {
  position: relative; }
  .pulsating-sensor .inner {
    bottom: -30px;
    text-align: center;
    width: 100%; }
    .pulsating-sensor .inner .pulse-icon .icon-wrap {
      color: #ff8000;
      background: #fff; }

.point-mesh {
  background-color: #54ab95;
  position: relative;
  overflow: hidden; }
  .point-mesh canvas {
    position: absolute;
    display: block;
    top: 0;
    left: 0; }

body.page-template-template__page__technology,
body.page-template-template__hvac-manufacturers {
  text-align: center; }
  body.page-template-template__page__technology #phantom,
  body.page-template-template__hvac-manufacturers #phantom {
    display: none; }
  @media (max-width: 770px) {
    body.page-template-template__page__technology,
    body.page-template-template__hvac-manufacturers {
      text-align: left; } }

#ai {
  background-color: #e0ebf5; }
  @media (min-width: 768px) {
    #ai.section, .stats-post-grid #ai.tve_post_grid_wrapper, #ai.cc-grower, #ai.testimonials, #ai.wuot, header#ai.article-header {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 0; }
      #ai.section .container, .stats-post-grid #ai.tve_post_grid_wrapper .container, #ai.cc-grower .container, #ai.testimonials .container, #ai.wuot .container, header#ai.article-header .container, #ai.section .grid-wrapper, .stats-post-grid #ai.tve_post_grid_wrapper .grid-wrapper, #ai.cc-grower .grid-wrapper, #ai.testimonials .grid-wrapper, #ai.wuot .grid-wrapper, header#ai.article-header .grid-wrapper, #ai.section #post-taxonomies .post-taxonomies-categories, #post-taxonomies #ai.section .post-taxonomies-categories, .stats-post-grid #ai.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-categories, #post-taxonomies .stats-post-grid #ai.tve_post_grid_wrapper .post-taxonomies-categories, #ai.cc-grower #post-taxonomies .post-taxonomies-categories, #post-taxonomies #ai.cc-grower .post-taxonomies-categories, #ai.testimonials #post-taxonomies .post-taxonomies-categories, #post-taxonomies #ai.testimonials .post-taxonomies-categories, #ai.wuot #post-taxonomies .post-taxonomies-categories, #post-taxonomies #ai.wuot .post-taxonomies-categories, header#ai.article-header #post-taxonomies .post-taxonomies-categories, #post-taxonomies header#ai.article-header .post-taxonomies-categories,
      #ai.section #post-taxonomies .post-taxonomies-tags, #post-taxonomies #ai.section .post-taxonomies-tags,
      .stats-post-grid #ai.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-tags, #post-taxonomies .stats-post-grid #ai.tve_post_grid_wrapper .post-taxonomies-tags,
      #ai.cc-grower #post-taxonomies .post-taxonomies-tags, #post-taxonomies #ai.cc-grower .post-taxonomies-tags,
      #ai.testimonials #post-taxonomies .post-taxonomies-tags, #post-taxonomies #ai.testimonials .post-taxonomies-tags,
      #ai.wuot #post-taxonomies .post-taxonomies-tags, #post-taxonomies #ai.wuot .post-taxonomies-tags,
      header#ai.article-header #post-taxonomies .post-taxonomies-tags, #post-taxonomies header#ai.article-header .post-taxonomies-tags, #ai.section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #ai.section .tve_pg_row, .stats-post-grid #ai.tve_post_grid_wrapper .tve_pg_row, #ai.cc-grower .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #ai.cc-grower .tve_pg_row, #ai.testimonials .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #ai.testimonials .tve_pg_row, #ai.wuot .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper #ai.wuot .tve_pg_row, header#ai.article-header .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper header#ai.article-header .tve_pg_row, #ai.section .cc-grower .cc-window.cc-banner, .cc-grower #ai.section .cc-window.cc-banner, .stats-post-grid #ai.tve_post_grid_wrapper .cc-grower .cc-window.cc-banner, .cc-grower .stats-post-grid #ai.tve_post_grid_wrapper .cc-window.cc-banner, #ai.cc-grower .cc-window.cc-banner, #ai.testimonials .cc-grower .cc-window.cc-banner, .cc-grower #ai.testimonials .cc-window.cc-banner, #ai.wuot .cc-grower .cc-window.cc-banner, .cc-grower #ai.wuot .cc-window.cc-banner, header#ai.article-header .cc-grower .cc-window.cc-banner, .cc-grower header#ai.article-header .cc-window.cc-banner, #ai.section .product-list__featured > .tcb-flex-row, .stats-post-grid #ai.tve_post_grid_wrapper .product-list__featured > .tcb-flex-row, #ai.cc-grower .product-list__featured > .tcb-flex-row, #ai.testimonials .product-list__featured > .tcb-flex-row, #ai.wuot .product-list__featured > .tcb-flex-row, header#ai.article-header .product-list__featured > .tcb-flex-row, #ai.section .testimonials > .in, .stats-post-grid #ai.tve_post_grid_wrapper .testimonials > .in, #ai.cc-grower .testimonials > .in, #ai.testimonials .testimonials > .in, #ai.wuot .testimonials > .in, header#ai.article-header .testimonials > .in, #ai.section .wuot__container, .stats-post-grid #ai.tve_post_grid_wrapper .wuot__container, #ai.cc-grower .wuot__container, #ai.testimonials .wuot__container, #ai.wuot .wuot__container, header#ai.article-header .wuot__container, #ai.section .search #content #ais-wrapper, .search #content #ai.section #ais-wrapper, .stats-post-grid #ai.tve_post_grid_wrapper .search #content #ais-wrapper, .search #content .stats-post-grid #ai.tve_post_grid_wrapper #ais-wrapper, #ai.cc-grower .search #content #ais-wrapper, .search #content #ai.cc-grower #ais-wrapper, #ai.testimonials .search #content #ais-wrapper, .search #content #ai.testimonials #ais-wrapper, #ai.wuot .search #content #ais-wrapper, .search #content #ai.wuot #ais-wrapper, header#ai.article-header .search #content #ais-wrapper, .search #content header#ai.article-header #ais-wrapper {
        max-width: 100%; }
        #ai.section .container .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .container .media-object:last-of-type, #ai.cc-grower .container .media-object:last-of-type, #ai.testimonials .container .media-object:last-of-type, #ai.wuot .container .media-object:last-of-type, header#ai.article-header .container .media-object:last-of-type, #ai.section .grid-wrapper .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .grid-wrapper .media-object:last-of-type, #ai.cc-grower .grid-wrapper .media-object:last-of-type, #ai.testimonials .grid-wrapper .media-object:last-of-type, #ai.wuot .grid-wrapper .media-object:last-of-type, header#ai.article-header .grid-wrapper .media-object:last-of-type, #ai.section #post-taxonomies .post-taxonomies-categories .media-object:last-of-type, #post-taxonomies #ai.section .post-taxonomies-categories .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-categories .media-object:last-of-type, #post-taxonomies .stats-post-grid #ai.tve_post_grid_wrapper .post-taxonomies-categories .media-object:last-of-type, #ai.cc-grower #post-taxonomies .post-taxonomies-categories .media-object:last-of-type, #post-taxonomies #ai.cc-grower .post-taxonomies-categories .media-object:last-of-type, #ai.testimonials #post-taxonomies .post-taxonomies-categories .media-object:last-of-type, #post-taxonomies #ai.testimonials .post-taxonomies-categories .media-object:last-of-type, #ai.wuot #post-taxonomies .post-taxonomies-categories .media-object:last-of-type, #post-taxonomies #ai.wuot .post-taxonomies-categories .media-object:last-of-type, header#ai.article-header #post-taxonomies .post-taxonomies-categories .media-object:last-of-type, #post-taxonomies header#ai.article-header .post-taxonomies-categories .media-object:last-of-type, #ai.section #post-taxonomies .post-taxonomies-tags .media-object:last-of-type, #post-taxonomies #ai.section .post-taxonomies-tags .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-tags .media-object:last-of-type, #post-taxonomies .stats-post-grid #ai.tve_post_grid_wrapper .post-taxonomies-tags .media-object:last-of-type, #ai.cc-grower #post-taxonomies .post-taxonomies-tags .media-object:last-of-type, #post-taxonomies #ai.cc-grower .post-taxonomies-tags .media-object:last-of-type, #ai.testimonials #post-taxonomies .post-taxonomies-tags .media-object:last-of-type, #post-taxonomies #ai.testimonials .post-taxonomies-tags .media-object:last-of-type, #ai.wuot #post-taxonomies .post-taxonomies-tags .media-object:last-of-type, #post-taxonomies #ai.wuot .post-taxonomies-tags .media-object:last-of-type, header#ai.article-header #post-taxonomies .post-taxonomies-tags .media-object:last-of-type, #post-taxonomies header#ai.article-header .post-taxonomies-tags .media-object:last-of-type, #ai.section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:last-of-type, .stats-post-grid .tve_post_grid_wrapper #ai.section .tve_pg_row .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .tve_pg_row .media-object:last-of-type, #ai.cc-grower .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:last-of-type, .stats-post-grid .tve_post_grid_wrapper #ai.cc-grower .tve_pg_row .media-object:last-of-type, #ai.testimonials .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:last-of-type, .stats-post-grid .tve_post_grid_wrapper #ai.testimonials .tve_pg_row .media-object:last-of-type, #ai.wuot .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:last-of-type, .stats-post-grid .tve_post_grid_wrapper #ai.wuot .tve_pg_row .media-object:last-of-type, header#ai.article-header .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object:last-of-type, .stats-post-grid .tve_post_grid_wrapper header#ai.article-header .tve_pg_row .media-object:last-of-type, #ai.section .cc-grower .cc-window.cc-banner .media-object:last-of-type, .cc-grower #ai.section .cc-window.cc-banner .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .cc-grower .cc-window.cc-banner .media-object:last-of-type, .cc-grower .stats-post-grid #ai.tve_post_grid_wrapper .cc-window.cc-banner .media-object:last-of-type, #ai.cc-grower .cc-window.cc-banner .media-object:last-of-type, #ai.testimonials .cc-grower .cc-window.cc-banner .media-object:last-of-type, .cc-grower #ai.testimonials .cc-window.cc-banner .media-object:last-of-type, #ai.wuot .cc-grower .cc-window.cc-banner .media-object:last-of-type, .cc-grower #ai.wuot .cc-window.cc-banner .media-object:last-of-type, header#ai.article-header .cc-grower .cc-window.cc-banner .media-object:last-of-type, .cc-grower header#ai.article-header .cc-window.cc-banner .media-object:last-of-type, #ai.section .product-list__featured > .tcb-flex-row .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .product-list__featured > .tcb-flex-row .media-object:last-of-type, #ai.cc-grower .product-list__featured > .tcb-flex-row .media-object:last-of-type, #ai.testimonials .product-list__featured > .tcb-flex-row .media-object:last-of-type, #ai.wuot .product-list__featured > .tcb-flex-row .media-object:last-of-type, header#ai.article-header .product-list__featured > .tcb-flex-row .media-object:last-of-type, #ai.section .testimonials > .in .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .testimonials > .in .media-object:last-of-type, #ai.cc-grower .testimonials > .in .media-object:last-of-type, #ai.testimonials .testimonials > .in .media-object:last-of-type, #ai.wuot .testimonials > .in .media-object:last-of-type, header#ai.article-header .testimonials > .in .media-object:last-of-type, #ai.section .wuot__container .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .wuot__container .media-object:last-of-type, #ai.cc-grower .wuot__container .media-object:last-of-type, #ai.testimonials .wuot__container .media-object:last-of-type, #ai.wuot .wuot__container .media-object:last-of-type, header#ai.article-header .wuot__container .media-object:last-of-type, #ai.section .search #content #ais-wrapper .media-object:last-of-type, .search #content #ai.section #ais-wrapper .media-object:last-of-type, .stats-post-grid #ai.tve_post_grid_wrapper .search #content #ais-wrapper .media-object:last-of-type, .search #content .stats-post-grid #ai.tve_post_grid_wrapper #ais-wrapper .media-object:last-of-type, #ai.cc-grower .search #content #ais-wrapper .media-object:last-of-type, .search #content #ai.cc-grower #ais-wrapper .media-object:last-of-type, #ai.testimonials .search #content #ais-wrapper .media-object:last-of-type, .search #content #ai.testimonials #ais-wrapper .media-object:last-of-type, #ai.wuot .search #content #ais-wrapper .media-object:last-of-type, .search #content #ai.wuot #ais-wrapper .media-object:last-of-type, header#ai.article-header .search #content #ais-wrapper .media-object:last-of-type, .search #content header#ai.article-header #ais-wrapper .media-object:last-of-type {
          margin-bottom: 0; }
        #ai.section .container .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .container .media-object-content, #ai.cc-grower .container .media-object-content, #ai.testimonials .container .media-object-content, #ai.wuot .container .media-object-content, header#ai.article-header .container .media-object-content, #ai.section .grid-wrapper .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .grid-wrapper .media-object-content, #ai.cc-grower .grid-wrapper .media-object-content, #ai.testimonials .grid-wrapper .media-object-content, #ai.wuot .grid-wrapper .media-object-content, header#ai.article-header .grid-wrapper .media-object-content, #ai.section #post-taxonomies .post-taxonomies-categories .media-object-content, #post-taxonomies #ai.section .post-taxonomies-categories .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-categories .media-object-content, #post-taxonomies .stats-post-grid #ai.tve_post_grid_wrapper .post-taxonomies-categories .media-object-content, #ai.cc-grower #post-taxonomies .post-taxonomies-categories .media-object-content, #post-taxonomies #ai.cc-grower .post-taxonomies-categories .media-object-content, #ai.testimonials #post-taxonomies .post-taxonomies-categories .media-object-content, #post-taxonomies #ai.testimonials .post-taxonomies-categories .media-object-content, #ai.wuot #post-taxonomies .post-taxonomies-categories .media-object-content, #post-taxonomies #ai.wuot .post-taxonomies-categories .media-object-content, header#ai.article-header #post-taxonomies .post-taxonomies-categories .media-object-content, #post-taxonomies header#ai.article-header .post-taxonomies-categories .media-object-content, #ai.section #post-taxonomies .post-taxonomies-tags .media-object-content, #post-taxonomies #ai.section .post-taxonomies-tags .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-tags .media-object-content, #post-taxonomies .stats-post-grid #ai.tve_post_grid_wrapper .post-taxonomies-tags .media-object-content, #ai.cc-grower #post-taxonomies .post-taxonomies-tags .media-object-content, #post-taxonomies #ai.cc-grower .post-taxonomies-tags .media-object-content, #ai.testimonials #post-taxonomies .post-taxonomies-tags .media-object-content, #post-taxonomies #ai.testimonials .post-taxonomies-tags .media-object-content, #ai.wuot #post-taxonomies .post-taxonomies-tags .media-object-content, #post-taxonomies #ai.wuot .post-taxonomies-tags .media-object-content, header#ai.article-header #post-taxonomies .post-taxonomies-tags .media-object-content, #post-taxonomies header#ai.article-header .post-taxonomies-tags .media-object-content, #ai.section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object-content, .stats-post-grid .tve_post_grid_wrapper #ai.section .tve_pg_row .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .tve_pg_row .media-object-content, #ai.cc-grower .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object-content, .stats-post-grid .tve_post_grid_wrapper #ai.cc-grower .tve_pg_row .media-object-content, #ai.testimonials .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object-content, .stats-post-grid .tve_post_grid_wrapper #ai.testimonials .tve_pg_row .media-object-content, #ai.wuot .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object-content, .stats-post-grid .tve_post_grid_wrapper #ai.wuot .tve_pg_row .media-object-content, header#ai.article-header .stats-post-grid .tve_post_grid_wrapper .tve_pg_row .media-object-content, .stats-post-grid .tve_post_grid_wrapper header#ai.article-header .tve_pg_row .media-object-content, #ai.section .cc-grower .cc-window.cc-banner .media-object-content, .cc-grower #ai.section .cc-window.cc-banner .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .cc-grower .cc-window.cc-banner .media-object-content, .cc-grower .stats-post-grid #ai.tve_post_grid_wrapper .cc-window.cc-banner .media-object-content, #ai.cc-grower .cc-window.cc-banner .media-object-content, #ai.testimonials .cc-grower .cc-window.cc-banner .media-object-content, .cc-grower #ai.testimonials .cc-window.cc-banner .media-object-content, #ai.wuot .cc-grower .cc-window.cc-banner .media-object-content, .cc-grower #ai.wuot .cc-window.cc-banner .media-object-content, header#ai.article-header .cc-grower .cc-window.cc-banner .media-object-content, .cc-grower header#ai.article-header .cc-window.cc-banner .media-object-content, #ai.section .product-list__featured > .tcb-flex-row .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .product-list__featured > .tcb-flex-row .media-object-content, #ai.cc-grower .product-list__featured > .tcb-flex-row .media-object-content, #ai.testimonials .product-list__featured > .tcb-flex-row .media-object-content, #ai.wuot .product-list__featured > .tcb-flex-row .media-object-content, header#ai.article-header .product-list__featured > .tcb-flex-row .media-object-content, #ai.section .testimonials > .in .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .testimonials > .in .media-object-content, #ai.cc-grower .testimonials > .in .media-object-content, #ai.testimonials .testimonials > .in .media-object-content, #ai.wuot .testimonials > .in .media-object-content, header#ai.article-header .testimonials > .in .media-object-content, #ai.section .wuot__container .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .wuot__container .media-object-content, #ai.cc-grower .wuot__container .media-object-content, #ai.testimonials .wuot__container .media-object-content, #ai.wuot .wuot__container .media-object-content, header#ai.article-header .wuot__container .media-object-content, #ai.section .search #content #ais-wrapper .media-object-content, .search #content #ai.section #ais-wrapper .media-object-content, .stats-post-grid #ai.tve_post_grid_wrapper .search #content #ais-wrapper .media-object-content, .search #content .stats-post-grid #ai.tve_post_grid_wrapper #ais-wrapper .media-object-content, #ai.cc-grower .search #content #ais-wrapper .media-object-content, .search #content #ai.cc-grower #ais-wrapper .media-object-content, #ai.testimonials .search #content #ais-wrapper .media-object-content, .search #content #ai.testimonials #ais-wrapper .media-object-content, #ai.wuot .search #content #ais-wrapper .media-object-content, .search #content #ai.wuot #ais-wrapper .media-object-content, header#ai.article-header .search #content #ais-wrapper .media-object-content, .search #content header#ai.article-header #ais-wrapper .media-object-content {
          padding-right: 5%; } }
  @media (min-width: 768px) {
    #ai .content {
      display: grid;
      grid-template-columns: 45% 45%;
      grid-gap: 10%; } }
  #ai .media-object-container {
    text-align: left; }
  #ai .media-object-media {
    position: relative;
    top: 20px;
    right: 20px; }

#cloud-header {
  color: white;
  padding-top: 5em;
  background-color: #8ec1da;
  background-image: url("assets/images/tech/bg.png");
  background-position: left bottom;
  background-repeat: repeat-x;
  animation: foobot-clouds 300s linear infinite;
  min-height: 400px; }
  #cloud-header .h1, #cloud-header h1, #cloud-header .h1-reset, #cloud-header blockquote.fancy:before, #cloud-header .blockquote-fancy:before, #cloud-header .h2, #cloud-header h2, #cloud-header #comments #reply-title, #comments #cloud-header #reply-title, #cloud-header .h2-reset, #cloud-header .h3, #cloud-header h3, #cloud-header .h3-reset, #cloud-header .media-object .media-object-content header .entry-title, .media-object .media-object-content header #cloud-header .entry-title, #cloud-header .before-after-labels > *, #cloud-header .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #cloud-header footer, #cloud-header .h4, #cloud-header h4, #cloud-header .h4-reset, #cloud-header blockquote.fancy, #cloud-header .h5, #cloud-header h5, #cloud-header .h5-reset, #cloud-header #sensors .accordion .tab label, #sensors .accordion .tab #cloud-header label, #cloud-header #sensors .accordion .tab table th, #sensors .accordion .tab table #cloud-header th, #cloud-header table #sensors .accordion .tab th, table #sensors .accordion .tab #cloud-header th, #cloud-header #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #cloud-header .disclaimer, #cloud-header .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #cloud-header .disclaimer, #cloud-header .h6, #cloud-header h6, #cloud-header .h6-reset, #cloud-header .widget-title {
    color: white; }
  #cloud-header a:link, #cloud-header a:visited {
    color: white; }
  #cloud-header a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #cloud-header a:active {
    color: #fff; }
  @media (min-width: 768px) {
    #cloud-header {
      min-height: 350px; } }

@keyframes foobot-clouds {
  from {
    background-position: 0 100%; }
  to {
    background-position: 100% 100%; } }

body.page-template-template__page__technology #cloud.section, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper, body.page-template-template__page__technology #cloud.cc-grower, body.page-template-template__page__technology #cloud.testimonials, body.page-template-template__page__technology #cloud.wuot, body.page-template-template__page__technology header#cloud.article-header {
  text-align: center;
  background: #c0deed;
  background: linear-gradient(0deg, #ffffff 0%, #c0deed 100%); }
  body.page-template-template__page__technology #cloud.section h3, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper h3, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper h3, body.page-template-template__page__technology #cloud.cc-grower h3, body.page-template-template__page__technology #cloud.testimonials h3, body.page-template-template__page__technology #cloud.wuot h3, body.page-template-template__page__technology header#cloud.article-header h3 {
    color: #ff8000;
    font-weight: 500;
    margin: 0 0 1rem 0;
    padding: 0; }
  @media (min-width: 768px) {
    body.page-template-template__page__technology #cloud.section .container, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .container, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .container, body.page-template-template__page__technology #cloud.cc-grower .container, body.page-template-template__page__technology #cloud.testimonials .container, body.page-template-template__page__technology #cloud.wuot .container, body.page-template-template__page__technology header#cloud.article-header .container, body.page-template-template__page__technology #cloud.section .grid-wrapper, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .grid-wrapper, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .grid-wrapper, body.page-template-template__page__technology #cloud.cc-grower .grid-wrapper, body.page-template-template__page__technology #cloud.testimonials .grid-wrapper, body.page-template-template__page__technology #cloud.wuot .grid-wrapper, body.page-template-template__page__technology header#cloud.article-header .grid-wrapper, body.page-template-template__page__technology #cloud.section #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cloud.section .post-taxonomies-categories, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .post-taxonomies-categories, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-categories, #post-taxonomies .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .post-taxonomies-categories, body.page-template-template__page__technology #cloud.cc-grower #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cloud.cc-grower .post-taxonomies-categories, body.page-template-template__page__technology #cloud.testimonials #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cloud.testimonials .post-taxonomies-categories, body.page-template-template__page__technology #cloud.wuot #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology #cloud.wuot .post-taxonomies-categories, body.page-template-template__page__technology header#cloud.article-header #post-taxonomies .post-taxonomies-categories, #post-taxonomies body.page-template-template__page__technology header#cloud.article-header .post-taxonomies-categories,
    body.page-template-template__page__technology #cloud.section #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cloud.section .post-taxonomies-tags,
    body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .post-taxonomies-tags, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper #post-taxonomies .post-taxonomies-tags, #post-taxonomies .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .post-taxonomies-tags,
    body.page-template-template__page__technology #cloud.cc-grower #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cloud.cc-grower .post-taxonomies-tags,
    body.page-template-template__page__technology #cloud.testimonials #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cloud.testimonials .post-taxonomies-tags,
    body.page-template-template__page__technology #cloud.wuot #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology #cloud.wuot .post-taxonomies-tags,
    body.page-template-template__page__technology header#cloud.article-header #post-taxonomies .post-taxonomies-tags, #post-taxonomies body.page-template-template__page__technology header#cloud.article-header .post-taxonomies-tags, body.page-template-template__page__technology #cloud.section .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cloud.section .tve_pg_row, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .tve_pg_row, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .tve_pg_row, body.page-template-template__page__technology #cloud.cc-grower .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cloud.cc-grower .tve_pg_row, body.page-template-template__page__technology #cloud.testimonials .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cloud.testimonials .tve_pg_row, body.page-template-template__page__technology #cloud.wuot .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology #cloud.wuot .tve_pg_row, body.page-template-template__page__technology header#cloud.article-header .stats-post-grid .tve_post_grid_wrapper .tve_pg_row, .stats-post-grid .tve_post_grid_wrapper body.page-template-template__page__technology header#cloud.article-header .tve_pg_row, body.page-template-template__page__technology #cloud.section .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cloud.section .cc-window.cc-banner, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .cc-window.cc-banner, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .cc-grower .cc-window.cc-banner, .cc-grower .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .cc-window.cc-banner, body.page-template-template__page__technology #cloud.cc-grower .cc-window.cc-banner, body.page-template-template__page__technology #cloud.testimonials .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cloud.testimonials .cc-window.cc-banner, body.page-template-template__page__technology #cloud.wuot .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology #cloud.wuot .cc-window.cc-banner, body.page-template-template__page__technology header#cloud.article-header .cc-grower .cc-window.cc-banner, .cc-grower body.page-template-template__page__technology header#cloud.article-header .cc-window.cc-banner, body.page-template-template__page__technology #cloud.section .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .product-list__featured > .tcb-flex-row, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cloud.cc-grower .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cloud.testimonials .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cloud.wuot .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology header#cloud.article-header .product-list__featured > .tcb-flex-row, body.page-template-template__page__technology #cloud.section .testimonials > .in, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .testimonials > .in, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .testimonials > .in, body.page-template-template__page__technology #cloud.cc-grower .testimonials > .in, body.page-template-template__page__technology #cloud.testimonials .testimonials > .in, body.page-template-template__page__technology #cloud.wuot .testimonials > .in, body.page-template-template__page__technology header#cloud.article-header .testimonials > .in, body.page-template-template__page__technology #cloud.section .wuot__container, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .wuot__container, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .wuot__container, body.page-template-template__page__technology #cloud.cc-grower .wuot__container, body.page-template-template__page__technology #cloud.testimonials .wuot__container, body.page-template-template__page__technology #cloud.wuot .wuot__container, body.page-template-template__page__technology header#cloud.article-header .wuot__container, body.page-template-template__page__technology #cloud.section .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cloud.section #ais-wrapper, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .search #content #ais-wrapper, .search #content body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper #ais-wrapper, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .search #content #ais-wrapper, .search #content .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper #ais-wrapper, body.page-template-template__page__technology #cloud.cc-grower .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cloud.cc-grower #ais-wrapper, body.page-template-template__page__technology #cloud.testimonials .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cloud.testimonials #ais-wrapper, body.page-template-template__page__technology #cloud.wuot .search #content #ais-wrapper, .search #content body.page-template-template__page__technology #cloud.wuot #ais-wrapper, body.page-template-template__page__technology header#cloud.article-header .search #content #ais-wrapper, .search #content body.page-template-template__page__technology header#cloud.article-header #ais-wrapper {
      display: grid;
      grid-column-gap: 2rem;
      grid-row-gap: 2rem;
      align-items: center;
      grid-auto-flow: column;
      grid-template-columns: repeat(4, 1fr); } }
  body.page-template-template__page__technology #cloud.section .media-object-media, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-media, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-media, body.page-template-template__page__technology #cloud.cc-grower .media-object-media, body.page-template-template__page__technology #cloud.testimonials .media-object-media, body.page-template-template__page__technology #cloud.wuot .media-object-media, body.page-template-template__page__technology header#cloud.article-header .media-object-media {
    margin-bottom: 1rem;
    padding: 0 25%; }
    @media (min-width: 768px) {
      body.page-template-template__page__technology #cloud.section .media-object-media, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-media, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-media, body.page-template-template__page__technology #cloud.cc-grower .media-object-media, body.page-template-template__page__technology #cloud.testimonials .media-object-media, body.page-template-template__page__technology #cloud.wuot .media-object-media, body.page-template-template__page__technology header#cloud.article-header .media-object-media {
        margin: 0;
        padding: 0;
        grid-column: 1/2; } }
    body.page-template-template__page__technology #cloud.section .media-object-media:nth-of-type(even), body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-media:nth-of-type(even), .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-media:nth-of-type(even), body.page-template-template__page__technology #cloud.cc-grower .media-object-media:nth-of-type(even), body.page-template-template__page__technology #cloud.testimonials .media-object-media:nth-of-type(even), body.page-template-template__page__technology #cloud.wuot .media-object-media:nth-of-type(even), body.page-template-template__page__technology header#cloud.article-header .media-object-media:nth-of-type(even) {
      grid-column: 4/5; }
  body.page-template-template__page__technology #cloud.section .media-object-content, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-content, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-content, body.page-template-template__page__technology #cloud.cc-grower .media-object-content, body.page-template-template__page__technology #cloud.testimonials .media-object-content, body.page-template-template__page__technology #cloud.wuot .media-object-content, body.page-template-template__page__technology header#cloud.article-header .media-object-content {
    margin-bottom: 4rem;
    max-width: 40rem; }
    @media (min-width: 768px) {
      body.page-template-template__page__technology #cloud.section .media-object-content, body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-content, .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-content, body.page-template-template__page__technology #cloud.cc-grower .media-object-content, body.page-template-template__page__technology #cloud.testimonials .media-object-content, body.page-template-template__page__technology #cloud.wuot .media-object-content, body.page-template-template__page__technology header#cloud.article-header .media-object-content {
        margin: 0;
        text-align: left;
        grid-column: 2/5; } }
    body.page-template-template__page__technology #cloud.section .media-object-content:nth-of-type(even), body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-content:nth-of-type(even), .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-content:nth-of-type(even), body.page-template-template__page__technology #cloud.cc-grower .media-object-content:nth-of-type(even), body.page-template-template__page__technology #cloud.testimonials .media-object-content:nth-of-type(even), body.page-template-template__page__technology #cloud.wuot .media-object-content:nth-of-type(even), body.page-template-template__page__technology header#cloud.article-header .media-object-content:nth-of-type(even) {
      grid-column: 1/4; }
      @media (min-width: 768px) {
        body.page-template-template__page__technology #cloud.section .media-object-content:nth-of-type(even), body.page-template-template__page__technology .stats-post-grid #cloud.tve_post_grid_wrapper .media-object-content:nth-of-type(even), .stats-post-grid body.page-template-template__page__technology #cloud.tve_post_grid_wrapper .media-object-content:nth-of-type(even), body.page-template-template__page__technology #cloud.cc-grower .media-object-content:nth-of-type(even), body.page-template-template__page__technology #cloud.testimonials .media-object-content:nth-of-type(even), body.page-template-template__page__technology #cloud.wuot .media-object-content:nth-of-type(even), body.page-template-template__page__technology header#cloud.article-header .media-object-content:nth-of-type(even) {
          justify-self: end; } }

#testimonial {
  color: white;
  background-color: #639bcf;
  position: relative;
  z-index: 2; }
  #testimonial .h1, #testimonial h1, #testimonial .h1-reset, #testimonial blockquote.fancy:before, #testimonial .blockquote-fancy:before, #testimonial .h2, #testimonial h2, #testimonial #comments #reply-title, #comments #testimonial #reply-title, #testimonial .h2-reset, #testimonial .h3, #testimonial h3, #testimonial .h3-reset, #testimonial .media-object .media-object-content header .entry-title, .media-object .media-object-content header #testimonial .entry-title, #testimonial .before-after-labels > *, #testimonial .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #testimonial footer, #testimonial .h4, #testimonial h4, #testimonial .h4-reset, #testimonial blockquote.fancy, #testimonial .h5, #testimonial h5, #testimonial .h5-reset, #testimonial #sensors .accordion .tab label, #sensors .accordion .tab #testimonial label, #testimonial #sensors .accordion .tab table th, #sensors .accordion .tab table #testimonial th, #testimonial table #sensors .accordion .tab th, table #sensors .accordion .tab #testimonial th, #testimonial #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #testimonial .disclaimer, #testimonial .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #testimonial .disclaimer, #testimonial .h6, #testimonial h6, #testimonial .h6-reset, #testimonial .widget-title {
    color: white; }
  #testimonial a:link, #testimonial a:visited {
    color: white; }
  #testimonial a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #testimonial a:active {
    color: #fff; }

#sensors {
  background-color: #fff;
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 768px) {
    #sensors {
      padding-left: 10%;
      padding-right: 10%; } }
  @media (min-width: 768px) {
    #sensors .section-header {
      margin-bottom: 3em; } }
  #sensors .section-header .header-secondary {
    font-size: 1.991703296rem; }
  #sensors .section-header span.header-primary {
    display: block; }
    @media (min-width: 768px) {
      #sensors .section-header span.header-primary {
        font-size: 5.6289911604rem;
        line-height: 1.5; } }
  #sensors .accordion {
    margin: 0 auto;
    max-width: 50em;
    padding: 0; }
    @media (min-width: 768px) {
      #sensors .accordion {
        padding: 0 5%; } }
    #sensors .accordion .tab {
      margin-bottom: 0;
      padding: 1rem 0;
      border-bottom: 2px solid #cad1d8;
      background: #fff;
      padding: 20px; }
      #sensors .accordion .tab:last-of-type {
        border-bottom: none; }
      #sensors .accordion .tab label, #sensors .accordion .tab table th, table #sensors .accordion .tab th, #sensors .accordion .tab .wpcf7 .disclaimer, .wpcf7 #sensors .accordion .tab .disclaimer {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center; }
        #sensors .accordion .tab label:after, #sensors .accordion .tab table th:after, table #sensors .accordion .tab th:after, #sensors .accordion .tab .wpcf7 .disclaimer:after, .wpcf7 #sensors .accordion .tab .disclaimer:after {
          font-size: 2em;
          width: auto;
          line-height: 1;
          height: auto;
          top: 0; }
          @media (min-width: 768px) {
            #sensors .accordion .tab label:after, #sensors .accordion .tab table th:after, table #sensors .accordion .tab th:after, #sensors .accordion .tab .wpcf7 .disclaimer:after, .wpcf7 #sensors .accordion .tab .disclaimer:after {
              top: 0; } }
          @media (max-width: 770px) {
            #sensors .accordion .tab label:after, #sensors .accordion .tab table th:after, table #sensors .accordion .tab th:after, #sensors .accordion .tab .wpcf7 .disclaimer:after, .wpcf7 #sensors .accordion .tab .disclaimer:after {
              top: -4px;
              right: 0;
              bottom: initial;
              line-height: 32px;
              height: 40px;
              width: 40px;
              display: block; } }
    #sensors .accordion .icon, #sensors .accordion img.avatar, #sensors .accordion #cover .full-height-scroll-trigger:after, #cover #sensors .accordion .full-height-scroll-trigger:after {
      margin-right: 1rem;
      background-color: #fff;
      display: block; }
      #sensors .accordion .icon.icon-device-hardware, #sensors .accordion img.icon-device-hardware.avatar, #sensors .accordion #cover .icon-device-hardware.full-height-scroll-trigger:after, #cover #sensors .accordion .icon-device-hardware.full-height-scroll-trigger:after {
        background-image: url("assets/images/spritesheet.png");
        width: 60px;
        height: 60px;
        background-position: -444px -256px; }
      #sensors .accordion .icon.icon-device-software, #sensors .accordion img.icon-device-software.avatar, #sensors .accordion #cover .icon-device-software.full-height-scroll-trigger:after, #cover #sensors .accordion .icon-device-software.full-height-scroll-trigger:after {
        background-image: url("assets/images/spritesheet.png");
        width: 60px;
        height: 60px;
        background-position: -384px -256px; }
      #sensors .accordion .icon.icon-internet-connectivity, #sensors .accordion img.icon-internet-connectivity.avatar, #sensors .accordion #cover .icon-internet-connectivity.full-height-scroll-trigger:after, #cover #sensors .accordion .icon-internet-connectivity.full-height-scroll-trigger:after {
        background-image: url("assets/images/spritesheet.png");
        width: 60px;
        height: 60px;
        background-position: -384px -316px; }
      #sensors .accordion .icon.icon-cloud-platform, #sensors .accordion img.icon-cloud-platform.avatar, #sensors .accordion #cover .icon-cloud-platform.full-height-scroll-trigger:after, #cover #sensors .accordion .icon-cloud-platform.full-height-scroll-trigger:after {
        background-image: url("assets/images/spritesheet.png");
        width: 60px;
        height: 60px;
        background-position: -504px -316px; }
      #sensors .accordion .icon.icon-cloud-apps, #sensors .accordion img.icon-cloud-apps.avatar, #sensors .accordion #cover .icon-cloud-apps.full-height-scroll-trigger:after, #cover #sensors .accordion .icon-cloud-apps.full-height-scroll-trigger:after {
        background-image: url("assets/images/spritesheet.png");
        width: 60px;
        height: 60px;
        background-position: -60px -384px; }
      @media (max-width: 610px) {
        #sensors .accordion .icon, #sensors .accordion img.avatar, #sensors .accordion #cover .full-height-scroll-trigger:after, #cover #sensors .accordion .full-height-scroll-trigger:after {
          display: none; } }

@media (min-width: 768px) {
  #question .section-header {
    margin-bottom: 5em; } }

#question h3 {
  font-size: 32px;
  font-weight: 500; }

@media (min-width: 768px) {
  #question .media-object {
    margin-bottom: 6rem; } }

#question .media-object .media-object-content {
  padding: 0;
  text-align: left;
  font-size: 1.7169856rem; }

#question .media-object .media-object-media {
  margin-bottom: 2rem;
  text-align: center; }
  @media (max-width: 600px) {
    #question .media-object .media-object-media {
      text-align: left;
      margin-top: 40px; } }
  #question .media-object .media-object-media img {
    width: 33%; }

#question .cta-alt-content {
  color: white;
  padding: 2rem;
  background-color: #619ac7; }
  #question .cta-alt-content .h1, #question .cta-alt-content h1, #question .cta-alt-content .h1-reset, #question .cta-alt-content blockquote.fancy:before, #question .cta-alt-content .blockquote-fancy:before, #question .cta-alt-content .h2, #question .cta-alt-content h2, #question .cta-alt-content #comments #reply-title, #comments #question .cta-alt-content #reply-title, #question .cta-alt-content .h2-reset, #question .cta-alt-content .h3, #question .cta-alt-content h3, #question .cta-alt-content .h3-reset, #question .cta-alt-content .media-object .media-object-content header .entry-title, .media-object .media-object-content header #question .cta-alt-content .entry-title, #question .cta-alt-content .before-after-labels > *, #question .cta-alt-content .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #question .cta-alt-content footer, #question .cta-alt-content .h4, #question .cta-alt-content h4, #question .cta-alt-content .h4-reset, #question .cta-alt-content blockquote.fancy, #question .cta-alt-content .h5, #question .cta-alt-content h5, #question .cta-alt-content .h5-reset, #question .cta-alt-content #sensors .accordion .tab label, #sensors .accordion .tab #question .cta-alt-content label, #question .cta-alt-content #sensors .accordion .tab table th, #sensors .accordion .tab table #question .cta-alt-content th, #question .cta-alt-content table #sensors .accordion .tab th, table #sensors .accordion .tab #question .cta-alt-content th, #question .cta-alt-content #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #question .cta-alt-content .disclaimer, #question .cta-alt-content .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #question .cta-alt-content .disclaimer, #question .cta-alt-content .h6, #question .cta-alt-content h6, #question .cta-alt-content .h6-reset, #question .cta-alt-content .widget-title {
    color: white; }
  #question .cta-alt-content a:link, #question .cta-alt-content a:visited {
    color: white; }
  #question .cta-alt-content a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #question .cta-alt-content a:active {
    color: #fff; }
  @media (min-width: 1024px) {
    #question .cta-alt-content .section-title {
      margin: 0 1rem 0 0;
      display: inline-block; } }
  #question .cta-alt-content .button, #question .cta-alt-content input[type="submit"], #question .cta-alt-content textarea[type="submit"], #question .cta-alt-content input[type="reset"], #question .cta-alt-content textarea[type="reset"] {
    color: #fff !important;
    /* Mixin needs to overrule other palette colors */
    /* Important required to overrule mixin */ }

#testimonial .equal-split-text {
  text-align: left;
  width: 65%;
  margin-right: 5%;
  position: relative; }
  @media (max-width: 991px) {
    #testimonial .equal-split-text {
      width: 75%; } }
  @media (max-width: 770px) {
    #testimonial .equal-split-text {
      width: 100%;
      margin-right: 0; } }
  #testimonial .equal-split-text .opening-quotes {
    display: none; }
    @media (max-width: 991px) {
      #testimonial .equal-split-text .opening-quotes {
        display: inline; } }
  #testimonial .equal-split-text:after {
    content: "";
    position: absolute;
    top: 5px;
    left: -40px;
    width: 29px;
    height: 20px;
    background: url("assets/images/tech/quote.png") no-repeat; }
    @media (max-width: 991px) {
      #testimonial .equal-split-text:after {
        display: none; } }

#testimonial .equal-split-image {
  width: 30%; }
  @media (max-width: 991px) {
    #testimonial .equal-split-image {
      width: 20%; } }
  @media (max-width: 770px) {
    #testimonial .equal-split-image {
      display: none; } }
  #testimonial .equal-split-image img {
    max-width: 100%;
    height: auto; }

#testimonial #author {
  padding-left: 20px; }

#testimonial #testimonial-quote {
  font-size: 1.48016rem;
  font-weight: 300; }
  @media (max-width: 991px) {
    #testimonial #testimonial-quote {
      font-size: 1.276rem; } }

#testimonial .test-section-title {
  padding: 0 11%; }
  @media (max-width: 1090px) {
    #testimonial .test-section-title {
      padding: 0 5%; } }
  @media (max-width: 991px) {
    #testimonial .test-section-title {
      padding: 0; } }

#testimonial #blueair {
  margin: 40px 0; }
  @media (max-width: 991px) {
    #testimonial #blueair {
      max-width: 200px; } }
  @media (max-width: 770px) {
    #testimonial #blueair {
      display: none; } }

@media (max-width: 991px) {
  #testimonial img#author-image {
    max-width: 50px; } }

@media (max-width: 770px) {
  #testimonial .test-section-title {
    margin-top: 40px; } }

.flex-wrap-column {
  display: flex;
  align-items: center; }
  @media (max-width: 991px) {
    .flex-wrap-column.quote {
      align-items: flex-start; } }
  @media (max-width: 610px) {
    .flex-wrap-column.author {
      display: block; } }

.media-object-container.media-objects-boxed.flex {
  display: flex;
  flex-wrap: wrap; }

.media-object:last-of-type {
  margin-bottom: 2em; }

@media (max-width: 1020px) {
  .media-object-image {
    text-align: left; }
    .media-object-image img {
      width: 100%; } }

#offcanvas-main-nav .short_form {
  width: 87px !important;
  padding: 9px 0 9px 30px; }

#offcanvas-main-nav a.mm-title {
  display: none; }

#offcanvas-main-nav .flags_item_2 {
  width: auto !important;
  margin-top: 11px !important;
  margin-left: 0 !important; }

@media (max-width: 480px) {
  a.flag_lins.flag_lins_2 {
    padding: 2px !important; } }

@media (max-width: 480px) {
  .flags_item_2:before {
    display: none; }
  .border_link {
    background: #00add8; }
  #offcanvas-main-nav .flags_item_2 {
    display: block;
    margin-top: -14px !important;
    margin-left: 0 !important;
    width: 85px !important; } }

#question .media-object-image img {
  max-width: 50%;
  margin: 0 auto; }

@media (max-width: 610px) {
  #question .flex-ordering {
    display: flex;
    flex-direction: column; } }

@media (max-width: 610px) {
  #question .flex-ordering .media-object-media {
    order: 1; } }

@media (max-width: 610px) {
  #question .flex-ordering .media-object-content {
    order: 2; } }

@media (max-width: 770px) {
  #nest-img {
    text-align: center;
    margin: 40px 0; }
    #nest-img img {
      max-width: 150px; } }

@media (max-width: 600px) {
  #nest-img {
    text-align: left; } }

body.page-tech #cloud .media-object-media {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center; }

body.tve-l-open .mm-slideout {
  z-index: 20 !important; }

.button.thrive, input.thrive[type="submit"], textarea.thrive[type="submit"], input.thrive[type="reset"], textarea.thrive[type="reset"] {
  position: initial !important; }
  .button.thrive > span.text-wrap span, input.thrive[type="submit"] > span.text-wrap span, textarea.thrive[type="submit"] > span.text-wrap span, input.thrive[type="reset"] > span.text-wrap span, textarea.thrive[type="reset"] > span.text-wrap span {
    padding: 1rem;
    display: block; }
    @media (min-width: 768px) {
      .button.thrive > span.text-wrap span, input.thrive[type="submit"] > span.text-wrap span, textarea.thrive[type="submit"] > span.text-wrap span, input.thrive[type="reset"] > span.text-wrap span, textarea.thrive[type="reset"] > span.text-wrap span {
        padding: 1.3rem; } }

.hero#cover {
  background: url(assets/images/features/features-hero.jpg);
  background-size: cover;
  background-color: #639bcf;
  background-position: 59% center;
  min-height: auto;
  position: relative; }
  @media (min-width: 768px) {
    .hero#cover {
      background-position: center center; } }
  .hero#cover:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; }
    @media (min-width: 768px) {
      .hero#cover:after {
        background: linear-gradient(to bottom, rgba(240, 249, 255, 0) 0%, black 100%); } }
  .hero#cover .store-selector button {
    width: 100%; }

.hero .particles-js-canvas-el {
  position: absolute;
  top: 0; }

.hero > .in {
  padding: 17% 5% 2% 5%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2; }
  @media (max-width: 991px) {
    .hero > .in {
      padding: 22% 5% 5% 5%; } }
  @media (max-width: 770px) {
    .hero > .in {
      padding: 25% 5% 8% 5%; } }

.hero__image {
  max-width: 200px; }
  @media (max-width: 1199px) {
    .hero__image {
      max-width: 150px; } }
  @media (max-width: 991px) {
    .hero__image {
      display: none; } }
  .hero__image--alt {
    position: absolute;
    bottom: 5%;
    right: 5%;
    max-width: 200px; }
    @media (max-width: 1199px) {
      .hero__image--alt {
        max-width: 150px; } }
    @media (max-width: 991px) {
      .hero__image--alt {
        max-width: 150px; } }
    @media (max-width: 770px) {
      .hero__image--alt {
        display: none; } }
  .hero__image img {
    max-width: 100%;
    height: auto; }

.hero__details {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2; }
  .hero__details .hero__device {
    order: 1;
    display: none; }
    @media (min-width: 768px) {
      .hero__details .hero__device {
        display: block; } }
    @media (max-width: 820px) {
      .hero__details .hero__device img {
        width: 420px; } }
    @media (max-width: 770px) {
      .hero__details .hero__device img {
        width: 180px; } }

.hero__content {
  width: 100%;
  flex-grow: 1;
  text-align: left;
  max-width: 530px;
  order: 2; }
  @media (max-width: 991px) {
    .hero__content {
      margin-left: 0; } }
  @media (max-width: 610px) {
    .hero__content {
      max-width: 100%;
      text-align: center; } }
  .hero__content > .in {
    padding-left: 5%; }
    @media (max-width: 770px) {
      .hero__content > .in {
        padding-left: 0; } }
  .hero__content .device_price_localised {
    color: #fff;
    font-size: 4.1832574022rem;
    font-weight: 100;
    margin-right: 15px; }
  .hero__content .store-locator {
    flex-grow: 1; }
  .hero__content h1,
  .hero__content h3 {
    color: #fff; }
  .hero__content h1 {
    font-size: 72px;
    margin-bottom: 0.7em;
    line-height: 1.2; }
    @media (max-width: 820px) {
      .hero__content h1 {
        font-size: 56px; } }
    @media (max-width: 610px) {
      .hero__content h1 {
        font-size: 48px; } }
    .hero__content h1 span {
      display: block; }
      .hero__content h1 span.smaller {
        font-size: 40%; }
  .hero__content h3 {
    font-size: 38px;
    margin-bottom: 40px; }
    @media (max-width: 1199px) {
      .hero__content h3 {
        font-size: 32px; } }
    @media (max-width: 991px) {
      .hero__content h3 {
        font-size: 38px; } }
    @media (max-width: 885px) {
      .hero__content h3 {
        font-size: 32px; } }
    @media (max-width: 610px) {
      .hero__content h3 {
        font-size: 20px; } }
  .hero__content .button-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    max-width: 490px; }
    .hero__content .button-container .button, .hero__content .button-container input[type="submit"], .hero__content .button-container textarea[type="submit"], .hero__content .button-container input[type="reset"], .hero__content .button-container textarea[type="reset"] {
      display: inline-block;
      text-align: center;
      border-bottom: none;
      background-image: none !important;
      color: white;
      background-color: rgba(0, 0, 0, 0.1);
      background-color: #ff8000;
      border: 1px solid #ff8000;
      padding: 0.5rem 3rem;
      -webkit-border-radius: 0.5rem 3rem/1.5;
      border-radius: 0.5rem 3rem/1.5;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      font-size: 1.991703296rem;
      display: block; }
      .hero__content .button-container .button:link, .hero__content .button-container input:link[type="submit"], .hero__content .button-container textarea:link[type="submit"], .hero__content .button-container input:link[type="reset"], .hero__content .button-container textarea:link[type="reset"], .hero__content .button-container .button:visited, .hero__content .button-container input:visited[type="submit"], .hero__content .button-container textarea:visited[type="submit"], .hero__content .button-container input:visited[type="reset"], .hero__content .button-container textarea:visited[type="reset"] {
        color: white;
        background-color: rgba(0, 0, 0, 0.2);
        background-color: #ff8000; }
      .hero__content .button-container .button:hover, .hero__content .button-container input:hover[type="submit"], .hero__content .button-container textarea:hover[type="submit"], .hero__content .button-container input:hover[type="reset"], .hero__content .button-container textarea:hover[type="reset"] {
        color: white;
        background-color: #eb7b08; }
      .hero__content .button-container .button:active, .hero__content .button-container input:active[type="submit"], .hero__content .button-container textarea:active[type="submit"], .hero__content .button-container input:active[type="reset"], .hero__content .button-container textarea:active[type="reset"] {
        color: white;
        background-color: #d8760f; }
      .hero__content .button-container .button:link, .hero__content .button-container input:link[type="submit"], .hero__content .button-container textarea:link[type="submit"], .hero__content .button-container input:link[type="reset"], .hero__content .button-container textarea:link[type="reset"], .hero__content .button-container .button:visited, .hero__content .button-container input:visited[type="submit"], .hero__content .button-container textarea:visited[type="submit"], .hero__content .button-container input:visited[type="reset"], .hero__content .button-container textarea:visited[type="reset"], .hero__content .button-container .button:hover, .hero__content .button-container input:hover[type="submit"], .hero__content .button-container textarea:hover[type="submit"], .hero__content .button-container input:hover[type="reset"], .hero__content .button-container textarea:hover[type="reset"], .hero__content .button-container .button:active, .hero__content .button-container input:active[type="submit"], .hero__content .button-container textarea:active[type="submit"], .hero__content .button-container input:active[type="reset"], .hero__content .button-container textarea:active[type="reset"] {
        text-decoration: none;
        background-image: none !important;
        border: 1px solid #ff8000; }
      @media (min-width: 768px) {
        .hero__content .button-container .button, .hero__content .button-container input[type="submit"], .hero__content .button-container textarea[type="submit"], .hero__content .button-container input[type="reset"], .hero__content .button-container textarea[type="reset"] {
          font-size: 2.6800359551rem; } }
    .hero__content .button-container .button-secondary {
      display: inline-block;
      text-align: center;
      border-bottom: none;
      background-image: none !important;
      color: white;
      background-color: rgba(0, 0, 0, 0.1);
      background-color: transparent;
      border: 1px solid transparent;
      border: 1px solid white;
      padding: 0.5rem 3rem;
      -webkit-border-radius: 0.5rem 3rem/1.5;
      border-radius: 0.5rem 3rem/1.5;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
      .hero__content .button-container .button-secondary:link, .hero__content .button-container .button-secondary:visited {
        color: white;
        background-color: rgba(0, 0, 0, 0.2);
        background-color: transparent;
        border: 1px solid white; }
      .hero__content .button-container .button-secondary:hover {
        color: white;
        background-color: rgba(59, 79, 75, 0.1);
        border: 1px solid white; }
      .hero__content .button-container .button-secondary:active {
        color: white;
        background-color: rgba(59, 79, 75, 0.2);
        border: 1px solid white; }
      .hero__content .button-container .button-secondary:link, .hero__content .button-container .button-secondary:visited, .hero__content .button-container .button-secondary:hover, .hero__content .button-container .button-secondary:active {
        text-decoration: none;
        background-image: none !important;
        border: 1px solid transparent; }
      .hero__content .button-container .button-secondary:link, .hero__content .button-container .button-secondary:visited {
        background: transparent;
        color: white;
        margin: 1rem 0 0 0;
        display: block;
        border: 1px solid white; }
      .hero__content .button-container .button-secondary:hover {
        background: white;
        border: 1px solid white;
        color: #3b4f48; }
  .hero__content--text {
    display: flex;
    align-items: center; }
    @media (min-width: 768px) {
      .hero__content--text {
        display: block; } }
    .hero__content--text h1 {
      text-align: left;
      line-height: 1.2; }
    .hero__content--text .hero__device {
      display: block; }
      @media (min-width: 768px) {
        .hero__content--text .hero__device {
          display: none; } }

a.btn--hero {
  padding: 20px 10px;
  min-width: 210px;
  text-align: center;
  background: #fff;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: all 0.2s linear; }
  a.btn--hero:hover {
    opacity: 0.9; }

.pollution {
  background: url("assets/images/features/pollution-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 0; }
  @media (min-width: 991px) {
    .pollution {
      position: relative;
      position: relative; }
      .pollution::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100' fill='rgb(84,171,149)' fill-opacity='1'%3E%3Cpolygon points='0,100 100,100 100,0'%3E%3C/polygon%3E%3C/svg%3E");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        content: '';
        height: 100px;
        left: 0;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 1;
        bottom: 0; }
      .pollution::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100' fill='rgb(234,234,234)' fill-opacity='1'%3E%3Cpolygon points='0,0 100,100 100,0'%3E%3C/polygon%3E%3C/svg%3E");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        content: '';
        height: 100px;
        left: 0;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 1;
        top: 0; } }
  .pollution > .in {
    padding: 5% 5% 5% 5%;
    background-size: cover;
    background-position: center center;
    position: relative; }
    @media (min-width: 991px) {
      .pollution > .in {
        padding: 300px 60px 0 60px; } }
  .pollution__title {
    padding-left: 0; }
    @media (min-width: 768px) {
      .pollution__title {
        padding-left: 50px; } }
    .pollution__title h3,
    .pollution__title h2,
    .pollution__title #comments #reply-title,
    #comments .pollution__title #reply-title {
      color: #fff; }
  .pollution__info {
    color: #fff; }
    .pollution__info > .in {
      display: block; }
      @media (min-width: 768px) {
        .pollution__info > .in {
          display: flex; } }
    .pollution__info .content {
      padding: 0;
      width: 100%; }
      @media (min-width: 768px) {
        .pollution__info .content {
          width: 70%;
          padding: 30px 0 0 50px; } }
  .pollution .pollution__content {
    padding: 0; }
    @media (min-width: 768px) {
      .pollution .pollution__content {
        padding: 30px 60px 0 50px; } }
  @media (min-width: 768px) {
    .pollution__image {
      margin: 30px 0 0 0;
      width: 50%; } }
  @media (min-width: 991px) {
    .pollution__image {
      width: 30%;
      align-self: flex-end; } }
  .pollution__image img.notification {
    display: none; }
    @media (min-width: 768px) {
      .pollution__image img.notification {
        display: block; } }
    .pollution__image img.notification__only {
      display: block; }
      @media (min-width: 768px) {
        .pollution__image img.notification__only {
          display: none; } }

.complex {
  background: #54ab95; }
  @media (min-width: 1199px) {
    .complex {
      height: auto;
      position: relative;
      height: 370px; } }
  .complex > .in {
    padding: 5%;
    background: #54ab95;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center; }
    .complex > .in:after {
      display: none;
      content: "";
      position: absolute;
      top: -120px;
      height: 240px;
      left: 0;
      right: 0; }
      @media (min-width: 991px) {
        .complex > .in:after {
          display: block; } }
    @media (min-width: 991px) {
      .complex > .in {
        padding: 0 60px 0 60px; } }
  .complex__title {
    display: none; }
    @media (min-width: 768px) {
      .complex__title {
        display: block; } }
    .complex__title h3,
    .complex__title h2,
    .complex__title #comments #reply-title,
    #comments .complex__title #reply-title {
      color: #fff;
      margin-bottom: 30px; }
    .complex__title--mobile {
      display: block; }
      @media (min-width: 768px) {
        .complex__title--mobile {
          display: none; } }
  .complex h4 {
    color: #fff; }
  .complex__info {
    color: #fff; }
    .complex__info > .in {
      flex-wrap: wrap;
      display: flex; }
      @media (min-width: 768px) {
        .complex__info > .in {
          align-items: center;
          flex-wrap: initial; } }
    .complex__info .content {
      position: relative;
      z-index: 10;
      width: 100%;
      margin: 0;
      order: 3;
      margin-bottom: 20px; }
      @media (min-width: 600px) {
        .complex__info .content {
          margin-bottom: 0; } }
      @media (min-width: 768px) {
        .complex__info .content {
          width: 70%;
          margin-left: 15%;
          margin-top: 40px; } }
      @media (min-width: 991px) {
        .complex__info .content {
          width: 55%;
          flex-grow: 1;
          margin-left: 43%; } }
      .complex__info .content--caret {
        display: none;
        width: 100%;
        text-align: center;
        margin: 50px 0 0 0;
        position: relative;
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite; }
        @media (min-width: 768px) {
          .complex__info .content--caret {
            display: block; } }
  .complex__image {
    z-index: 10;
    order: 2;
    margin: 0 auto 20px auto; }
    @media (min-width: 600px) {
      .complex__image {
        margin: 30px 0 30px 0;
        width: 50%;
        top: 0;
        order: 2; } }
    @media (min-width: 768px) {
      .complex__image {
        width: 30%;
        position: relative;
        padding-right: 60px;
        top: -140px;
        order: 1; } }
    @media (min-width: 991px) {
      .complex__image {
        padding-right: 0;
        position: absolute;
        top: -250px; } }
    .complex__image img {
      max-width: 410px; }
      @media (min-width: 768px) {
        .complex__image img {
          max-width: 280px; } }
      @media (min-width: 991px) {
        .complex__image img {
          max-width: 350px; } }
      @media (min-width: 1199px) {
        .complex__image img {
          max-width: 410px; } }

.seewhatyoubreath {
  position: relative;
  margin-top: 0; }
  .seewhatyoubreath > .in {
    background: #fff;
    position: relative;
    height: 100%;
    display: block;
    align-items: center;
    padding: 5% 5% 0 5%; }
    @media (min-width: 768px) {
      .seewhatyoubreath > .in {
        padding: 5%;
        display: flex; } }
    @media (min-width: 1280px) {
      .seewhatyoubreath > .in {
        padding: 6% 5% 6% 5%; } }
    @media (min-width: 1500px) {
      .seewhatyoubreath > .in {
        padding: 10% 5% 10% 5%; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .seewhatyoubreath__title {
      max-width: 55%; } }
  .seewhatyoubreath__title h3 {
    margin-bottom: 40px; }
  .seewhatyoubreath__info .content {
    width: 50%;
    margin-right: 50%; }
    @media (max-width: 770px) {
      .seewhatyoubreath__info .content {
        width: 100%;
        margin-right: 0; } }
  .seewhatyoubreath__image {
    padding-right: 0;
    z-index: 10;
    position: relative;
    right: 0;
    bottom: 0; }
    @media (min-width: 768px) {
      .seewhatyoubreath__image {
        position: absolute; } }
    .seewhatyoubreath__image img {
      width: 350px; }
      @media (min-width: 991px) {
        .seewhatyoubreath__image img {
          width: 380px; } }
      @media (min-width: 1500px) {
        .seewhatyoubreath__image img {
          width: 500px; } }

.windows {
  background: #eaeaea;
  position: relative; }
  .windows > .in {
    padding: 5%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center; }
    @media (min-width: 991px) {
      .windows > .in {
        padding: 0 5%; } }
  .windows__title h3 {
    color: #000;
    text-align: left; }
    @media (min-width: 991px) {
      .windows__title h3 {
        text-align: right; } }
  .windows__info {
    color: #000;
    padding-bottom: 0;
    text-align: left; }
    @media (min-width: 991px) {
      .windows__info {
        text-align: right;
        padding-bottom: 80px; } }
    .windows__info > .in {
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
      @media (min-width: 768px) {
        .windows__info > .in {
          flex-wrap: initial; } }
    .windows__info .content {
      width: 100%;
      flex-grow: 1;
      order: 1; }
      @media (min-width: 1199px) {
        .windows__info .content {
          width: 55%; } }
      @media (min-width: 1024px) {
        .windows__info .content {
          width: 100%; } }
      @media (min-width: 991px) {
        .windows__info .content {
          width: 70%;
          order: 1; } }
  .windows__image {
    order: 2;
    padding-right: 0;
    margin: 30px 0 0 0; }
    @media (min-width: 768px) {
      .windows__image {
        width: 70%;
        padding-right: 60px;
        margin: 0;
        order: 1; } }
    @media (min-width: 991px) {
      .windows__image {
        width: auto; } }

#precise-measurements {
  background: #639bcf;
  background: linear-gradient(0deg, #f5bf89 0%, #54ab95 100%);
  color: white; }
  #precise-measurements .h1, #precise-measurements h1, #precise-measurements .h1-reset, #precise-measurements blockquote.fancy:before, #precise-measurements .blockquote-fancy:before, #precise-measurements .h2, #precise-measurements h2, #precise-measurements #comments #reply-title, #comments #precise-measurements #reply-title, #precise-measurements .h2-reset, #precise-measurements .h3, #precise-measurements h3, #precise-measurements .h3-reset, #precise-measurements .media-object .media-object-content header .entry-title, .media-object .media-object-content header #precise-measurements .entry-title, #precise-measurements .before-after-labels > *, #precise-measurements .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #precise-measurements footer, #precise-measurements .h4, #precise-measurements h4, #precise-measurements .h4-reset, #precise-measurements blockquote.fancy, #precise-measurements .h5, #precise-measurements h5, #precise-measurements .h5-reset, #precise-measurements #sensors .accordion .tab label, #sensors .accordion .tab #precise-measurements label, #precise-measurements #sensors .accordion .tab table th, #sensors .accordion .tab table #precise-measurements th, #precise-measurements table #sensors .accordion .tab th, table #sensors .accordion .tab #precise-measurements th, #precise-measurements #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 #precise-measurements .disclaimer, #precise-measurements .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab #precise-measurements .disclaimer, #precise-measurements .h6, #precise-measurements h6, #precise-measurements .h6-reset, #precise-measurements .widget-title {
    color: white; }
  #precise-measurements a:link, #precise-measurements a:visited {
    color: white; }
  #precise-measurements a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  #precise-measurements a:active {
    color: #fff; }
  #precise-measurements header {
    text-align: center; }
  @media (min-width: 600px) {
    #precise-measurements article {
      display: flex;
      justify-content: center;
      align-items: flex-start; } }
  @media (min-width: 768px) {
    #precise-measurements article {
      align-items: center; } }
  @media (min-width: 600px) {
    #precise-measurements article div {
      width: 33%;
      flex-grow: 1; } }
  #precise-measurements article svg {
    width: 100%;
    margin: 0 0 1rem 0; }

.accuracy-text {
  align-self: flex-start; }

.berkeley {
  display: flex;
  flex-direction: column;
  text-align: right; }
  .berkeley__logo {
    order: 1;
    align-self: flex-start; }
    .berkeley__logo img {
      max-width: 140px; }
  .berkeley__text {
    order: 2; }
  .berkeley__link {
    order: 3; }

.airborn {
  background: #46525d;
  color: white;
  position: relative;
  height: auto; }
  .airborn .h1, .airborn h1, .airborn .h1-reset, .airborn blockquote.fancy:before, .airborn .blockquote-fancy:before, .airborn .h2, .airborn h2, .airborn #comments #reply-title, #comments .airborn #reply-title, .airborn .h2-reset, .airborn .h3, .airborn h3, .airborn .h3-reset, .airborn .media-object .media-object-content header .entry-title, .media-object .media-object-content header .airborn .entry-title, .airborn .before-after-labels > *, .airborn .page-template-features-page #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly .airborn footer, .airborn .h4, .airborn h4, .airborn .h4-reset, .airborn blockquote.fancy, .airborn .h5, .airborn h5, .airborn .h5-reset, .airborn #sensors .accordion .tab label, #sensors .accordion .tab .airborn label, .airborn #sensors .accordion .tab table th, #sensors .accordion .tab table .airborn th, .airborn table #sensors .accordion .tab th, table #sensors .accordion .tab .airborn th, .airborn #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 .airborn .disclaimer, .airborn .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab .airborn .disclaimer, .airborn .h6, .airborn h6, .airborn .h6-reset, .airborn .widget-title {
    color: white; }
  .airborn a:link, .airborn a:visited {
    color: white; }
  .airborn a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  .airborn a:active {
    color: #fff; }
  .airborn > .in {
    padding: 5%;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column; }
  .airborn h4,
  .airborn h3,
  .airborn h2,
  .airborn #comments #reply-title,
  #comments .airborn #reply-title {
    color: #fff; }
  .airborn footer {
    margin: 1em 0 0 0; }
  .airborn__info {
    color: #fff; }
    .airborn__info > .in {
      display: flex;
      align-items: center;
      flex-direction: column; }
      @media (min-width: 991px) {
        .airborn__info > .in {
          flex-direction: initial; } }
    .airborn__info .airborn__content {
      width: 100%;
      margin-right: 0; }
      @media (min-width: 991px) {
        .airborn__info .airborn__content {
          width: 40%;
          margin-right: 2%; } }
      .airborn__info .airborn__content footer a {
        color: #fff;
        text-decoration: underline; }
      .airborn__info .airborn__content h5 {
        color: #fff; }
    .airborn__info .airborn__graph {
      width: 100%;
      margin-left: 0; }
      @media (min-width: 991px) {
        .airborn__info .airborn__graph {
          width: 56%;
          margin-left: 2%; } }
      .airborn__info .airborn__graph svg {
        max-width: 100%;
        height: auto; }
        .airborn__info .airborn__graph svg text.st13 {
          font-family: "DIN2014-Regular", sans-serif; }
        .airborn__info .airborn__graph svg .st0 {
          fill: none; }
        .airborn__info .airborn__graph svg .st1 {
          fill: none; }
        .airborn__info .airborn__graph svg .st2 {
          stroke: #ff8000; }
        .airborn__info .airborn__graph svg .st6 {
          display: none; }
        .airborn__info .airborn__graph svg .st7 {
          stroke: #639bcf; }
        .airborn__info .airborn__graph svg .st10 {
          fill: #3b4f4b;
          opacity: 0; }
        .airborn__info .airborn__graph svg .st11 {
          opacity: 0.5; }
        .airborn__info .airborn__graph svg a {
          text-decoration: none; }
          .airborn__info .airborn__graph svg a.activefill .st10 {
            opacity: 0.1; }
          .airborn__info .airborn__graph svg a.activefill text {
            opacity: 0.9; }
  .airborn .airborn__slider:after, .airborn .airborn__slider:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: 10; }
    @media (max-width: 991px) {
      .airborn .airborn__slider:after, .airborn .airborn__slider:before {
        display: none; } }
  .airborn__slider {
    width: 100%;
    margin-top: 60px;
    position: relative; }
    .airborn__slider:after {
      background: linear-gradient(to left, #46525d 0%, rgba(70, 82, 93, 0) 100%); }
    .airborn__slider:before {
      left: 0;
      background: linear-gradient(to right, #46525d 0%, rgba(70, 82, 93, 0) 100%); }
  .airborn__slide {
    padding: 25px;
    background: #46525d;
    color: #fff;
    margin: 0 12.5px; }
    .airborn__slide h3 {
      font-size: 30px;
      margin-bottom: 20px;
      color: #fff;
      display: flex;
      align-items: center; }
      .airborn__slide h3 .graphguide__item--icon {
        margin: 0 0 4px 5px; }
    .airborn__slide h4 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #fff; }
    .airborn__slide p {
      font-size: 14px;
      margin: 0; }
  .airborn__disclaimer {
    color: #6f7574;
    font-size: .88rem;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .airborn__disclaimer {
        font-size: 1rem; } }
  .airborn .graphguide {
    margin-top: 50px; }
    .airborn .graphguide__items {
      display: flex;
      flex-wrap: wrap; }
    .airborn .graphguide__item {
      width: 100%;
      margin-bottom: 8px;
      font-size: 18px;
      font-weight: 100;
      display: flex;
      align-items: center; }
      @media (min-width: 1199px) {
        .airborn .graphguide__item {
          width: 50%; } }
      .airborn .graphguide__item--icon {
        width: 30px;
        height: 30px;
        border-radius: 100%;
        margin-right: 10px;
        position: relative;
        overflow: hidden;
        z-index: 1; }
        .airborn .graphguide__item--icon svg {
          vertical-align: unset; }
        .airborn .graphguide__item--icon path {
          stroke: white;
          stroke-width: 9; }
          .airborn .graphguide__item--icon path.st0 {
            stroke: none;
            fill: none; }
        .airborn .graphguide__item--icon circle.st2, .airborn .graphguide__item--icon circle.st4, .airborn .graphguide__item--icon circle.st6 {
          stroke: white;
          stroke-width: 9; }
      .airborn .graphguide__item--matter circle.st2, .airborn .graphguide__item--matter circle.st4, .airborn .graphguide__item--matter circle.st6 {
        stroke: #54ab95; }
      .airborn .graphguide__item--temperature path.st2 {
        stroke: #ff8000; }
      .airborn .graphguide__item--pollutants path.st2 {
        stroke: #ffae00; }
      .airborn .graphguide__item--humidity path.st2 {
        stroke: #639bcf; }

section#see-what-you-breathe {
  padding-bottom: 0; }

.content--regular p {
  font-size: 1.48016rem; }

.content--regular a {
  font-size: 1.48016rem; }

.content--small p {
  font-size: 1.48016rem; }

.content--small a {
  font-size: 1.48016rem;
  font-weight: 100; }

.content--small h5 {
  font-size: 1.48016rem;
  font-weight: 100; }

.heading--center {
  text-align: center; }

.links--underlined {
  text-decoration: underline; }

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-horizontal-timeline {
  opacity: 0;
  margin: 2em auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none; }

.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1; }

.cd-horizontal-timeline .timeline {
  position: relative;
  height: 101px;
  width: 100%;
  max-width: 100%;
  margin: 60px auto; }

.cd-timeline-navigation {
  list-style: none;
  padding: 0;
  margin: 0; }

.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
  background-size: 10px 10px;
  background-position: -1px 0;
  background-image: linear-gradient(to right, #eee 1px, transparent 1px), linear-gradient(to bottom, #eee 1px, transparent 1px); }

.cd-horizontal-timeline .events-wrapper::after,
.cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px; }

.cd-horizontal-timeline .events-wrapper::before {
  left: 0;
  background: none; }

.cd-horizontal-timeline .events-wrapper::after {
  right: 0;
  background: none; }

.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s; }

.cd-horizontal-timeline .events ol,
.cd-horizontal-timeline .events li {
  list-style: none;
  margin: 0;
  padding: 0; }

.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: -50px;
  height: 100px;
  width: 100%;
  background-color: rgba(0, 98, 128, 0.2);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s; }

.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 15px;
  color: #383838;
  background: none;
  /* fix bug on Safari - text flickering while timeline translates */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.cd-horizontal-timeline .events a:hover {
  background: none;
  border: none; }

.cd-horizontal-timeline .events a::after {
  /* this is used to create the event spot */
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: none;
  background-color: #f8f8f8;
  border: 2px solid #eaeaea;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s; }

.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #006280;
  border-color: #006280; }

.cd-horizontal-timeline .events a.selected {
  pointer-events: none; }

.cd-horizontal-timeline .events a.selected::after {
  background-color: #177393;
  border-color: #177393; }

.cd-horizontal-timeline .events a.older-event::after {
  border-color: #177393; }

@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline {
    margin: 0; }
  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop'; } }

.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #eaeaea;
  background: #fff;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s; }

.cd-timeline-navigation a::after {
  /* arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(assets/images/cd-arrow.svg) no-repeat 0 0; }

.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg); }

.cd-timeline-navigation a.next {
  right: 0; }

.no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f; }

.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
  background: none;
  border: 2px solid #eaeaea; }

.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px; }

.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf; }

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s; }

.cd-horizontal-timeline .events-content li {
  list-style: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.cd-horizontal-timeline .events-content li.enter-right,
.cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right; }

.cd-horizontal-timeline .events-content li.enter-left,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left; }

.cd-horizontal-timeline .events-content li.leave-right,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse; }

.cd-horizontal-timeline .events-content li > * {
  max-width: 100%;
  margin: 0 auto; }

.cd-horizontal-timeline .events-content h3 {
  font-weight: 100;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px; }

.cd-horizontal-timeline .events-content h4 {
  color: #000;
  margin-bottom: 20px; }

.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto; }

.cd-horizontal-timeline .events-content em::before {
  content: '- '; }

.cd-horizontal-timeline .events-content p {
  font-size: 1.4rem;
  color: #959595; }

.cd-horizontal-timeline .events-content em,
.cd-horizontal-timeline .events-content p {
  line-height: 1.6; }

@media only screen and (min-width: 768px) {
  .cd-horizontal-timeline .events-content h2, .cd-horizontal-timeline .events-content #comments #reply-title, #comments .cd-horizontal-timeline .events-content #reply-title {
    font-size: 7rem; }
  .cd-horizontal-timeline .events-content em {
    font-size: 2rem; }
  .cd-horizontal-timeline .events-content p {
    font-size: 18px;
    line-height: 24px;
    color: #000; } }

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%); } }

@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%); } }

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%); } }

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%); } }

@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%); } }

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%); } }

.page-template-features-page #get-fresh-air-effortlessly {
  overflow: hidden;
  text-align: center;
  padding-top: 0;
  position: relative;
  background: #cad1d8; }
  @media (min-width: 768px) {
    .page-template-features-page #get-fresh-air-effortlessly {
      padding-top: 5%; } }
  @media (min-width: 991px) {
    .page-template-features-page #get-fresh-air-effortlessly {
      padding-top: 120px; } }
  .page-template-features-page #get-fresh-air-effortlessly .intro {
    font-size: 1.48016rem; }
  .page-template-features-page #get-fresh-air-effortlessly footer {
    margin-top: 4em;
    color: #3b4f48; }

.page-template-features-page .connected-devices {
  margin-top: 5em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }
  .page-template-features-page .connected-devices li img {
    width: 200px; }

@media (min-width: 768px) {
  .page-template-features-page #see-what-you-breathe .content-container {
    display: grid;
    grid-template-columns: 50% 50%; } }

.page-template-features-page #see-what-you-breathe .content-container > * {
  justify-self: center;
  align-self: center; }

.page-template-features-page #see-what-you-breathe .grades-text {
  color: #ff8000;
  animation: colorchange 5s infinite alternate; }

@keyframes colorchange {
  0% {
    color: #ff8000; }
  100% {
    color: #639bcf; } }

.page-template-features-page .ridpollutants {
  background: #eda261;
  color: white;
  position: relative; }
  .page-template-features-page .ridpollutants .h1, .page-template-features-page .ridpollutants h1, .page-template-features-page .ridpollutants .h1-reset, .page-template-features-page .ridpollutants blockquote.fancy:before, .page-template-features-page .ridpollutants .blockquote-fancy:before, .page-template-features-page .ridpollutants .h2, .page-template-features-page .ridpollutants h2, .page-template-features-page .ridpollutants #comments #reply-title, #comments .page-template-features-page .ridpollutants #reply-title, .page-template-features-page .ridpollutants .h2-reset, .page-template-features-page .ridpollutants .h3, .page-template-features-page .ridpollutants h3, .page-template-features-page .ridpollutants .h3-reset, .page-template-features-page .ridpollutants .media-object .media-object-content header .entry-title, .media-object .media-object-content header .page-template-features-page .ridpollutants .entry-title, .page-template-features-page .ridpollutants .before-after-labels > *, .page-template-features-page .ridpollutants #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly .ridpollutants footer, .page-template-features-page .ridpollutants .h4, .page-template-features-page .ridpollutants h4, .page-template-features-page .ridpollutants .h4-reset, .page-template-features-page .ridpollutants blockquote.fancy, .page-template-features-page .ridpollutants .h5, .page-template-features-page .ridpollutants h5, .page-template-features-page .ridpollutants .h5-reset, .page-template-features-page .ridpollutants #sensors .accordion .tab label, #sensors .accordion .tab .page-template-features-page .ridpollutants label, .page-template-features-page .ridpollutants #sensors .accordion .tab table th, #sensors .accordion .tab table .page-template-features-page .ridpollutants th, .page-template-features-page .ridpollutants table #sensors .accordion .tab th, table #sensors .accordion .tab .page-template-features-page .ridpollutants th, .page-template-features-page .ridpollutants #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 .page-template-features-page .ridpollutants .disclaimer, .page-template-features-page .ridpollutants .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab .page-template-features-page .ridpollutants .disclaimer, .page-template-features-page .ridpollutants .h6, .page-template-features-page .ridpollutants h6, .page-template-features-page .ridpollutants .h6-reset, .page-template-features-page .ridpollutants .widget-title {
    color: white; }
  .page-template-features-page .ridpollutants a:link, .page-template-features-page .ridpollutants a:visited {
    color: white; }
  .page-template-features-page .ridpollutants a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  .page-template-features-page .ridpollutants a:active {
    color: #fff; }
  @media (min-width: 991px) {
    .page-template-features-page .ridpollutants {
      position: relative; }
      .page-template-features-page .ridpollutants::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100' fill='rgb(3,99,129)' fill-opacity='1'%3E%3Cpolygon points='0,100 100,100 100,0'%3E%3C/polygon%3E%3C/svg%3E");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        content: '';
        height: 100px;
        left: 0;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 1;
        bottom: 0; } }
  .page-template-features-page .ridpollutants .particles-js-canvas-el {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0; }
  .page-template-features-page .ridpollutants > .in {
    padding: 5%;
    display: flex;
    align-items: center; }
    @media (min-width: 991px) {
      .page-template-features-page .ridpollutants > .in {
        padding: 5% 5% 13% 5%; } }
  .page-template-features-page .ridpollutants__title {
    margin-bottom: 0;
    width: 100%; }
    @media (min-width: 768px) {
      .page-template-features-page .ridpollutants__title {
        width: 80%;
        margin-bottom: 2em; } }
    @media (min-width: 991px) {
      .page-template-features-page .ridpollutants__title {
        width: 60%; } }
    .page-template-features-page .ridpollutants__title h2, .page-template-features-page .ridpollutants__title #comments #reply-title, #comments .page-template-features-page .ridpollutants__title #reply-title {
      font-size: 2em;
      font-weight: 100;
      margin: 0; }
      @media (min-width: 768px) {
        .page-template-features-page .ridpollutants__title h2, .page-template-features-page .ridpollutants__title #comments #reply-title, #comments .page-template-features-page .ridpollutants__title #reply-title {
          font-size: 2.4em; } }
      @media (min-width: 991px) {
        .page-template-features-page .ridpollutants__title h2, .page-template-features-page .ridpollutants__title #comments #reply-title, #comments .page-template-features-page .ridpollutants__title #reply-title {
          font-size: 3em; } }

.page-template-features-page .ridpollutants {
  background-color: #177293; }

.page-template-features-page #twice-as-much-time {
  background-color: transparent;
  color: white;
  position: relative; }
  .page-template-features-page #twice-as-much-time .h1, .page-template-features-page #twice-as-much-time h1, .page-template-features-page #twice-as-much-time .h1-reset, .page-template-features-page #twice-as-much-time blockquote.fancy:before, .page-template-features-page #twice-as-much-time .blockquote-fancy:before, .page-template-features-page #twice-as-much-time .h2, .page-template-features-page #twice-as-much-time h2, .page-template-features-page #twice-as-much-time #comments #reply-title, #comments .page-template-features-page #twice-as-much-time #reply-title, .page-template-features-page #twice-as-much-time .h2-reset, .page-template-features-page #twice-as-much-time .h3, .page-template-features-page #twice-as-much-time h3, .page-template-features-page #twice-as-much-time .h3-reset, .page-template-features-page #twice-as-much-time .media-object .media-object-content header .entry-title, .media-object .media-object-content header .page-template-features-page #twice-as-much-time .entry-title, .page-template-features-page #twice-as-much-time .before-after-labels > *, .page-template-features-page #twice-as-much-time #get-fresh-air-effortlessly footer, .page-template-features-page #get-fresh-air-effortlessly #twice-as-much-time footer, .page-template-features-page #twice-as-much-time .h4, .page-template-features-page #twice-as-much-time h4, .page-template-features-page #twice-as-much-time .h4-reset, .page-template-features-page #twice-as-much-time blockquote.fancy, .page-template-features-page #twice-as-much-time .h5, .page-template-features-page #twice-as-much-time h5, .page-template-features-page #twice-as-much-time .h5-reset, .page-template-features-page #twice-as-much-time #sensors .accordion .tab label, #sensors .accordion .tab .page-template-features-page #twice-as-much-time label, .page-template-features-page #twice-as-much-time #sensors .accordion .tab table th, #sensors .accordion .tab table .page-template-features-page #twice-as-much-time th, .page-template-features-page #twice-as-much-time table #sensors .accordion .tab th, table #sensors .accordion .tab .page-template-features-page #twice-as-much-time th, .page-template-features-page #twice-as-much-time #sensors .accordion .tab .wpcf7 .disclaimer, #sensors .accordion .tab .wpcf7 .page-template-features-page #twice-as-much-time .disclaimer, .page-template-features-page #twice-as-much-time .wpcf7 #sensors .accordion .tab .disclaimer, .wpcf7 #sensors .accordion .tab .page-template-features-page #twice-as-much-time .disclaimer, .page-template-features-page #twice-as-much-time .h6, .page-template-features-page #twice-as-much-time h6, .page-template-features-page #twice-as-much-time .h6-reset, .page-template-features-page #twice-as-much-time .widget-title {
    color: white; }
  .page-template-features-page #twice-as-much-time a:link, .page-template-features-page #twice-as-much-time a:visited {
    color: white; }
  .page-template-features-page #twice-as-much-time a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  .page-template-features-page #twice-as-much-time a:active {
    color: #fff; }
  @media (max-width: 991px) {
    .page-template-features-page #twice-as-much-time {
      margin-top: 0; } }
  .page-template-features-page #twice-as-much-time:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #639bcf;
    border-top: none;
    padding-top: 30px;
    border-bottom: 30px solid #177393; }
    @media (min-width: 991px) {
      .page-template-features-page #twice-as-much-time:after {
        z-index: 1; } }
  .page-template-features-page #twice-as-much-time .content-container {
    position: relative;
    z-index: 2;
    padding: 60px 0; }
    @media (min-width: 480px) {
      .page-template-features-page #twice-as-much-time .content-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto; } }
    @media (max-width: 770px) {
      .page-template-features-page #twice-as-much-time .content-container {
        padding: 30px 0 20px 0; } }
    .page-template-features-page #twice-as-much-time .content-container > * {
      justify-self: center;
      align-self: center; }
    .page-template-features-page #twice-as-much-time .content-container .section-header {
      grid-column: 1 / 3;
      width: 100%; }
      @media (min-width: 480px) {
        .page-template-features-page #twice-as-much-time .content-container .section-header {
          margin: 0;
          justify-self: end;
          align-self: end;
          grid-column: 2;
          grid-row: 1; } }
    .page-template-features-page #twice-as-much-time .content-container .section, .page-template-features-page #twice-as-much-time .content-container #post-taxonomies, .page-template-features-page #twice-as-much-time .content-container .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .page-template-features-page #twice-as-much-time .content-container .tve_post_grid_wrapper, .page-template-features-page #twice-as-much-time .content-container .cc-grower, .page-template-features-page #twice-as-much-time .content-container .testimonials, .page-template-features-page #twice-as-much-time .content-container .wuot, .page-template-features-page #twice-as-much-time .content-container header.article-header {
      grid-column: 1; }
      @media (min-width: 480px) {
        .page-template-features-page #twice-as-much-time .content-container .section, .page-template-features-page #twice-as-much-time .content-container #post-taxonomies, .page-template-features-page #twice-as-much-time .content-container .stats-post-grid .tve_post_grid_wrapper, .stats-post-grid .page-template-features-page #twice-as-much-time .content-container .tve_post_grid_wrapper, .page-template-features-page #twice-as-much-time .content-container .cc-grower, .page-template-features-page #twice-as-much-time .content-container .testimonials, .page-template-features-page #twice-as-much-time .content-container .wuot, .page-template-features-page #twice-as-much-time .content-container header.article-header {
          align-self: start;
          grid-column: 2;
          grid-row: 3; } }
    .page-template-features-page #twice-as-much-time .content-container .nest-image {
      margin: 0 auto; }
      @media (min-width: 480px) {
        .page-template-features-page #twice-as-much-time .content-container .nest-image {
          grid-column: 1;
          grid-row: unset;
          justify-self: start;
          align-self: start; } }
      @media (min-width: 768px) {
        .page-template-features-page #twice-as-much-time .content-container .nest-image {
          position: absolute;
          top: -220px;
          right: 0; } }
      .page-template-features-page #twice-as-much-time .content-container .nest-image img {
        max-width: 200px;
        margin: 0 auto; }
    .page-template-features-page #twice-as-much-time .content-container .foobot-device-image {
      display: none; }
      @media (min-width: 480px) {
        .page-template-features-page #twice-as-much-time .content-container .foobot-device-image {
          display: block;
          grid-column: 1;
          grid-row: 1 / 4;
          justify-self: start;
          align-self: start;
          padding-right: 15%; } }

ul.diamondlist li {
  position: relative;
  list-style: none;
  padding-left: 1em; }
  ul.diamondlist li:before {
    content: '';
    height: .4em;
    width: .4em;
    background: #ff6800;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 0.6em;
    left: 0; }

/* ---- START DUST ANIMATION ---- */
#animations_image_custom_css {
  position: absolute;
  width: 100%;
  height: 100%; }

.img_custom_dust {
  width: 62px;
  height: 62px;
  position: absolute;
  transform-origin: 200% center;
  animation: rotate 60s linear infinite;
  top: 25%;
  left: 16%; }

.img_custom_dust:before {
  content: '';
  position: absolute;
  height: 62px;
  width: 62px;
  animation: rotate 60s linear infinite; }

.img_custom_dust_2 {
  width: 62px;
  height: 62px;
  position: absolute;
  transform-origin: 200% center;
  animation: rotate_2 60s linear infinite;
  top: 37%;
  right: 10%; }

.img_custom_dust_2:before {
  content: '';
  position: absolute;
  height: 62px;
  width: 62px;
  animation: rotate_2 60s linear infinite; }

.img_custom_dust_3 {
  width: 62px;
  height: 62px;
  position: absolute;
  transform-origin: 200% center;
  animation: rotate_2 60s linear infinite;
  top: 63%;
  left: 36%; }

.img_custom_dust_3:before {
  content: '';
  position: absolute;
  height: 62px;
  width: 62px;
  animation: rotate 60s linear infinite; }

.img_custom_dust_4 {
  width: 62px;
  height: 62px;
  position: absolute;
  transform-origin: 200% center;
  animation: rotate_2 60s linear infinite;
  top: 30%;
  left: 30%; }

.img_custom_dust_4:before {
  content: '';
  position: absolute;
  height: 62px;
  width: 62px;
  animation: rotate_2 50s linear infinite; }

.img_custom_dust_5 {
  width: 62px;
  height: 62px;
  position: absolute;
  transform-origin: 200% center;
  animation: rotate_2 60s linear infinite;
  bottom: 15%;
  right: 39%; }

.img_custom_dust_5:before {
  content: '';
  position: absolute;
  height: 62px;
  width: 62px;
  animation: rotate 80s linear infinite; }

.img_custom_dust_6 {
  width: 62px;
  height: 62px;
  position: absolute;
  transform-origin: 200% center;
  animation: rotate 70s linear infinite;
  right: 15%;
  bottom: 22%; }

.img_custom_dust_6:before {
  content: '';
  position: absolute;
  height: 62px;
  width: 62px;
  animation: rotate_2 60s linear infinite; }

.img_custom_dust_6:hover {
  display: none; }

@keyframes rotate {
  100% {
    transform: rotate(-360deg); } }

@keyframes rotate_2 {
  100% {
    transform: rotate(360deg); } }

/* ---- FINISH DUST ANIMATION ---- */
.store-selector .button__buy {
  margin-bottom: 0 !important; }
  .store-selector .button__buy.custom_btn {
    color: white;
    border: none !important;
    background: #ff8000; }

.store-selector .country_name a:link,
.store-selector .country_name a:visited,
.store-selector .country_name a:hover,
.store-selector .country_name a:active {
  color: #3b4f4b;
  background-image: none; }

.lightbox {
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
  position: fixed;
  display: none;
  z-index: 9999;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0; }
  .lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 7% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 10; }
    @media screen and (max-width: 768px) {
      .lightbox-container {
        margin-top: 10%; } }
    @media screen and (max-width: 414px) {
      .lightbox-container {
        margin-top: 13%; } }
  .lightbox-content {
    box-shadow: 0 1px 6px fade(black, 70%); }
  .lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: white;
    top: -52px;
    right: 3%; }

.video-container {
  padding-bottom: 56.25%;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  height: 0; }

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0; }

.store-locator {
  position: relative;
  transition: all 0.2s linear; }
  .store-locator__color-jaffa .store-locator__links li:hover {
    background: #eee; }
    .store-locator__color-jaffa .store-locator__links li:hover a {
      color: #000; }
  .store-locator__color-jaffa .store-locator__button {
    display: inline-block;
    text-align: center;
    border-bottom: none;
    background-image: none !important;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    background-color: #ff8000;
    border: 1px solid #ff8000;
    padding: 0.5rem 3rem;
    -webkit-border-radius: 0.5rem 3rem/1.5;
    border-radius: 0.5rem 3rem/1.5;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background: #ff8000;
    color: #fff;
    font-size: 1.7169856rem;
    display: block; }
    .store-locator__color-jaffa .store-locator__button:link, .store-locator__color-jaffa .store-locator__button:visited {
      color: white;
      background-color: rgba(0, 0, 0, 0.2);
      background-color: #ff8000; }
    .store-locator__color-jaffa .store-locator__button:hover {
      color: white;
      background-color: #eb7b08; }
    .store-locator__color-jaffa .store-locator__button:active {
      color: white;
      background-color: #d8760f; }
    .store-locator__color-jaffa .store-locator__button:link, .store-locator__color-jaffa .store-locator__button:visited, .store-locator__color-jaffa .store-locator__button:hover, .store-locator__color-jaffa .store-locator__button:active {
      text-decoration: none;
      background-image: none !important;
      border: 1px solid #ff8000; }
    @media (min-width: 768px) {
      .store-locator__color-jaffa .store-locator__button {
        font-size: 2.3103758234rem; } }
  .store-locator__color-blue .store-locator__links li:hover {
    background: #cad1d8; }
    .store-locator__color-blue .store-locator__links li:hover a {
      color: #3b4f4b; }
  .store-locator__color-blue .store-locator__button {
    display: inline-block;
    text-align: center;
    border-bottom: none;
    background-image: none !important;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    background-color: #639bcf;
    border: 1px solid #639bcf;
    padding: 0.5rem 3rem;
    -webkit-border-radius: 0.5rem 3rem/1.5;
    border-radius: 0.5rem 3rem/1.5;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background: #639bcf;
    color: #fff;
    font-size: 1.7169856rem;
    display: block; }
    .store-locator__color-blue .store-locator__button:link, .store-locator__color-blue .store-locator__button:visited {
      color: white;
      background-color: rgba(0, 0, 0, 0.2);
      background-color: #639bcf; }
    .store-locator__color-blue .store-locator__button:hover {
      color: white;
      background-color: #5f93c2; }
    .store-locator__color-blue .store-locator__button:active {
      color: white;
      background-color: #5b8cb5; }
    .store-locator__color-blue .store-locator__button:link, .store-locator__color-blue .store-locator__button:visited, .store-locator__color-blue .store-locator__button:hover, .store-locator__color-blue .store-locator__button:active {
      text-decoration: none;
      background-image: none !important;
      border: 1px solid #639bcf; }
    @media (min-width: 768px) {
      .store-locator__color-blue .store-locator__button {
        font-size: 2.3103758234rem; } }
  .store-locator__color-yellow .store-locator__links li:hover {
    background: #eee; }
    .store-locator__color-yellow .store-locator__links li:hover a {
      color: #000; }
  .store-locator__color-yellow .store-locator__button {
    display: inline-block;
    text-align: center;
    border-bottom: none;
    background-image: none !important;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    background-color: #ffae00;
    border: 1px solid #ffae00;
    padding: 0.5rem 3rem;
    -webkit-border-radius: 0.5rem 3rem/1.5;
    border-radius: 0.5rem 3rem/1.5;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background: #ffae00;
    color: #fff;
    font-size: 1.7169856rem;
    display: block; }
    .store-locator__color-yellow .store-locator__button:link, .store-locator__color-yellow .store-locator__button:visited {
      color: white;
      background-color: rgba(0, 0, 0, 0.2);
      background-color: #ffae00; }
    .store-locator__color-yellow .store-locator__button:hover {
      color: white;
      background-color: #eba508; }
    .store-locator__color-yellow .store-locator__button:active {
      color: white;
      background-color: #d89b0f; }
    .store-locator__color-yellow .store-locator__button:link, .store-locator__color-yellow .store-locator__button:visited, .store-locator__color-yellow .store-locator__button:hover, .store-locator__color-yellow .store-locator__button:active {
      text-decoration: none;
      background-image: none !important;
      border: 1px solid #ffae00; }
    @media (min-width: 768px) {
      .store-locator__color-yellow .store-locator__button {
        font-size: 2.3103758234rem; } }
  .store-locator .store-locator__button {
    border: none;
    text-align: center;
    width: 100%;
    border-radius: 8px; }
    .store-locator .store-locator__button:hover {
      cursor: pointer;
      border: none; }
      .store-locator .store-locator__button:hover .store-locator__links {
        opacity: 1;
        display: block; }
  .store-locator__links {
    position: absolute;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 0px);
    padding: 0;
    z-index: 20;
    width: 100%;
    background: #fff;
    z-index: 10;
    border-radius: 8px;
    opacity: 0;
    display: none;
    transition: all 0.5s ease;
    /*
    &:before {
      content:"";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 12.5px 15px 12.5px;
      border-color: transparent transparent #ffffff transparent;
      z-index: 10;
      position: absolute;
      top: -15px;
      right: 20px;
    }
    */ }
    .store-locator__links li {
      text-align: center;
      list-style: none;
      font-size: 1.276rem;
      border-bottom: 1px solid #f5f5f5; }
      @media (min-width: 768px) {
        .store-locator__links li {
          font-size: 1.48016rem; } }
      .store-locator__links li:first-of-type {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px; }
      .store-locator__links li:last-of-type {
        margin-right: 0;
        border-bottom: 1px solid transparent;
        border-bottom-left-radius: 0.4em;
        border-bottom-right-radius: 0.4em; }
      .store-locator__links li img {
        margin: 10px;
        max-width: 30px; }
        @media (min-width: 768px) {
          .store-locator__links li img {
            max-width: 40px; } }
      .store-locator__links li a {
        color: #000;
        display: flex;
        align-items: center;
        border: none;
        background: none; }

.flex-inline {
  display: flex;
  align-items: center; }

.alignRight {
  text-align: right; }
  @media (max-width: 600px) {
    .alignRight {
      text-align: left; } }

.svgpoint:hover {
  cursor: pointer; }

body.page-template-brand-guide .wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 50vh 30vh 20vh;
  grid-gap: 10px; }

body.page-template-brand-guide .palette--major--orange {
  background-color: #ff8000;
  grid-column: 1 / 4; }

body.page-template-brand-guide .palette--major--blue {
  background-color: #639bcf;
  grid-column: 4 / 7; }

body.page-template-brand-guide .palette--minor--green {
  background-color: #54ab95;
  grid-column: 1/3; }

body.page-template-brand-guide .palette--minor--yellow {
  background-color: #ffae00;
  grid-column: 3/5; }

body.page-template-brand-guide .palette--minor--purple {
  background-color: #4c4c7b;
  grid-column: 5/7; }

body.page-template-brand-guide .palette--neutral, body.page-template-brand-guide .palette--neutral--dark--brown, body.page-template-brand-guide .palette--neutral--dark--blue, body.page-template-brand-guide .palette--neutral--dark--purple, body.page-template-brand-guide .palette--neutral--light--brown, body.page-template-brand-guide .palette--neutral--light--blue, body.page-template-brand-guide .palette--neutral--light--purple {
  grid-row: 3/4; }
  body.page-template-brand-guide .palette--neutral--dark--brown {
    background-color: dimgray;
    grid-column: 1/2; }
  body.page-template-brand-guide .palette--neutral--dark--blue {
    background-color: #46525d;
    grid-column: 2/3; }
  body.page-template-brand-guide .palette--neutral--dark--purple {
    background-color: #676b6f;
    grid-column: 3/4; }
  body.page-template-brand-guide .palette--neutral--light--brown {
    background-color: #d8d1ca;
    grid-column: 4/5; }
  body.page-template-brand-guide .palette--neutral--light--blue {
    background-color: #cad1d8;
    grid-column: 5/6; }
  body.page-template-brand-guide .palette--neutral--light--purple {
    background-color: #c9cfc9;
    grid-column: 6/7; }

body.foobot-custom #thrive-comments {
  font-family: "DIN2014-Regular", sans-serif; }
  body.foobot-custom #thrive-comments button,
  body.foobot-custom #thrive-comments .tcm-voting-container .tcm-voting-input {
    border-radius: 7px; }
  body.foobot-custom #thrive-comments textarea, body.foobot-custom #thrive-comments input, body.foobot-custom #thrive-comments textarea {
    box-shadow: none; }

.widget {
  text-align: left;
  margin-bottom: 1rem; }
  .widget form input[type="submit"], .widget form textarea[type="submit"] {
    margin-top: 0.5rem;
    color: white;
    background-color: #639bcf;
    padding: 12px 15px;
    border: none; }
  .widget form input[type="email"], .widget form textarea[type="email"] {
    background-color: white; }

div.wpcf7 span.wpcf7-not-valid-tip, div.wpcf7 div.wpcf7-spam-blocked,
div.wpcf7 div.wpcf7-validation-errors, div.wpcf7 .wpcf7-response-output.wpcf7-spam-blocked, div.wpcf7 .wpcf7-response-output.wpcf7-validation-errors, div.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  display: inline-block;
  color: white;
  background-color: #4c4c7b;
  padding: 5px;
  border-radius: 5px; }

div.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #54ab95; }

.home-hero-modal .tcb-button-link, .home-hero-modal
a.tcb-button-link {
  color: #383938 !important;
  background-color: white !important;
  border-color: white !important;
  font-size: 16px; }
  .home-hero-modal .tcb-button-link:hover, .home-hero-modal
  a.tcb-button-link:hover {
    background-color: transparent !important;
    border-color: #9c9c9c !important; }
    .home-hero-modal .tcb-button-link:hover > span:after, .home-hero-modal
    a.tcb-button-link:hover > span:after {
      color: #cc6600 !important; }
  .home-hero-modal .tcb-button-link > span:after, .home-hero-modal
  a.tcb-button-link > span:after {
    font-size: 27px;
    color: #ff8000;
    font-family: 'FontAwesome';
    content: '\f144';
    text-align: right;
    display: inline-block;
    opacity: 1;
    padding-left: 7px;
    line-height: 1; }
  .home-hero-modal .tcb-button-link span.tcb-button-texts, .home-hero-modal
  a.tcb-button-link span.tcb-button-texts {
    display: flex;
    align-items: center; }

.home .thrv_wrapper.thrv-page-section.tcb-window-width {
  width: 100% !important; }

body.tve_editor_page.foobot-custom #masthead.headhesive--stick {
  display: none; }

/*# sourceMappingURL=style.css.map */