/*------------------------------
Variables
-------------------------------*/
/*------------------------------
Extends
-------------------------------*/
.buttn {
  border-radius: 75px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 3%;
}

.new-badge, .dimming-animation .brightness-slider .sliding-bar, .dimming-animation .brightness-slider .circle-slider, .bg-card, .mobile-nav {
  -webkit-box-shadow: 0px 3px 18px 0px rgba(67, 67, 67, 0.3);
  -moz-box-shadow: 0px 3px 18px 0px rgba(67, 67, 67, 0.3);
  box-shadow: 0px 3px 18px 0px rgba(67, 67, 67, 0.3);
}

.resellers .reseller-card:hover {
  -webkit-box-shadow: 0px 3px 18px 0px rgba(67, 67, 67, 0.45);
  -moz-box-shadow: 0px 3px 18px 0px rgba(67, 67, 67, 0.45);
  box-shadow: 0px 3px 18px 0px rgba(67, 67, 67, 0.45);
}

.resellers .reseller-card, .buttn:hover {
  -webkit-box-shadow: 0px 3px 9px 0px rgba(67, 67, 67, 0.2);
  -moz-box-shadow: 0px 3px 9px 0px rgba(67, 67, 67, 0.2);
  box-shadow: 0px 3px 9px 0px rgba(67, 67, 67, 0.2);
}

/*------------------------------
Animations
-------------------------------*/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes plus-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vid-resize {
  0% {
    width: inherit;
  }
  50% {
    width: inherit;
  }
  90% {
    width: inherit;
  }
  100% {
    width: 60% !important;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  to {
    transform: translateY(0px);
  }
}
@keyframes lightpulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes size-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse-fade {
  0% {
    transform: scale(1);
    opacity: inherit;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulse-alarm {
  0% {
    transform: scale(1);
    opacity: inherit;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: inherit;
  }
}
@keyframes bounce {
  0%, 60% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-2px);
  }
  80% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes buzz-shake {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes traffic-tgt-1 {
  10%, 20% {
    transform: translateX(5px) translateY(-3px);
  }
  30%, 40% {
    transform: translateX(10px) translateY(-6px);
  }
  50%, 60% {
    transform: translateX(15px) translateY(-10px);
  }
  70%, 80% {
    transform: translateX(2px) translateY(2px);
  }
}
@keyframes traffic-tgt-2 {
  10%, 20% {
    transform: translateX(-8px) translateY(4px);
  }
  30%, 40% {
    transform: translateX(-10px) translateY(6px);
  }
  50%, 60% {
    transform: translateX(-15px) translateY(10px);
  }
  70%, 80% {
    transform: translateX(-2px) translateY(-2px);
  }
}
@keyframes sentry-rotate {
  100% {
    transform: rotate(0deg);
  }
}
@keyframes replay-slide {
  10%, 20% {
    transform: translateX(9vw);
  }
  30%, 40% {
    transform: translateX(20.5vw);
  }
  50%, 60% {
    transform: translateX(26vw);
  }
  70%, 80% {
    transform: translateX(14.5vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes auto-dim-circle {
  100% {
    transform: translateX(230px);
  }
}
@keyframes auto-dim-dark {
  100% {
    background-color: #4c5666;
  }
}
/*------------------------------
Base Site Styling
-------------------------------*/
html {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  padding: 0px;
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  background-color: #fff;
  height: 100%;
  width: 100%;
  color: #3d4a52;
}

.main-container {
  overflow-x: hidden;
}

img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

h1 {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 7.361em;
  font-weight: 400;
}

h2 {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 4.209em;
  font-weight: 600;
}

h3 {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 3.157em;
  font-weight: 600;
  margin-bottom: 20px;
}

h4 {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 2.66em;
  font-weight: 600;
  margin-bottom: 5%;
}

h5 {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 2.353em;
  font-weight: 600;
  margin-bottom: 5%;
}

h6 {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}

p.large {
  font-size: 1.769em;
  line-height: 1.66em;
}

p.bold {
  font-weight: 500;
}

p {
  font-family: "proxima-nova", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 1.33em;
  line-height: 1.66em;
  color: #3d4a52;
}

p.small {
  font-size: 1em;
}

.spaced {
  letter-spacing: 2px;
}

.condensed {
  width: 70%;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

sup {
  font-size: 1.25rem;
  line-height: 1;
  top: 0;
}

.buttn h5 {
  padding: 30px 25px;
  font-size: 1.33em;
  color: #fff;
  margin: 0px;
  line-height: 0px;
  transition: color 0.5s ease-in-out;
}
.buttn:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
.buttn.ltblue {
  background-color: #2c97de;
}
.buttn.ltblue:hover {
  background-color: #78c9ff;
}
.buttn.blue {
  background-color: #024169;
}
.buttn.blue:hover {
  background-color: #2c97de;
}
.buttn.dk-blue {
  background-color: #00263e;
}
.buttn.dk-blue:hover {
  background-color: #024169;
}
.buttn.ghost {
  background: none !important;
  border-width: 3px;
  border-style: solid;
}
.buttn.ghost.ltblue {
  border-color: #2c97de;
}
.buttn.ghost.ltblue:hover {
  border-color: #78c9ff;
}
.buttn.ghost.ltblue:hover h5 {
  color: #78c9ff;
}
.buttn.ghost.ltblue h5 {
  color: #2c97de;
}
.buttn.ghost.ltblue.white-text h5 {
  color: #fff;
}
.buttn.ghost.ltblue.white-text:hover h5 {
  color: #fff;
}
.buttn.ghost.dk-blue {
  border-color: #00263e;
}
.buttn.ghost.dk-blue:hover {
  border-color: #024169;
}
.buttn.ghost.dk-blue:hover h5 {
  color: #024169;
}
.buttn.ghost.dk-blue h5 {
  color: #00263e;
}
.buttn.ghost.blue {
  border-color: #024169;
}
.buttn.ghost.blue:hover {
  border-color: #2c97de;
}
.buttn.ghost.blue:hover h5 {
  color: #2c97de;
}
.buttn.ghost.blue h5 {
  color: #024169;
}
.buttn.ghost h5 {
  padding: 27px 25px;
}
.buttn:nth-of-type(2) {
  margin-left: 15px;
}
.buttn.smallr h5 {
  font-size: 1.15em;
  padding: 23px 15px;
}

.primary-blue {
  color: #024169;
}

.midnight-blue {
  color: #041c2c;
}

.dark-blue {
  color: #00263e;
}

.baby-blue {
  color: #b2d1e5;
}

.orange {
  color: #ef7f12;
}

.ff-ltblue {
  color: #2c97de;
}

.ff-blue {
  color: #212e39;
}

.grey {
  color: #d8dadc;
}

.lt-grey {
  color: #f5f6f7;
}

.dark-grey {
  color: #3d4a52;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.cloudy {
  color: #96acba;
}

.green {
  color: #68bd49;
}

.bg-primary-blue {
  background-color: #024169;
}

.bg-midnight-blue {
  background-color: #041c2c;
}

.bg-dark-blue {
  background-color: #00263e;
}

.bg-ff-ltblue {
  background-color: #2c97de;
}

.bg-ff-blue {
  background-color: #212e39;
}

.bg-lt-grey {
  background-color: #f5f6f7;
}

.opac-0 {
  opacity: 0;
}

.opac-25 {
  opacity: 0.25;
}

.opac-5 {
  opacity: 0.5;
}

.opac-7 {
  opacity: 0.7;
}

.opac-85 {
  opacity: 0.85;
}

.opac-10 {
  opacity: 1;
}

.angled {
  transform: skewY(8deg);
  transform-origin: 0;
  margin-bottom: 10%;
  margin-top: -5%;
}
.angled.top {
  margin-top: 20%;
}
.angled.top .container {
  margin-top: 15%;
  margin-bottom: 15%;
}
.angled .container {
  transform: skewY(-8deg);
  overflow: hidden;
  margin-bottom: 15%;
}
.angled .container .row:first-of-type {
  margin-top: 14%;
}
.angled .container .row:last-of-type {
  margin-bottom: 6%;
}
.angled.cut-over {
  margin-top: -5%;
  padding-bottom: 1%;
}
.angled.cut-over .container {
  overflow: visible;
  margin-bottom: 0px;
}
.angled.cut-over .container .row:first-of-type {
  margin-top: 0px;
}

.card {
  border-radius: 5px;
  border: none;
}
.card .card-cont {
  padding: 10%;
  border-radius: 5px;
}
.card .card-cont p:last-of-type {
  margin-bottom: 0px;
}
.card.image-card .card-cont {
  padding: 5%;
}

.v-space {
  margin-top: 5% !important;
  margin-bottom: 5% !important;
}

.v-space-lg {
  margin-top: 10% !important;
  margin-bottom: 10% !important;
}

.v-space-xl {
  margin-top: 15% !important;
  margin-bottom: 15% !important;
}

.v-space-sm {
  margin-top: 2.5% !important;
  margin-bottom: 2.5% !important;
}

.no-marg {
  margin-top: 0% !important;
  margin-bottom: 0% !important;
}

.home .nav-bar {
  background: rgba(255, 255, 255, 0.15);
}
.home .nav-bar .nav-container .logo {
  background-image: url("../images/sentrytm-logo-wh.png");
  background-size: cover;
  min-height: 30px;
  max-width: 134px;
}
.home .nav-bar .nav-container .links a {
  color: #fff;
}
.home .nav-bar.active .nav-container .logo {
  background-image: url("../images/sentrytm-logo-bl.png");
}
.home .nav-bar.active .nav-container .links a {
  color: #024169;
}

.nav-bar {
  background: none;
  position: fixed;
  top: 0px;
  z-index: 100;
  -webkit-box-shadow: 0px 6px 18px 0px rgba(67, 67, 67, 0.15);
  -moz-box-shadow: 0px 6px 18px 0px rgba(67, 67, 67, 0.15);
  box-shadow: 0px 6px 18px 0px rgba(67, 67, 67, 0.15);
  transition: all 0.5s ease-in-out;
  height: 60px;
  width: 100%;
}
.nav-bar.solid {
  background: #fff;
}
.nav-bar .nav-container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 15px;
}
.nav-bar .nav-container .logo {
  width: 8%;
  float: left;
  min-width: 120px;
  image-rendering: optimizeQuality;
}
.nav-bar .nav-container .logo img {
  max-width: 130px;
}
.nav-bar .nav-container .links {
  width: 45%;
  margin-left: 4%;
  float: left;
}
.nav-bar .nav-container .links a {
  display: inline-block;
  margin-right: 5%;
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 13px;
  color: #024169;
  font-weight: 500;
  font-size: 1.25em;
  position: relative;
}
.nav-bar .nav-container .links a:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2c97de;
  content: "";
  opacity: 0;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}
.nav-bar .nav-container .links a:hover {
  color: #2c97de;
  transition: color 0.3s;
}
.nav-bar .nav-container .links a:hover:after {
  height: 3px;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
.nav-bar .nav-container .links a.active {
  color: #2c97de;
  font-weight: 600;
  padding-bottom: 23px;
}
.nav-bar .nav-container .links a.active:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 1;
  background: #2c97de;
  content: "";
}
.nav-bar .nav-container .links a.active:hover::after, .nav-bar .nav-container .links a.active:focus::after {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}
.nav-bar .nav-container .links .new-badge {
  background-color: #68bd49;
  display: inline-block;
  border-radius: 75px;
  color: #fff;
  font-weight: 600;
  font-size: 0.6em;
  padding-top: 2px;
  padding-bottom: 1px;
  padding-left: 7px;
  padding-right: 7px;
  margin-left: -4%;
  margin-right: 5%;
  box-shadow: none;
}
.nav-bar .nav-container .actions {
  float: right;
  width: 30%;
}
.nav-bar .nav-container .actions h5.price {
  float: right;
  font-size: 1.33em;
  margin-right: 15px;
  margin-top: 3px;
}
.nav-bar .nav-container .actions .buttn {
  float: right;
  margin-top: -5px;
}
.nav-bar .nav-container .actions .buttn h5 {
  font-size: 1.1em;
  padding: 20px 18px;
}
.nav-bar.active {
  background-color: #fff;
}

.mobile-nav {
  display: none;
  width: 100%;
  height: 45px;
  position: fixed;
  background-color: #f5f6f7;
  top: 60px;
  z-index: 99;
}
.mobile-nav .mobile-container {
  text-align: center;
  height: 45px;
}
.mobile-nav .mobile-container a {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  font-weight: 500;
  font-size: 1.3em;
  color: #00263e;
}
.mobile-nav .mobile-container a.active {
  color: #2c97de;
  font-weight: 600;
}

/*------------------------------
Main Website
-------------------------------*/
.mainContainer {
  overflow-x: hidden;
}

.home .hero.slanted {
  overflow: hidden;
  transform: skewY(8deg);
  min-height: 950px;
  position: relative;
  transform-origin: bottom right;
  padding-left: 0px;
}
.home .hero.slanted:before {
  display: block;
  height: 100%;
  transform: skewY(-8deg);
  background-image: url("../images/hero-homepage-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  content: "";
  position: absolute;
  transform-origin: bottom right;
  width: 100%;
}
.home .hero.slanted .container {
  transform: skewY(-8deg);
}
.home .hero.slanted .container .row {
  padding-top: 15%;
  padding-bottom: 8%;
}
.home .hero.slanted .container .row h5.white {
  margin-bottom: 2%;
}
.home .hero img {
  margin-bottom: 10%;
  max-width: 450px;
}
.home .hero-follow {
  margin-top: -15%;
}

.sentry-family {
  position: relative;
}
.sentry-family img {
  position: absolute;
  z-index: 98;
  max-width: 800px;
  left: 50%;
  top: 0;
  margin-top: -18%;
  margin-left: -400px;
}

.mini .hero {
  background-image: url("../images/hero-sentrymini-bg-v2.jpg");
  background-position: center center;
  min-height: 750px;
}
.mini .hero .row {
  padding-top: 22%;
  padding-bottom: 15%;
  padding-left: 30px;
}

.playground .hero.slanted:before {
  background-image: url("../images/sentry-collage-home-hero.jpg");
}
.playground .hero .row {
  padding-top: 7%;
}
.playground .hero .row .hero-copy {
  width: 100%;
}

.hero {
  background-size: cover;
}
.hero .row {
  padding-top: 12%;
  padding-bottom: 11%;
}
.hero .row p.large {
  font-weight: 500;
}
.hero .row h2 {
  font-weight: 400;
}
.hero .row span.tm-symbol {
  font-size: 0.7em;
  vertical-align: top;
}
.hero .hero-media {
  position: relative;
  height: 505px;
}
.hero .hero-media .hero-video {
  width: 312px;
  height: auto;
  position: absolute;
  z-index: 10;
  top: 47px;
  right: 21px;
}
.hero .hero-media .hero-poster {
  position: absolute;
  width: 100%;
  z-index: 5;
  top: 0;
}
.hero.slanted {
  overflow: hidden;
  transform: skewY(8deg);
  min-height: 850px;
  position: relative;
  transform-origin: bottom right;
  padding-left: 0px;
}
.hero.slanted:before {
  display: block;
  height: 100%;
  transform: skewY(-8deg);
  background-image: url("../images/hero-sentry-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  content: "";
  position: absolute;
  transform-origin: bottom right;
  width: 100%;
}
.hero.slanted .container {
  transform: skewY(-8deg);
}
.hero.slanted .container .row {
  padding-top: 22%;
}

.hero-follow {
  margin-top: -15%;
}

/* Rob's edits */
.hero-list {
  list-style: none;
  margin-left: -7px;
  padding-left: 0px;
  width: 120%;
  margin-bottom: 25px;
  margin-top: 25px;
}
.hero-list li {
  display: inline-block;
  padding: 10px;
  width: 48%;
  margin-right: 1%;
}
.hero-list li img {
  margin-right: 15px;
  width: 35px;
  display: inline-block;
  vertical-align: middle;
}
.hero-list li span {
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.hero-list li.highlight {
  background-color: #eef6ff;
}

.lightbox {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: none;
}
.lightbox .video-container {
  width: 50%;
  max-width: 760px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}
.lightbox.active {
  display: block;
}

.c-monoxide-animation .co-alert {
  border-radius: 10px;
  background-color: #e40d0d;
  width: 100%;
  -webkit-box-shadow: 0px 0px 14px 5px rgba(228, 13, 13, 0.75);
  -moz-box-shadow: 0px 0px 14px 5px rgba(228, 13, 13, 0.75);
  box-shadow: 0px 0px 14px 5px rgba(228, 13, 13, 0.75);
  position: absolute;
  z-index: 10;
  top: 45%;
  right: 1%;
  opacity: 0;
}
.c-monoxide-animation .co-alert .alert-cont {
  padding: 15px;
  text-align: center;
}
.c-monoxide-animation .co-alert .alert-cont h6 {
  margin-bottom: 0px;
}
.c-monoxide-animation .co-alert.active {
  animation: fade-in 1s ease-in 2s, size-pulse 3s linear 3s infinite;
  animation-fill-mode: forwards;
}

.traffic-target-animation {
  position: relative;
  margin-top: 15%;
  margin-bottom: 10%;
}
.traffic-target-animation .traffic-target {
  width: 100px;
  height: 100px;
  position: absolute;
}
.traffic-target-animation .traffic-target.tgt-1 {
  right: 30px;
}
.traffic-target-animation .traffic-target.tgt-1.active {
  animation: traffic-tgt-1 8s linear infinite;
  animation-fill-mode: forwards;
}
.traffic-target-animation .traffic-target.tgt-2 {
  left: 20px;
  top: -50px;
  width: 70px;
  height: 70px;
}
.traffic-target-animation .traffic-target.tgt-2.active {
  animation: traffic-tgt-2 6s linear infinite;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.traffic-target-animation .image-card .card-cont {
  min-height: 495px;
}
.traffic-target-animation .traffic-alert-animation .card {
  position: relative;
}
.traffic-target-animation .traffic-alert-animation .card .traffic-alert {
  background-color: #df8181;
  border: 2px solid #000;
  border-radius: 2px;
  display: inline-block;
  opacity: 0;
  z-index: 10;
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 385px;
}
.traffic-target-animation .traffic-alert-animation .card .traffic-alert h3 {
  font-size: 1.33em;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  color: #000;
  text-align: center;
  padding: 15px;
  margin-bottom: 0px;
}
.traffic-target-animation .traffic-alert-animation .card .traffic-alert.active {
  animation: fade-in 1s ease 1s;
  animation-fill-mode: forwards;
}

.mount-animation .sentry-mounted {
  width: 50%;
  transform: rotate(-90deg);
  position: absolute;
  top: -35px;
  left: 50%;
  margin-left: -120px;
  opacity: 0;
}
.mount-animation .sentry-mounted.active {
  animation: fade-in 0.5s linear, sentry-rotate 1s ease-in 0.5s;
  animation-fill-mode: forwards;
}
.mount-animation .ram-mount {
  width: 65%;
}

.bg-card {
  border-radius: 5px;
  min-height: 500px;
  max-height: 500px;
  margin-bottom: 5%;
}
.bg-card.bg-compactform {
  background-image: url("../images/smini-ultracompact.jpg");
  background-size: cover;
  background-position-y: 80%;
}
.bg-card.bg-firmware {
  background-image: url("../images/smini-firmware-updates.jpg");
  background-size: cover;
  background-position-y: 50%;
}
.bg-card.bg-wificlient {
  background-image: url("../images/splus-wifi.jpg");
  background-size: cover;
  background-position-y: 56%;
}
.bg-card.bg-flarm {
  background-image: url("../images/splus-flarm.jpg");
  background-size: cover;
  background-position-y: 56%;
}

.cards-animation .card-images img {
  width: 40%;
  float: left;
  opacity: 0;
}
.cards-animation .card-images .opac-1 {
  opacity: 1;
}
.cards-animation .card-images .card-deck {
  margin-right: 20px;
}
.cards-animation .card-images .card-deck.slide-top-down {
  transform: translateY(-200px);
  animation: fade-in 2s ease, slide-in 1s ease 0.2s forwards;
}
.cards-animation .card-images .sentry-unit.slide-bottom-top {
  transform: translateY(200px);
  animation: fade-in 2s ease, slide-in 1s ease 0.2s forwards;
}

.dimming-animation {
  overflow: hidden;
}
.dimming-animation .brightness-slider {
  position: relative;
  margin-top: 8%;
}
.dimming-animation .brightness-slider .circle-slider {
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -4px;
  z-index: 10;
  transition: background-color 0.5s ease-in-out;
  text-align: center;
}
.dimming-animation .brightness-slider .circle-slider img {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.dimming-animation .brightness-slider .circle-slider img:nth-of-type(1) {
  z-index: 10;
}
.dimming-animation .brightness-slider .sliding-bar {
  width: 250px;
  height: 12px;
  background-color: #ef7f12;
  border-radius: 75px;
  opacity: 0.7;
  transition: background-color 0.5s ease-in-out;
}
.dimming-animation .brightness-slider.active .circle-slider {
  animation: auto-dim-circle 1.5s linear 1s, auto-dim-dark 0.5s linear 1.8s;
  animation-fill-mode: forwards;
}
.dimming-animation .brightness-slider.active .circle-slider img:nth-of-type(1) {
  animation: fade-out 1.5s linear 1s;
  animation-fill-mode: forwards;
}
.dimming-animation .brightness-slider.active .sliding-bar {
  animation: auto-dim-dark 0.5s linear 1.7s;
  animation-fill-mode: forwards;
}
.dimming-animation .green-light {
  width: 20px;
  height: 20px;
  background-color: #2be232;
  -webkit-box-shadow: 0px 0px 15px 2px rgb(27, 194, 32);
  -moz-box-shadow: 0px 0px 15px 2px rgb(27, 194, 32);
  box-shadow: 0px 0px 15px 2px rgb(27, 194, 32);
  border-radius: 50%;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  animation: lightpulse 2s infinite;
  opacity: 1;
  z-index: 2;
}
.dimming-animation .sentry-lights {
  position: relative;
  min-height: 538px;
}
.dimming-animation .sentry-lights img {
  position: absolute;
  top: 0;
}
.dimming-animation .sentry-lights img:nth-of-type(1) {
  z-index: 10;
}
.dimming-animation .sentry-lights.active img:nth-of-type(1) {
  animation: fade-out 1.5s ease-in 1s;
  animation-fill-mode: forwards;
}

.visual-alert-box {
  border-radius: 5px;
  border: 3px solid #00263e;
  width: 100%;
}
.visual-alert-box h6 {
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 0px;
}

.wx-replay-animation .slider-circle {
  width: 25px;
  height: 25px;
  background-color: #2c97de;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 20%;
  top: 18%;
}
.wx-replay-animation .slider-circle.active {
  animation: replay-slide 10s linear infinite;
}

table.devices-compare thead {
  text-align: center;
  background-color: #2c97de;
}
table.devices-compare thead th {
  font-size: 1.33em;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
table.devices-compare tr td {
  border: 2px solid #fff;
  text-align: center;
  padding: 15px;
}
table.devices-compare tr td:nth-child(1) {
  width: 400px;
  text-align: left;
}
table.devices-compare tr td img {
  width: 18px;
  height: 18px;
  text-align: center;
  vertical-align: center;
}
table.devices-compare tr:nth-child(even) {
  background-color: #f5f6f7;
}

.new-badge {
  background-color: #68bd49;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 6px;
  margin-bottom: 3%;
  border-radius: 75px;
  display: inline-block;
}
.new-badge h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 1px;
}
.new-badge.unit {
  background-color: #3d4a52;
}
.new-badge.unit:nth-child(2) {
  margin-left: 15px;
}

/*------------------------------
Sentry Page
-------------------------------*/
.sentry .hero {
  overflow: hidden;
  transform: skewY(8deg);
  min-height: 850px;
  position: relative;
  transform-origin: bottom right;
  padding-left: 0px;
}
.sentry .hero:before {
  display: block;
  height: 100%;
  transform: skewY(-8deg);
  background-image: url("../images/hero-sentry-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  content: "";
  position: absolute;
  transform-origin: bottom right;
  width: 100%;
}
.sentry .hero .container {
  transform: skewY(-8deg);
}
.sentry .hero .container .row {
  padding-top: 22%;
}
.sentry .hero-follow {
  margin-top: -15%;
}

/*------------------------------
Sentry Mini
-------------------------------*/
.bg-sminiwx {
  background: url("../images/smini-adsbwx.jpg");
  background-size: 110%;
  background-repeat: no-repeat;
}
.bg-sminiwx .row {
  padding-top: 10%;
  padding-bottom: 10%;
}

/*------------------------------
Sentry Plus
-------------------------------*/
.sentry-plus .hero {
  background: #000;
  position: relative;
  height: 945px;
}
.sentry-plus .hero .features-bar {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.sentry-plus .hero .features-bar h5 {
  display: flex;
  align-items: center;
  align-content: center;
  color: #fff;
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 2%;
  text-transform: uppercase;
  border-right: 1px solid #2c97de;
  max-width: 15%;
  font-size: 1em;
  font-weight: 700;
  min-height: 60px;
  vertical-align: middle;
  text-align: center;
}
.sentry-plus .hero .features-bar h5:last-of-type {
  border: none;
}
.sentry-plus .hero .vid-ending-text {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  animation: plus-fade 9s forwards;
}
.sentry-plus .hero .vid-ending-text img {
  max-width: 325px;
  margin-bottom: 2%;
  margin-top: 1%;
}
.sentry-plus .hero .vid-ending-text p {
  margin-bottom: 2%;
}
.sentry-plus .splus-revealvid {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  z-index: 1;
  object-fit: cover;
  height: 945px;
  /* animation: vid-resize 10s 1; */
}
.sentry-plus .c-monoxide-animation .alert-circle {
  border-radius: 1000px;
  min-width: 400px;
  min-height: 400px;
  background: rgb(250, 93, 93);
  background: radial-gradient(circle, rgba(250, 93, 93, 0.2819721639) 50%, rgba(224, 15, 15, 0.9094231443) 86%);
  opacity: 0.3;
  animation: pulse-alarm 2s infinite;
  filter: blur(5px);
  position: absolute;
  top: 3%;
  right: -4%;
}
.sentry-plus .c-monoxide-animation .co-alert {
  z-index: 95;
}
.sentry-plus .c-monoxide-animation img {
  position: relative;
  z-index: 90;
}

.plus-battery .row h5 {
  font-weight: 400;
  max-width: 819px;
}
.plus-battery .row h5 span {
  font-weight: 600;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.plus-battery .row h5 span.active {
  opacity: 1;
  transition: all 1s ease-in-out;
}

.oled {
  overflow: hidden;
  transform: skewY(8deg);
  min-height: 950px;
  position: relative;
  transform-origin: bottom right;
  padding-left: 0px;
  background-color: #000;
  margin-top: 15%;
  margin-bottom: 5%;
}
.oled:before {
  display: block;
  height: 132%;
  transform: skewY(-8deg);
  background-image: url("../images/splus-screen.jpg");
  background-repeat: no-repeat;
  background-size: 89%;
  background-position: center center;
  content: "";
  position: absolute;
  left: 0;
  transform-origin: top left;
  width: 114%;
}
.oled .container {
  transform: skewY(-8deg);
  margin-bottom: 5%;
}
.auto-tracklog .tracklog-animation {
  position: relative;
}
.auto-tracklog .tracklog-animation img {
  position: relative;
  z-index: 90;
  width: 80%;
}
.auto-tracklog .tracklog-animation .circle-pulse {
  border-radius: 1000px;
  min-width: 400px;
  min-height: 400px;
  background: rgb(124, 200, 251);
  background: radial-gradient(circle, rgba(124, 200, 251, 0.2819721639) 50%, rgba(44, 151, 222, 0.9094231443) 86%);
  opacity: 0.3;
  animation: pulse-fade 1.5s infinite;
  filter: blur(5px);
  position: absolute;
  top: 3%;
  left: 7%;
}
.auto-tracklog .tracklog-animation video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10%;
}

.g-load {
  overflow: hidden;
  transform: skewY(8deg);
  min-height: 950px;
  position: relative;
  transform-origin: bottom right;
  padding-left: 0px;
  background-color: #000;
  margin-top: 15%;
  margin-bottom: 5%;
}
.g-load:before {
  display: block;
  height: 132%;
  transform: skewY(-8deg);
  background-image: url("../images/splus-gload.jpg");
  background-repeat: no-repeat;
  background-size: 105%;
  background-position-y: center;
  content: "";
  position: absolute;
  left: 0;
  transform-origin: top left;
  width: 120%;
}
.g-load .container {
  transform: skewY(-8deg);
  margin-bottom: 5%;
}
.g-load .container .row img {
  width: 20%;
  margin-bottom: 5%;
}

.text-carousel-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-carousel {
  position: relative;
  transition: all 0.5s ease-in-out;
  float: left;
}

.text-carousel-wrap > * {
  color: #212e39;
  font-size: 1.5rem;
}

.text-carousel-prefix {
  padding-right: 1rem;
  float: left;
}

.text-carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  white-space: nowrap;
  display: inline-flex;
}

.text-carousel-item span {
  padding-left: 0.5rem;
}

@keyframes animateText {
  from {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.text-carousel-item_wrap.active .text-carousel-item {
  animation-name: animateText;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.text-carousel-item span {
  color: #2c97de;
}

/*------------------------------
Buy Comparison Page
-------------------------------*/
.buy-page .hero .row {
  padding-top: 10%;
  padding-bottom: 5%;
}
.buy-page .buy-comparison .products div img {
  width: 50%;
}
.buy-page .buy-comparison .products div img:first-of-type {
  width: 60%;
}
.buy-page .buy-comparison .products div.prod-card h4 {
  font-size: 1.8em;
  margin-bottom: 0px;
}
.buy-page .buy-comparison .products div.prod-card .buttn {
  margin-bottom: 15%;
  margin-left: 0px !important;
}
.buy-page .buy-comparison .products div.prod-card:nth-of-type(3) > img {
  margin-bottom: 39px;
  margin-top: -30px;
}
.buy-page .buy-comparison .products div.prod-card p:nth-of-type(2) {
  margin-bottom: 0px;
}
.buy-page .buy-comparison .products ul.buy-icons {
  border-top: 1px solid #f5f6f7;
  border-bottom: 1px solid #f5f6f7;
  padding-top: 5%;
  padding-left: 0px;
  margin-left: auto;
  margin-right: auto;
}
.buy-page .buy-comparison .products ul.buy-icons li {
  list-style-type: none;
  text-align: left;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 106px;
}
.buy-page .buy-comparison .products ul.buy-icons li img {
  width: 32px;
}
.buy-page .buy-comparison .products ul.buy-icons li span {
  font-weight: 500;
  font-size: 1em;
  padding-top: 10px;
  color: #00263e;
}
.buy-page .buy-comparison .products.buy-footer h3 {
  margin-top: 8%;
  margin-bottom: 5px;
}
.buy-page .buy-comparison .products .resp {
  display: none;
}
.buy-page .buy-comparison .products .resp h3 {
  margin-top: 8%;
  margin-bottom: 5px;
}
.buy-page .bg-resellers {
  overflow: hidden;
  transform: skewY(8deg);
  min-height: 950px;
  position: relative;
  transform-origin: bottom right;
  padding-left: 0px;
  background-color: #000;
  margin-top: 15%;
  margin-bottom: 5%;
}
.buy-page .bg-resellers:before {
  display: block;
  height: 132%;
  transform: skewY(-8deg);
  background-image: url("../images/hero-sentrybuy-bg.jpg");
  background-repeat: no-repeat;
  background-size: 89%;
  background-position-x: 350%;
  background-position-y: center;
  content: "";
  position: absolute;
  right: 0;
  transform-origin: top left;
  width: 100%;
}
.buy-page .bg-resellers .container {
  transform: skewY(-8deg);
  margin-bottom: 5%;
}
.buy-page .bg-resellers .container .row h3 {
  margin-bottom: 40px;
}
.buy-page .resellers {
  margin-bottom: 5%;
}
.buy-page .resellers .bord-bot {
  border-bottom: 1px solid #f5f6f7;
  padding-left: 10px;
}

/*------------------------------
Resellers Reuseable Module
-------------------------------*/
.resellers {
  margin-top: 5%;
}
.resellers .reseller-card {
  padding: 8%;
  border-radius: 10px;
  min-height: 200px;
  background-color: #fff;
  position: relative;
}
.resellers .reseller-card img {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8%;
}
.resellers .reseller-card:hover {
  transition: all 0.2s ease-in-out;
}
.resellers .buttn {
  margin-left: 0px;
}
.resellers .buttn h5 {
  line-height: 1.33rem;
  padding: 20px 25px;
}

.footer .container {
  padding-top: 3%;
  padding-bottom: 3%;
}
.footer .container .row:last-of-type {
  margin-top: 2%;
}
.footer .container .row:last-of-type p {
  margin-bottom: 0px;
}
.footer .container h4 {
  font-size: 1.4em;
}
.footer .container a {
  display: block;
  color: #2c97de;
  font-size: 1.15em;
  font-weight: 500;
  line-height: 1.7em;
}
.footer .container a:hover {
  color: #b2d1e5;
}
.footer .container a.buttn {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
}
.footer .container a.buttn h5 {
  font-size: 1em;
}
.footer .logo {
  max-width: 200px;
  margin-bottom: 10px;
}
.footer .link-bar {
  border-top: 1px solid #024169;
  padding-top: 15px;
  color: #fff;
}
.footer .link-bar a {
  color: #2c97de;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.15em;
  letter-spacing: 2px;
}
.footer .link-bar a:after {
  content: "|";
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
.footer .link-bar a:nth-child(3):after {
  content: "";
}
.footer h5.white {
  margin-bottom: 2.5%;
}

/*------------------------------
Media Queries
-------------------------------*/
@media all and (min-width: 1800px) {
  .sentry-plus .hero {
    height: 1000px;
  }
  .sentry-plus .splus-revealvid {
    top: 80px;
    width: auto;
    height: 92%;
  }
}
@media all and (max-width: 1799px) {
  .sentry-plus .hero {
    height: 945px;
  }
  .sentry-plus .splus-revealvid {
    top: 60px;
    width: 100%;
    height: 945px;
  }
}
@media all and (max-width: 1490px) {
  .g-load:before {
    background-size: 132%;
    background-position-x: 50%;
  }
}
@media all and (max-width: 1200px) {
  .mount-animation .sentry-mounted {
    margin-left: -100px;
  }
  .buttn:nth-of-type(2) {
    margin-left: 0px;
  }
  .home .hero.slanted .container .row {
    padding-top: 22%;
  }
  .hero .hero-media {
    height: 425px;
  }
  .hero .hero-media .hero-video {
    width: 261px;
    top: 40px;
    right: 19px;
  }
  .sentry-family img {
    margin-top: -27%;
  }
  .sentry .hero:before {
    background-position-x: 77%;
  }
  .sentry-plus .hero {
    height: 870px;
  }
  .sentry-plus .splus-revealvid {
    height: 870px;
  }
  .sentry-plus .hero .features-bar h5 {
    font-size: 0.9em;
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }
  .auto-tracklog .tracklog-animation .circle-pulse {
    min-width: 332px;
    min-height: 332px;
  }
  .sentry-plus .c-monoxide-animation .alert-circle {
    min-width: 332px;
    min-height: 332px;
    right: -3%;
  }
  .g-load {
    min-height: 775px;
  }
  .buy-page .buy-comparison .products div.prod-card:nth-of-type(3) > img {
    margin-bottom: 38px;
  }
}
@media all and (max-width: 992px) {
  .hero-list {
    width: 140%;
  }
  .hero-list li {
    font-size: 12px;
    width: 45%;
  }
  .hero-list li img {
    margin-right: 5px;
  }
  .sentry-family img {
    margin-top: -34%;
    margin-left: 0px;
    max-width: 650px;
    transform: translateX(-50%);
  }
  .lightbox .video-container {
    width: 70%;
  }
  .traffic-target-animation .traffic-alert-animation .card .traffic-alert {
    width: 220px;
  }
  .traffic-target-animation .image-card .card-cont {
    min-height: inherit;
  }
  .visual-alert-box {
    width: 150%;
    margin-left: -20%;
  }
  .hero .hero-media {
    height: 319px;
  }
  .hero .hero-media .hero-video {
    width: 195px;
    top: 30px;
    right: 15px;
  }
  .mini .hero h2 {
    font-size: 4em;
  }
  .buy-page .hero .row {
    padding-top: 18%;
  }
  .buy-page .buy-comparison .products div.prod-card:nth-of-type(3) > img {
    margin-top: -22px;
    margin-bottom: 30px;
  }
  .buy-page .buy-comparison .products ul.buy-icons li:last-of-type span {
    font-size: 0.9em;
  }
  .home .nav-bar {
    background-color: #fff !important;
  }
  .home .nav-bar .nav-container .logo {
    min-width: 132px;
    background-image: url("../images/sentrytm-logo-bl.png");
  }
  .nav-bar .links {
    display: none;
  }
  .nav-bar .actions {
    width: 60% !important;
  }
  .mobile-nav {
    display: block;
  }
  .home .hero .slanted {
    min-height: 880px;
  }
  .prod-card:nth-of-type(3) p:first-of-type {
    margin-bottom: 3rem;
  }
  .footer .container a.buttn h5 {
    font-size: 0.8em;
  }
  .sentry-plus .hero {
    height: 835px;
  }
  .sentry-plus .hero .container {
    height: 570px;
  }
  .sentry-plus .splus-revealvid {
    height: 715px;
    top: 120px;
  }
  .sentry-plus .hero .vid-ending-text img {
    max-width: 280px;
    margin-top: 3%;
  }
  .oled {
    min-height: 865px;
  }
  .oled:before {
    background-size: 133%;
  }
  .g-load:before {
    background-size: 182%;
    background-position-x: 34%;
  }
  .sentry-plus .c-monoxide-animation .alert-circle {
    min-width: 270px;
    min-height: 270px;
    right: -5%;
  }
  .auto-tracklog .tracklog-animation img {
    width: 70%;
  }
  .auto-tracklog .tracklog-animation .circle-pulse {
    min-width: 354px;
    min-height: 354px;
    left: 13%;
  }
  .auto-tracklog .tracklog-animation video {
    margin-bottom: 10%;
  }
}
@media all and (max-width: 767px) {
  .hero .row {
    padding-top: 20%;
  }
  .card {
    margin-bottom: 8%;
  }
  .traffic-target-animation {
    margin-top: 20% !important;
  }
  .traffic-target-animation .traffic-target.tgt-1 {
    top: -120px;
  }
  .traffic-target-animation .traffic-target.tgt-2 {
    top: -100px;
  }
  .mount-animation .sentry-mounted {
    margin-left: -113px;
  }
  .mount-animation .ram-mount {
    margin-bottom: 10%;
  }
  .dimming-animation .brightness-slider {
    margin-bottom: 8%;
  }
  .footer .link-bar a {
    font-size: 1em;
  }
  .hero .hero-media {
    height: 383px;
  }
  .hero .hero-media .hero-video {
    width: 236px;
    top: 35px;
    right: 16px;
  }
  .hero .hero-copy {
    width: 100%;
  }
  .hero .hero-list li {
    width: 100%;
    font-size: 1rem;
  }
  .nav-bar .nav-container .actions {
    width: 34%;
  }
  .visual-alert-box {
    width: 65%;
    margin-left: 18%;
  }
  .bg-card.bg-compactform {
    background-position-x: center;
  }
  .mini .hero {
    min-height: 650px;
    background-position-x: 12%;
  }
  .mini .hero .container .row {
    padding-left: 0px;
    text-align: center;
  }
  .mini .hero .container .row .col-sm-10 {
    background: rgba(17, 19, 41, 0.75);
    border-radius: 5px;
    padding: 5%;
  }
  .sentry .hero .container .row {
    padding-top: 30%;
    text-align: center;
  }
  .home .hero.slanted .container .row {
    padding-top: 30%;
    text-align: center;
  }
  .sentry .hero .container .row .col-sm-10 {
    background: rgba(17, 19, 41, 0.75);
    border-radius: 5px;
    padding: 5%;
  }
  .buy-page .hero .row {
    padding-top: 30%;
  }
  .buy-page .buy-comparison .products div img:first-of-type {
    width: 90%;
  }
  .prod-card p:first-of-type {
    font-size: 1.1em;
    margin-top: 3%;
  }
  .prod-card:nth-of-type(3) p:first-of-type {
    margin-bottom: 2.7rem;
  }
  .buy-page .buy-comparison .products ul.buy-icons li {
    padding: 10px 0px;
    min-height: 110px;
  }
  .buy-page .buy-comparison .products div.prod-card:nth-of-type(3) > img {
    margin-bottom: 37px;
  }
  .buy-page .buy-comparison .products ul.buy-icons li span {
    text-align: center;
    font-size: 1em;
  }
  .buy-page .bg-resellers:before {
    background-size: 114%;
    background-position-x: unset;
    background-position-y: -5%;
  }
  .buy-page .bg-resellers .container .row h3 {
    text-align: center;
    margin-top: 55%;
  }
  .proven-safety .text-right {
    text-align: center !important;
  }
  .oled {
    min-height: 790px;
  }
  .oled:before {
    background-size: 160%;
  }
  .auto-tracklog .tracklog-animation .circle-pulse {
    min-width: 331px;
    min-height: 331px;
    left: 13%;
  }
  .g-load {
    min-height: 650px;
  }
  .g-load:before {
    background-size: 205%;
    background-position-x: 37%;
    opacity: 0.6;
  }
  .sentry-plus .c-monoxide-animation .alert-circle {
    min-width: 371px;
    min-height: 371px;
    right: -1%;
  }
}
@media all and (max-width: 575px) {
  .nav-bar .nav-container .actions {
    width: 60%;
  }
  .hero .row {
    padding-top: 40%;
  }
  .traffic-target-animation .image-card .card-cont {
    min-height: inherit;
  }
  .traffic-target-animation .traffic-alert-animation .card .traffic-alert {
    width: 300px;
  }
  .condensed {
    width: 100%;
  }
  .mount-animation .sentry-mounted {
    margin-left: -85px;
  }
  .footer .link-bar {
    padding-bottom: 15px;
  }
  .footer .link-bar a {
    width: 100%;
    text-align: center;
    display: block;
  }
  .footer .link-bar a:after {
    content: "";
    padding: 0px;
  }
  .footer .container {
    padding-top: 6%;
  }
  .footer .container h4 {
    margin-bottom: 2%;
  }
  .footer .col-sm-6 {
    text-align: center;
    margin-bottom: 3%;
  }
  .comparison-table {
    overflow-x: scroll !important;
  }
  table.devices-compare thead th {
    font-size: 1em;
  }
  .lightbox .video-container {
    width: 90%;
  }
  .hero .hero-media .hero-video {
    width: 66%;
    top: 10%;
    right: 4%;
  }
  .hero .hero-list {
    width: 100%;
  }
  .hero .hero-list li {
    width: 100%;
    font-size: 1rem;
  }
  .hero .hero-list li img {
    margin-right: 10px;
  }
  .sentry .hero {
    padding-right: 0px;
  }
  .mini .hero {
    background-position-x: 30%;
  }
  .mini .hero .container .row {
    padding-top: 40%;
  }
  .sentry .hero .container .row {
    padding-top: 40%;
  }
  .home .hero {
    padding-right: 0px;
  }
  .home .hero img {
    max-width: 350px;
  }
  .home .hero.slanted {
    min-height: 810px;
  }
  .home .hero.slanted .container .row {
    padding-top: 45%;
  }
  .home .traffic-target-animation {
    margin-top: 40% !important;
  }
  .buy-page .hero .row {
    padding-top: 40%;
  }
  .buy-page .buy-comparison .products div img:first-of-type {
    width: 75%;
  }
  .buy-page .buy-comparison .products div:first-child {
    border: 0px;
    margin-bottom: 10%;
  }
  .buy-page .buy-footer {
    display: none;
  }
  .buy-page .resp {
    display: block;
  }
  .buy-page .buy-comparison .products ul.buy-icons li {
    width: 150px;
    float: left;
  }
  .resp-hide {
    display: none !important;
  }
  .resp-center {
    text-align: center !important;
  }
  .buy-page .buy-comparison .products div {
    margin-bottom: 10%;
  }
  .buy-page .buy-comparison .products div:last-of-type {
    margin-bottom: 3%;
  }
  .buy-page .buy-comparison .products div.prod-card:nth-of-type(3) > img {
    margin-top: 0px;
  }
  .sentry-plus .hero {
    height: 900px;
  }
  .sentry-plus .hero .container {
    height: 540px;
  }
  .sentry-plus .splus-revealvid {
    height: 610px;
  }
  .sentry-plus .hero .features-bar {
    flex-wrap: wrap;
  }
  .sentry-plus .hero .features-bar h5 {
    max-width: 150px;
    font-size: 0.8em;
  }
  .sentry-plus .vid-ending-text {
    margin-bottom: 10%;
  }
  .auto-tracklog .tracklog-animation img {
    width: 70%;
  }
  .auto-tracklog .tracklog-animation .circle-pulse {
    min-width: 370px;
    min-height: 370px;
    left: 13%;
  }
  .auto-tracklog .tracklog-animation video {
    margin-bottom: 10%;
  }
  .g-load {
    min-height: 620px;
  }
  .sentry-plus .c-monoxide-animation .alert-circle {
    min-width: 435px;
    min-height: 435px;
    right: -1%;
  }
  .bg-card.bg-flarm, .bg-card.bg-wificlient {
    width: 95%;
    margin: auto;
    min-height: 400px;
  }
}
@media all and (max-width: 475px) {
  .hero .hero-media {
    margin-top: 15px;
  }
  .hero .hero-media .hero-video {
    width: 65%;
    top: 8%;
    right: 5%;
  }
  .auto-tracklog .tracklog-animation .circle-pulse {
    min-width: 301px;
    min-height: 301px;
  }
  .g-load:before {
    background-size: 274%;
    background-position-x: 47%;
    opacity: 0.4;
  }
  .nav-bar .nav-container .actions {
    width: 65% !important;
  }
  .nav-bar .nav-container .actions h5.price {
    font-size: 1.15em;
    margin-top: 5px;
    margin-right: 7px;
  }
  .oled p.large {
    font-size: 1.5em;
  }
  .sentry-plus .c-monoxide-animation .alert-circle {
    min-width: 354px;
    min-height: 354px;
  }
  .buy-page .buy-comparison .products ul.buy-icons li {
    width: 50%;
  }
  .sentry-plus .hero .features-bar h5 {
    width: 33%;
    font-size: 0.75em;
    margin-bottom: 6%;
    justify-content: center;
  }
  .sentry-plus .hero .features-bar h5:nth-child(3) {
    border: 0px;
  }
  .sentry-plus .splus-revealvid {
    top: 105px;
    height: 582px;
  }
  .sentry-plus .hero {
    height: 860px;
  }
  .sentry-plus .hero .container {
    height: 507px;
  }
}
@media all and (max-width: 390px) {
  .hero .hero-media .hero-video {
    width: 65%;
    top: 7.5%;
  }
  .visual-alert-box {
    width: 115%;
    margin-left: -5%;
  }
  .bg-card {
    min-height: 250px;
    width: 95%;
    margin: auto;
  }
  .mobile-nav .mobile-container a {
    padding-top: 9px;
    font-size: 1.1em;
  }
  .nav-bar .nav-container .price {
    display: none;
  }
  .nav-bar .nav-container .logo {
    min-width: 125px;
    min-height: 29px;
  }
  .nav-bar .nav-container .actions {
    width: 55% !important;
  }
  .auto-tracklog .tracklog-animation .circle-pulse {
    min-width: 284px;
    min-height: 284px;
  }
  .sentry-plus .c-monoxide-animation .alert-circle {
    right: -3%;
  }
}
@media all and (max-width: 320px) {
  .hero .hero-media .hero-video {
    top: 6.5%;
    right: 5.25%;
  }
  .nav-bar .nav-container .actions {
    width: 55% !important;
  }
  .mobile-nav .mobile-container a {
    font-size: 1em;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/*# sourceMappingURL=main.css.map */
