/* fonts
try to use absolute paths here for fonts*/
@font-face {
  font-family: 'RobotoBold';
  src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
  font-family: 'RobotoRegular';
  src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
  font-family: 'RobotoLight';
  src: url('../fonts/Roboto-Light.ttf');
}

@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/proximanova-regular-webfont.ttf');
}

@font-face {
  font-family: 'ProximanovaBold';
  src: url('../fonts/proximanova-bold-webfont.ttf');
}

@font-face {
  font-family: 'CatamaranRegular';
  src: url('../fonts/Catamaran-Regular.ttf');
}

@font-face {
  font-family: 'CatamaranBold';
  src: url('../fonts/Catamaran-Bold.ttf');
}

ul {
  list-style: none; /* Remove default bullets */
}

/* Add custom bullets */
ul li::before {
  content: '\2022';
  color: #005b97;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  font-size: 25px;
  transform: translateY(5.5px);
  margin-left: -1em;
}

ul.small-bullets li::before {
  font-size: 16px;
  transform: none;
  margin: 2px 0;
}
ul ul li::before {
  content: '\2218';
  font-size: 18px;
  font-weight: normal;
  display: inline;
  padding-right: 0.5em;
  line-height: 0;
}

h1 {
  font-family: 'RobotoRegular';
}

h2 {
  font-family: 'RobotoRegular';
}

h3 {
  font-family: 'RobotoRegular';
}

h4 {
  font-family: 'RobotoRegular';
}

section {
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
  font-family: 'RobotoRegular';
}
section h2 {
  margin-bottom: 1em;
}

.flex {
  display: flex;
}

.flex-one {
  flex: 1;
}

.two-column-flex {
  display: flex;
  gap: 6em;
}

.center-align-text {
  text-align: center;
}

.blue-promo-h1 {
  font-size: 62px;
  color: #005b97;
}

.black-promo-h4 {
  font-weight: normal;
  font-size: 20px;
  padding-top: 30px;
  line-height: 1.5;
}

.promo-big-three {
  display: flex;
  flex-flow: row wrap;
  flex-direction: row;
  background-color: #051826;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding: 8% 0;
}

.promo-big-three .content-block {
  /* width: 28%;
  display: flex;
  flex-direction: column; */
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.promo-big-three .content-block img {
  width: 80%;
  align-self: center;
  margin-bottom: 2rem;
}

.promo-big-three .content-block h5 {
  font-weight: normal;
}

.promo-form-area {
  background-image: url('../img/assets/become-a-partner-texture.jpg');
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.promo-form-limit {
  background-color: #fff;
  color: #005b97;
  padding: 5px;
  width: fit-content;
  font-size: 1rem;
}

.promo-form-header {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.promo-form-subheader {
  color:#fff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.promo-form-describe {
  color: #fff;
  margin-bottom: 10px;
}

.promo-anchor {
  height:80px;
  margin-top:-80px;
  visibility: hidden;
}

.promo-form {
  background-color: #fff;
  margin: 0 2rem;
  min-width: 80%;
  min-height: 100%;
  padding-bottom: 6rem;
  padding-top: 2rem;
}

.promo-form .promo-form-title {
  padding: 20px 32px;
  color: #005b97;
}

.promo-form .promo-form-group .promo-form-control {
  margin: 0.5rem 2rem;
  padding: 4px 10px;
  border-radius: 5px;
  border-style: solid;
  border-color: #777;
  border-width: 1px;
}

.promo-form .promo-form-group .promo-form-submit {
  max-width: 10rem;
  color:#005b97;
  background-color: #fff;
  border-color: #005b97;
  margin-right: 4px;
  /* margin-bottom: 4rem; */
}

.promo-form .promo-form-group .promo-form-submit:hover {
  max-width: 10rem;
  color:#fff;
  background-color: #005b97;
  border-color: #005b97;
}

.features-action-button {
  color: #00518c;
  border: 2px solid #00518c; /* Slightly thicker for better visibility */
  background: transparent;
  border-radius: 9px;
  padding: 1rem 4rem;
  font-weight: 600; /* Makes the text stand out more */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooths out all changes */
  position: relative;
  overflow: hidden;
}

.features-action-button:hover {
  background-color: #00518c;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 81, 140, 0.3); /* Soft blue glow */
  transform: translateY(-2px); /* Subtle "lift" effect */
}

.features-action-button:active {
  transform: translateY(0); /* Pushes back down when clicked */
  box-shadow: 0 2px 10px rgba(0, 81, 140, 0.2);
}

/* navbar style */
.navbar {
  padding-top: 18px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  background-color: transparent;
  z-index: 99999999;
}

.navbar-brand {
  width: 100px;
  margin-right: 0px;
}

.navbar-brand.active {
  color: white;
  background-color: #4caf50;
}

.navbar-brand:hover {
  color: grey;
}

.nav-item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
  float: left;
}

/* fancy hamburger */
.nav-hamburger {
  display: none;
}

.nav-hamburger {
  width: 25px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-hamburger span:nth-child(1) {
  top: 0px;
}

.nav-hamburger span:nth-child(2) {
  top: 8px;
}

.nav-hamburger span:nth-child(3) {
  top: 16px;
}

.nav-hamburger.open span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  left: 60px;
}

.nav-hamburger.open span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.black-ham span {
  background-color: black !important;
}
/* end of fancy hamburger */

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  40% {
    opacity: 0.4;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes slide {
  0% {
    margin-bottom: -50px;
  }
  40% {
    margin-bottom: -0px;
  }
  100% {
    margin-bottom: -0px;
  }
}

@keyframes border-bg-fade {
  0% {
    border-bottom: 4px solid rgba(0, 91, 151, 0.2);
  }
  100% {
    border-bottom: 4px solid rgba(0, 91, 151, 0.9);
  }
}

.navbarResponsive {
  opacity: 1;
  animation-name: slide;
  animation-timing-function: ease-in;
  animation-duration: 1s;
}

.ham-nav {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-timing-function: ease-in;
  animation-duration: 1s;
  padding-right: 50px;
}

.nav-link-main {
  font-family: 'RobotoBold';
  font-size: 16px;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.nav-link-main:hover:not(.active) {
  color: #666;
}

.nav-link-main.color-white:hover:not(.active) {
  color: white;
}

.no-show {
  display: none !important;
  position: fixed !important;
  z-index: -99999999 !important;
}

@media screen and (min-width: 801px) {
  .navbarResponsive {
    display: none !important;
  }
}

.partner-hr {
  border: 1px;
  background: url(/img/partner/arrow_down.png) no-repeat center;
  padding: 14px;
  max-width: 19rem;
}

.partner-btn {
  font-family: 'RobotoBold';
  font-size: 16px;
  color: #005b97;
  background-color: transparent;
  border: 1px solid #005b97;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 2px;
  padding-bottom: 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.partner-btn:hover {
  background-color: #005b97;
  color: white;
  text-decoration: none;
}

.partner-action-button {
  color: #fff !important;
  border: none;
  background: #005b97;
  border-radius: 7px;
  padding: 0.8rem 1.5rem;
  text-align: center;
  font: normal normal 600 18px/24px 'Roboto', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Only animate color/shadow */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-action-button:hover {
  background: #006bb3; /* Subtle brightening */
  box-shadow: 0 4px 12px rgba(0, 91, 151, 0.25); /* Soft glow, no lift */
}

.partner-action-button:active {
  background: #004d80; /* Slightly darker when clicked for feedback */
  transform: scale(0.98); /* Very subtle "press" effect */
}

.partner-level-text {
  padding-top: 2rem;
}

.partner-testimonial-bg {
  background: url("../img/partner/ChatMail_Extrude-01.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 58rem;
  min-height: 56rem;
}

.partner-phone-gif {
  display: grid;
  overflow: hidden;
  margin: auto;
}

.partner-phone-gif hr {
  margin-top: 0;
  padding-top: 0;
  background-color: #005b97;
  width: 80%;
}

.partner-light-section {
  padding: 6rem 0 4rem 0;
  background-color: #fafafa;
}

.partner-dark-section {
  color: #fff;
  background-color: #051826;
  background-size: cover;
  padding-bottom: 4.6rem;
  padding-top: 4.6rem;
}

.partner-black-section {
  color: #fff;
  background-color: #000;
  background-size: cover;
  padding-bottom: 4.6rem;
  padding-top: 4.6rem;
}

.partner-dark-section h1 {
  text-align: left;
  font: normal normal 300 42px/36px RobotoRegular;
  letter-spacing: 0px;
  color: #005b97;
  opacity: 1;
}

.partner-dark-section h2 {
  margin-top: 32rem;
  text-align: left;
  font: italic normal 300 36px/42px RobotoRegular;
  letter-spacing: 3.6px;
  color: #b5bcbf;
  opacity: 1;
}

.partner-dark-section h3 {
  text-align: left;
  font: italic normal 300 24px/32px RobotoRegular;
  letter-spacing: 2.4px;
  color: #b5bcbf;
  opacity: 1;
}

.partner-testimonial-spacer {
  margin-bottom: 4rem;
}

.partner-dark-section .link {
  text-align: left;
  font: normal normal 900 16px/42px RobotoRegular;
  letter-spacing: 1.6px;
  color: #005b97;
  text-transform: uppercase;
}

.partner-dark-section .link a {
  text-decoration: underline;
}

.partner-dark-section .link a:hover {
  text-decoration: underline;
  color: #fff;
}

.partner-get-started {
  text-align: center;
  font: normal normal 300 42px/48px RobotoRegular;
  color: #005b97;
  padding: 3.8rem 0;
  display: flex;
  justify-content: center;
}

.partner-big-three {
  display: flex;
  flex-flow: row wrap;
  flex-direction: row;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  color: #051826;
  text-align: center;
}

.partner-big-three .content-block {
  text-align: center;
  padding: 20px;
  max-width: 28rem;
}

.partner-big-three .content-block img {
  width: 80%;
  margin-bottom: 2rem;
}

.partner-big-three .content-block h5 {
  font: normal normal normal 16px/20px RobotoRegular;
  line-height: 2rem;
}

.partner-big-three .content-block h4 {
  font: normal normal 900 16px/20px RobotoRegular;
}

.program-copy {
  margin-top: 2rem;
  margin-bottom: 3rem;
  font: normal normal normal 20px/28px RobotoRegular;
}

.partner-level-text .level-copy {
  font: normal normal normal 16px/18px RobotoRegular;
  letter-spacing: 0px;
  text-align: center;
}

.partner-level-text .level-copy.pseudo-link {
  font: normal normal normal 16px/18px RobotoRegular;
  color:#426f9e;
  text-decoration: underline;
}

.partner-level-text .icon {
  max-width: 30px;
}

.partner-level-text .level-copy .partner-level-badge {
  height: 43px;
  width: auto;
}

.partner-level-text .levels-title {
  font: normal normal bold 24px/28px RobotoRegular;
  color: #fff;
  margin-bottom: 2rem;
}

.partner-level-text .levels-sub-title {
  font: normal normal normal 20px/28px RobotoRegular;
  color: #fff;
}

.partner-grid-bg {
  background: no-repeat url("../img/partner/dots_vert.png");
  background-size: 10rem auto;
  overflow: visible;
  overflow-x: visible;
}

.partner-level-img {
  height: auto;
  max-width: 18rem;
  margin-bottom: 2rem;
}

.partner-graph-img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.partner-graph-img.main {
  width: 60%;
}

.partner-promise {
  background: url('../img/partner/promise_bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 6rem;
  padding-bottom: 4rem;
  color: #fff;
}

.partner-advantage h1 {
 color: #005b97;
 font: normal normal 300 42px/42px RobotoRegular;
}

.partner-advantage p {
  font: normal normal normal 18px/32px RobotoRegular;
  color: #051826;
}

.bg-black {
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 4px solid rgba(0, 91, 151, 1);
  animation-name: border-bg-fade;
  animation-timing-function: ease-in;
  animation-duration: 1s;
}

.bg-grey {
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5 ease-in-out;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 4px solid rgba(0, 91, 151, 1);
  animation-name: border-bg-fade;
  animation-timing-function: ease-in;
  animation-duration: 1s;
}

.hero-anchor {
  display: block;
  position: relative;
  top: -8vh;
  transform: translateY(-110px);
  overflow: auto;
}

.anchor {
  display: block;
  position: relative;
  top: -75px;
  overflow: auto;
}

/* HEADER */

/*Main hero styling.  This is to work around IOS */
.hero-top:after {
  content: '';
  position: fixed; /* stretch a fixed position to the whole screen */
  top: 0;
  height: 108vh; /* fix for mobile browser address bar appearing disappearing */
  left: 0;
  right: 0;
  z-index: -1; /* needed to keep in the background */
  background: url('../img/hero-images/hero_homepage.jpg') center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero-top-promo:after {
  content: '';
  position: fixed; /* stretch a fixed position to the whole screen */
  top: 0;
  height: 108vh; /* fix for mobile browser address bar appearing disappearing */
  left: 0;
  right: 0;
  z-index: -1; /* needed to keep in the background */
  background: url('../img/promo/hero.jpg') center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero-video {
  position: relative;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  clear: both;
}

.video-wrapper {
  height: 110vh;
  position: relative;
  width: 100%;
  height: 100;
}

.banner-video {
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: absolute;
}

.hero {
  /* Sizing */
  width: 100%;
  /* height: 108vh; */

  /* Text styles */
  text-align: left;
  color: white; /* ADD THIS LINE */
}

.hero-promo {
  /* Sizing */
  width: 100%;
  height: 108vh;

  /* Text styles */
  text-align: left;
  color: white; /* ADD THIS LINE */
}

#blackOverlay {
  background-color: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 108vh;
}

.hero-inner {
  position: absolute;
  padding-top: 108vh;
  transform: translateY(-375px);
  padding-left: 5%;
}

.hero-inner-promo {
  position: absolute;
  padding-top: 20em;
  padding-left: 5%;
}

.hero-inner-promo h1 {
  max-width: 40rem;
  font-size: 62px;
  font-weight: bold;
  font-family: 'RobotoBold';
}

.hero-inner-promo h2 {
  max-width: 20rem;
  font-size: 18px;
  margin-bottom: 12rem;
  font-family: 'RobotoRegular';
}

.promo-hero-link img {
  max-width: 18rem;
  height: auto;
}

.promo-overlap-img-center {
  transform: translateY(-100px);
  display: grid;
  overflow: hidden;
}

.promo-overlap-img-center hr {
  margin-top: 0;
  padding-top: 0;
  background-color: #005b97;
  width: 80%;
}

.hero h1 {
  width: 550px;
  /* Text styles */
  font-size: 48px;
  font-family: 'CatamaranBold';

  /* Margins */
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 50px;
  opacity: 1 !important;
}

.hero h2 {
  width: 700px;
  font-size: 24px;
  font-family: 'CatamaranRegular';
}

.hero .btn {
  /* Positioning and sizing */
  width: 100px;

  /* Padding and margins */
  padding: 0.5em;
  padding-top: 0.3em;
  padding-bottom: 0.2em;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;

  /* Text styles */
  color: white;
  text-decoration: none;
  font-size: 1em;
  font-family: 'CatamaranRegular';

  /* Border styles */
  border: 1px solid white;
  border-radius: 5px;
  -webkit-transition: all ease 0.5s;
}

.hero .btn:hover {
  background-color: white;
  color: black;
  /*
  text-decoration: underline;
  */
}

.scroll-arrow {
  display: grid;
}
.scroll-arrow a.arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translate(0, -90%);
  color: #fff;
  font: normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-top: 60px;
  outline: none;
  border: 0;
  display: grid;
  justify-content: center;
}

.scroll-arrow a.arrow:hover {
  opacity: 0.5;
}

.scroll-arrow a.arrow span {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  margin-left: 2px;
  border-left: 8px solid #fff;
  border-bottom: 8px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
  display: flex;
  justify-self: center;
}

@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }
}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }
}

.hero-belt {
  padding-bottom: 1.79rem;
}

.belt-white-left {
  position: absolute;
  top: 102vh;
  height: 9vh;
  left: 0px;
  float: left;
  width: 78%;
  background-color: white;
}

.belt-white-buckle {
  position: absolute;
  top: 102vh;
  left: 78%;
  width: 4%;
  height: 18vh;
}

.belt-white-right {
  position: absolute;
  top: 102vh;
  right: 0;
  width: 18%;
  height: 9vh;
  background-color: white;
}

.belt-footer-left {
  position: absolute;
  height: 150px;
  padding-left: 0px;
  padding-right: 0px;
  left: 0px;
  float: left;
  width: 80%;
  background-color: #051826;
}

.belt-footer-buckle {
  position: absolute;
  left: 80%;
  width: 4%;
  max-height: 150px;
  min-height: 100px;
  padding-left: 0px;
  padding-right: 0px;
  z-index: 0;
}

.belt-footer-right {
  position: absolute;
  right: 0px;
  width: 16%;
  height: 150px;
  background-color: #051826;
  padding-left: 0px;
  padding-right: 0px;
}

.btn-learn {
  font-family: 'Proximanova';
  color: #3fa9f5;
  padding-bottom: 0em;
}

.identity-buttons {
  display: flex;
  justify-content: space-around;
  max-width: 600px;
  margin: auto;
}
.identity-buttons button {
  width: 12em;
}
@media screen and (max-width: 768px) {
  .identity-buttons {
    display: block;
  }
  .identity-buttons button {
    width: unset;
    display: block;
    margin: 0 auto 2em;
  }
  .identity-buttons button:last-child {
    margin-bottom: 0;
  }
}

/* Content Block */
.content-box {
  font-family: 'RobotoRegular';
  padding-bottom: 4.6rem;
  position: relative;
  z-index: 2;
}

.title-text {
  font-size: 26px;
  padding-left: 0px;
  padding-right: 0px;
  color: #231f20;
  text-align: center;
}

.title-text.center-margin {
  margin: 4rem auto 2rem auto;
}

.content-box .title-text.color-white {
  color: white;
}

.modal-body .color-blue a {
  color: #005b97;
}

/*
this is to set the columns class to force 2 columns in a text box
*/
.columns {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
}

.h1 {
  font-size: 8px;
}

.content-text {
  padding-top: 1.25em;
  font-size: 16px;
  color: #3d4146;
  min-width: 200px;
}

.diverge-title {
  text-align: center;
  font: normal normal normal 42px/50px 'RobotoBold';
  color: #000000;
  max-width: 515px;
  margin: auto;
  padding-bottom: 4rem;
}

.diverge-text {
  text-align: center;
  font: normal normal normal 20px/24px 'RobotoRegular';
  color: #707070;
}



.videoWrapper {
  position: relative;
  margin-bottom: 4.6rem;
  padding-bottom: 42%;
  padding-top: 25px;
  height: 0;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  background-color: black;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoPoster {
  background-image: url('../img/assets/video_placeholder.jpg');
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border: 5px solid white;
  border-radius: 100%;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
}

.play-button {
  position: absolute;
  top: 46%;
  left: 45.5%;
  margin: -20px 0 0 -10px;
  border-left: 42px solid white;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
}

.videoPoster:hover .play-button {
  border-left: 42px solid #005b97;
}

.videoPoster:hover .play-circle {
  border: 5px solid #005b97;
}

.grey-break {
  padding-top: 3.8em;
  padding-bottom: 3.8em;
  background-color: #051826;
}

.block-text {
  overflow: hidden;
  font-family: 'RobotoRegular';
  font-size: 18px;
  color: #dadee2;
}

.block-title {
  color: #dadee2;
  margin-left: 30px;
  margin-right: 30px;
}

.block-text-small {
  font-family: 'RobotoRegular';
  font-size: 14px;
  color: #dadee2;
  margin-left: 30px;
  margin-right: 30px;
}

.added-top-padding {
  padding-top: 4.6rem;
}

.added-vertical-padding-sm {
  padding: 1.6rem 0;
}

.index-youtube-iframe {
  aspect-ratio: 16 / 9;
  align-self: center;
  left: 50%;
  width: 50%;
  max-width: 710px;
  top: 4.6rem;
}
.features-youtube-iframe {
  position: absolute;
  aspect-ratio: 16 / 9;
  left: 60%;
  width: 35%;
  max-width: 680px;
  top: 373px; /* magic numbers! */
  transform: translateY(-50%);
}

.surround-grey {
  background-color: #f2f2f2;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.surround-white {
  background-color: white;
  max-height: 380px;
  margin-top: 2rem;
}

.add-padding {
  padding: 0 2.8rem;
}

.translate-up {
  transform: translateY(-75px);
}

.icon-size {
  width: 13%;
}
.logo-size {
  width: 100px;
}

.shrink-img {
  height: 455px;
}

.become-a-background {
  padding-bottom: 2.6rem;
  background-image: url('../img/assets/become-a-partner-texture.jpg');
  background-repeat: no-repeat;
  background-position: cover;
}

.color-white {
  color: white;
}
.color-white:hover {
  text-decoration: none;
  color: #fff;
}

.color-black {
  color: black;
}

.tamper-icon {
  width: 20%;
  margin-bottom: 15px;
  max-width: 100px;
  min-width: 80px;
  padding-top: 6%;
}

.footer-box {
  overflow: hidden;
  padding-top: 0em;
  padding-bottom: 3.8em;
  background-color: #051826;
  transform: translateY(70px);
}

.footer-icon {
  width: 100%;
  margin-left: -35px;
  padding-bottom: 30px;
}

.footer-title-text {
  position: relative;
  font-family: 'RobotoBold';
  font-size: 16px;
  padding-bottom: 1.3rem;
}

.footer-title-link {
  color: white;
}

.footer-title-link:hover {
  color: #b9b9b9;
}

.footer-link {
  font-family: 'RobotoRegular';
  font-size: 16px;
  color: #b9b9b9;
  line-height: 20px;
}

.footer-form-btn {
  font-family: 'RobotoBold';
  font-size: 14px;
  color: #3fa9f5 !important;
  background-color: transparent;
  border: 1px solid #3fa9f5;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  border-radius: 10px;
}

.footer-form-btn:hover {
  background-color: #005b97;
  color: white !important;
  text-decoration: none;
  border: 1px solid #005b97;
}

.footer-block > div {
  width: 20%;
}

.footer-link:hover {
  color: #8e8e8e;
}

.footer-box .container {
  padding-right: 15px;
  padding-left: 35px;
}

.footer-promo {
  margin-top: 2rem;
}

.copy-right-text {
  font-family: 'RobotoRegular';
  font-size: 14px;
  color: #ffff;
  padding-top: 4.6rem;
  margin-bottom: 2rem;
}

.colapse {
  padding-right: 40%;
}

.social-icons {
  padding: 25px 25px 0 0;
  margin-left: 0px;
}

.social-footer {
  fill: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  height: 30px;
  width: auto;
}

.social-center {
  padding-left: 30%;
  transform: translateX(-50px);
  padding-top: 4.6rem;
  display: none;
}

.mobi-fade-in-8 .social-footer {
  fill: black;
}

.modal-footer .social-icons {
  padding-right: 0%;
  padding-left: 6%;
  padding-top: 1vh;
}

.social-footer:hover {
  fill: #005b97;
}

/*
Features Page
*/
.more-btn {
  display: none;
  cursor: pointer;
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.features-header {
  padding-top: 10.1rem;
  padding-bottom: 2rem;
}

.features-header-promo {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.new-feature {
  font-size: 14px;
  font-family: 'RobotoBold';
  padding-bottom: 5px;
  letter-spacing: 2.8px;
}

.maintext {
  font-family: 'RobotoBold';
  color: #1c1d1e;
  margin-bottom: 12px;
}

.partner-maintext {
  font: normal normal bold 64px/70px RobotoRegular;
  color: #005b97;
  text-align: left;
  letter-spacing: 1.92px;
}

.partner-maintext-lg {
  font: normal normal bold 64px/70px RobotoRegular;
  color: #005b97;
  text-align: left;
  letter-spacing: 1.92px;
}

.partner-maintext-sm {
  font: normal normal bold 42px/48px RobotoRegular;
  color: #005b97;
  text-align: left;
  letter-spacing: 1.26px;
}

.partner-subtext {
  font: normal normal normal 18px/24px RobotoRegular;
  color: #fff;
}

.promo-maintext {
  font-family: 'RobotoRegular';
  color: #005b97;
  margin-bottom: 12px;
}

.promo-maintext .linkify {
  text-decoration: underline !important;
  cursor: pointer;
}

.subtext {
  font-family: 'RobotoRegular';
  font-size: 14px;
  color: #737374;
  line-height: 1.5em;
}

.subtext-white {
  font: normal normal normal 18px/24px RobotoRegular;
  color: #fff;
  letter-spacing: 0px;
  line-height: 1.5em;
}

.subtext-white-sm {
  font: normal normal normal 14px/20px RobotoRegular;
  color: #fff;
  letter-spacing: 0px;
  line-height: 1.5em;
}

.subtext .text-dark {
  color: #000;
}

.subtext.color-black {
  color: #3d4146;
}

/* .features-header .maintext {
  font-family: 'RobotoRegular';
  font-size: 32px;
  line-height: 3rem;
} */

.maintext {
  font-family: 'RobotoRegular';
}

.maintext .text-dark {
  color: #000;
}

.features-header .subtext {
  font-family: 'RobotoRegular';
  font-size: 16px;
}

.grey-features-box .maintext {
  font-family: 'RobotoRegular';
  font-size: 18px;
  color: white;
}

.grey-features-box .subtext {
  font-size: 14px;
  color: #a4a5a5;
}

.no-pad-right {
  padding-right: 0px;
}

.no-pad-left {
  padding-left: 0px;
}

.pad-bot-top {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.pad-bot {
  padding-bottom: 2rem;
}

.extra-top-pad {
  padding-top: 4rem;
}

.side-icon {
  min-width: 85%;
  height: auto;
  padding: 10px 10px;
  border: 2px solid #005b97;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.side-icon:hover {
  border: 3px solid #005b97;
}

.side-icon-selected {
  min-width: 85%;
  height: auto;
  padding: 10px 10px;
  border: 2px solid #005b97;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: #005b97;
  cursor: pointer;
}

.phone-pic {
  width: 90%;
  position: absolute;
  padding-bottom: 6.1rem;
  padding-top: 3rem;
  margin-left: auto;
  left: 0;
  right: 0;
  margin-right: auto;
}

.grey-features-box {
  margin-top: 6.1rem;
  background-color: #051826;
  background-size: cover;
  padding-bottom: 6%;
  padding-top: 6%;
  min-height: 0px;
  margin-bottom: 6.1rem;
}

.light-features-box {
  margin-top: 6.1rem;
  background-color: #f2f2f2;
  background-size: cover;
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
  min-height: 510px;
  margin-bottom: 6.1rem;
}

.text-box {
  background-color: white;
  background-size: cover;
  padding: 20px;
  margin-bottom: 30px;
}

.text-box .maintext {
  font-family: 'RobotoBold';
}

.dotted-line {
  position: absolute;
  padding-left: 0px;
  top: 40%;
  height: 130%;
  stroke-dasharray: 12;
  transform: translateX(-25px);
  animation: dash 30s infinite linear;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1300;
  }
}

.thirtypx-bottom {
  padding-bottom: 30px;
}

.line-break {
  width: 9%;
  height: auto;
  border-bottom: 1px solid #005b97;
  position: absolute;
  transform: translateX(15px);
}

.black-text {
  color: #3d4146;
}

.features-table {
  padding-bottom: 17.1rem;
}

.features-row {
  padding-right: 0px;
  padding-left: 0px;
}

.features-row li {
  padding-top: 10px;
}

.no-marg-top {
  margin-top: 0px;
}

.tripple-phone {
  overflow: hidden;
  position: absolute;
  transform: translate(5vw, -120px);
  height: 38vw;
  min-height: 180px;
  max-height: 700px;
}

.features-phone {
  position: absolute;
  right: 0px;
  width: 50%;
  top: -322.5px;
}

.wrapper {
  overflow: hidden;
}

/*slider*/

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3e3e3e;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 35px;
  width: 35px;
  left: -2px;
  bottom: -8px;
  background: url('../img/icons/main_icons/ic_blue_lightbulb_switch.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #86a4b6;
}

input:checked + .slider:before {
  background: url('../img/icons/main_icons/ic_white_lightbulb_switch.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* security section */
.security-flex {
  display: flex;
  align-items: center;
}
.security-street {
  background: url('../img/assets/Platform Photo-Renati.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  flex: 0 1 40%;
  align-self: stretch;
}
.security-flex-content {
  flex: 1;
  padding: 4.6rem 0;
}
.security-spacer {
  width: 20%;
}
.security-phone {
  width: 162.5px;
  position: relative;
  z-index: 3;
}
.security-reverse {
  flex-direction: row-reverse;
}
.security-reverse .security-street {
  background-image: url('../img/assets/Platform Photo-UEM.jpg');
}
@media screen and (max-width: 1200px) {
  .security-spacer {
    width: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  .security-flex {
    flex-wrap: wrap;
  }
  .security-street {
    flex: 1 1 calc(100% - 163px);
  }
  .security-flex-content {
    width: 100%;
    padding: 4.6rem;
  }
  .security-spacer {
    width: 0;
  }
}

.light-security-box {
  background-color: #f2f2f2;
  background-size: cover;
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
  height: 550px;
  margin-bottom: 6.1rem;
}

.grey-band {
  background-color: #f2f2f2;
}

.bg-setup {
  position: relative;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.drill-back {
  background: url('../img/assets/Myntex-Data-Center-large.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transform: scaleX(-100%);
  background-size: cover;
  height: 100%;
  position: absolute;
  right: 0;
}

.security-data-center-background {
  background-image: linear-gradient(to right, transparent, transparent 40%, #f2f2f2 42%), url('../img/assets/Myntex-Data-Center.jpg');
  background-repeat: no-repeat;
}

.security-grey-break {
  margin-top: 4.6rem;
  margin-bottom: 4.6rem;
  padding-top: 3.8em;
  padding-bottom: 3.8em;
  background-color: #051826;
  width: 55%;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.security-grey-break .subtext {
  color: #dadee2;
  padding-left: 4.6rem;
  padding-right: 4.6rem;
}
@media screen and (max-width: 991px) {
  .security-grey-break {
    padding-top: 1.9rem;
    padding-bottom: 1.9rem;
  }
  .security-grey-break .subtext {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
  .security-data-center-background {
    background: #f2f2f2;
  }
}

.security-chunk {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

.security-chunk .maintext {
  font-size: 22px;
  line-height: 1.2em;
}

.lock-circle, .pulse-lock {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: white;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 350px;
  top: calc(50% - 50px);
}

.pulse-lock {
  background-color: rgb(200, 200, 200);
  box-shadow: none;
  transform-origin: center;
  animation: pulsate infinite 3s;
  animation-timing-function: linear;
}

.pulse-lock-1 {
  animation-delay: 0s;
}

.pulse-lock-2 {
  animation-delay: 0.15s;
}

.pulse-lock-3 {
  animation-delay: 0.3s;
}

.pulse-lock-4 {
  animation-delay: 0.45s;
}

.big-lock {
  transform: translate(25px, 14px);
  width: 50%;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  70% {
    transform: scale(20);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.lock-box {
  overflow: hidden;
  background-color: #004472;
  width: 400px;
  position: relative;
}

.security-mid {
  position: relative;
}

.security-mid .security-mid-text {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.security-mid-text .maintext {
  font-size: 24px;
  line-height: 1.2em;
}

.security-tablet-only {
  display: none;
}

.security-mid-right {
  margin-top: 7rem;
  margin-bottom: 7rem;
  padding-bottom: 3.8rem;
  border-style: solid;
  border-color: #f2f2f2;
  border-width: 10px;
  padding-right: 40px;
}

.special-textbox {
  padding-top: 3.8rem;
  line-height: 1.2rem;
  padding-left: 40px;
}

.special-textbox .maintext {
  font-family: 'ProximanovaBold';
  font-size: 18px;
  color: #1c1d1e;
  margin-bottom: 10px;
}

.special-textbox .subtext {
  font-family: 'Proximanova';
  font-size: 16px;
  color: #b3b3b3;
  line-height: 1.2rem;
}

.textbox-icon {
  width: 40px;
  position: absolute;
  background-color: white;
  transform: translateX(-65px);
  padding: 5px;
}

.packet-container {
  padding-top: 3.8rem;
  padding-bottom: 6.1rem;
}

.packet-people {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
  min-height: 300px;
}

.blue-guy {
  z-index: 1;
  left: 0;
  width: 150px;
  position: absolute;
  padding-bottom: 3.8rem;
}

.blue-plus {
  z-index: 1;
  position: absolute;
  left: 15px;
  width: 0px;
  animation: plus-pop infinite 5s ease-in-out;
}

.purp-check {
  z-index: 2;
  position: absolute;
  right: 15px;
  width: 0px;
  animation: check-pop infinite 5s ease-in-out;
}

@-webkit-keyframes plus-pop {
  0% {
    width: 0px;
    left: 40px;
    top: 80px;
  }
  8% {
    width: 60px;
    left: 10px;
    top: 50px;
  }
  10% {
    width: 40px;
    left: 20px;
    top: 60px;
  }
  100% {
    width: 40px;
    left: 20px;
    top: 60px;
  }
}

@-webkit-keyframes check-pop {
  0% {
    width: 0px;
    right: 40px;
    top: 80px;
  }
  70% {
    width: 0px;
    right: 40px;
    top: 80px;
  }
  78% {
    width: 60px;
    right: 10px;
    top: 50px;
  }
  80% {
    width: 40px;
    right: 20px;
    top: 60px;
  }
  100% {
    width: 40px;
    right: 20px;
    top: 60px;
  }
}

.green-line {
  z-index: -1;
  width: 10%;
  left: 25px;
  margin-top: 70px;
  border-bottom: 5px solid #39b54a;
  position: absolute;
  animation: expand infinite 5s;
}

.travel-path {
  z-index: -2;
  width: 81%;
  left: 3%;
  margin-top: 70px;
  border-bottom: 5px dashed #b3b3b3;
  position: absolute;
}

.finger-print {
  width: 50px;
  display: block;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  position: absolute;
  animation: move-travel infinite 5s;
}

.green-circle {
  margin-top: 62.5px;
  margin-left: 12.5px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  border: 1px solid #39b54a;
  background-color: rgba(0, 0, 0, 0);
  animation: pulsate-small 1s infinite 2s ease-in-out, move-travel infinite 5s;
  position: relative;
  opacity: 0;
}

.move-animation {
  width: 81%;
  left: 3%;
  position: relative;
}

@-webkit-keyframes pulsate-small {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  40%,
  100% {
    -webkit-transform: scale(6, 6);
    opacity: 0;
  }
}

@-webkit-keyframes travel {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(600px);
  }
}

@-webkit-keyframes expand {
  0% {
    width: 5%;
  }
  10% {
    width: 5%;
  }
  100% {
    width: 82%;
  }
}

@-webkit-keyframes move-travel {
  0% {
    left: 0%;
  }
  10% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes slide-in-right {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0vw);
  }
}

.slide-in-right {
  animation: slide-in-right 0.5s;
}

@-webkit-keyframes slide-in-left {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0vw);
  }
}

.slide-in-left {
  animation: slide-in-left 0.5s;
}

.purp-guy {
  z-index: 1;
  right: 0;
  width: 150px;
  position: absolute;
  padding-bottom: 3.8rem;
}

.encryption-bg {
  background: url('../img/assets/security-texture.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.encryption-bg .maintext {
  color: white;
}

.promo-security-bg {
  background: url('../img/promo/data_center.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.promo-security-bg .maintext {
  color: white;
}

.security-grid {
  background-color: #f2f2f2;
}

.security-grid {
  background-color: #f2f2f2;
}

.security-grid .text-box {
  padding: 30px;
  min-height: 280px;
  transform: translateY(-50px);
}

.security-grid .subtext {
  color: #3d4146;
}

.solutions-bg {
  background: url('../img/hero-images/solutions.jpg');
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  min-height: 560px;
}

.solutions-header {
  padding-top: 16rem;
  padding-bottom: 6.1rem;
}

.stairs-bg {
  background: url('../img/assets/danger-goes-beyond.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 35rem;
}

.solutions-cont {
  padding-top: 12rem;
  padding-bottom: 8rem;
}

.stairs-phone {
  height: 80%;
  position: absolute;
  right: 0;
  transform: translateX(140px);
  bottom: 0;
}

.wallst-bg {
  background: url('../img/assets/organization-data-breach.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 35rem;
}

.street-phone {
  height: 70%;
  position: absolute;
  left: 0;
  transform: translateX(-140px);
  bottom: 0;
}

.document-box {
  background-color: #051826;
  background-size: cover;
  height: 685px;
  padding-bottom: 4.6rem;
  padding-top: 4.6rem;
}

.document-box .maintext {
  padding-top: 125px;
  font-family: 'RobotoRegular';
  font-size: 18px;
  color: white;
}

.document-right-btn {
  background: #fff;
  width: 50px;
  height: 50px;
  border: 1px solid #3fa9f5;
  border-radius: 50%;
  position: absolute;
  right: 29px;
  margin-top: 20px;
  cursor: pointer;
}

.document-left-btn {
  background: #fff;
  width: 50px;
  height: 50px;
  border: 1px solid #3fa9f5;
  border-radius: 50%;
  position: absolute;
  right: 29px;
  margin-top: 20px;
  transform: translateY(60px);
  cursor: pointer;
}

.right-arrow {
  width: 18px;
  height: 18px;
  border: 3px solid #3fa9f5;
  border-top: 0px solid white;
  border-left: 0px solid white;
  transform: rotate(-45deg) translate(-3px, 18px);
}

.left-arrow {
  width: 18px;
  height: 18px;
  border: 3px solid #3fa9f5;
  border-bottom: 0px solid white;
  border-right: 0px solid white;
  transform: rotate(-45deg) translate(2px, 24px);
}

.fade-out {
  animation: fade-out 1s forwards;
}

.fade-in {
  animation: fade-in 1s forwards;
}

.shift-right {
  animation: shift-right 1s forwards;
}

.shift-left {
  animation: shift-left 1s forwards;
}

.no-flick {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0.1px);
  transform: translateZ(0.1px);
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes fade-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes fade-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes shift-right {
  0% {
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(380px);
  }
}

@-webkit-keyframes shift-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-380px);
  }
}

.error-text {
  color: #de815c !important;
  font-style: italic;
  position: absolute;
  padding-top: 5px;
}

.text-center .error-text {
  position: unset;
}

.questions-form .form-group {
  margin-bottom: 40px !important;
}

.first-doc {
  -webkit-transform: translateZ(0);
  transform: translateX(0px);
  opacity: 1;
}

.second-doc {
  -webkit-transform: translateZ(0);
  transform: translateX(380px);
  opacity: 1;
}

.third-doc {
  transform: translateX(760px);
  opacity: 1;
}

.fourth-doc {
  transform: translateX(1140px);
  opacity: 1;
}

.fifth-doc {
  transform: translateX(1520px);
  opacity: 1;
}

.sixth-doc {
  transform: translateX(-999999px);
  height: 0px;
  opacity: 0;
}

.document {
  background-color: white;
  background-size: cover;
  width: 350px;
  height: 550px;
  padding: 40px;
  position: absolute;
  overflow: hidden;
}

.doc-width {
  max-width: 22.2%;
}

.document-icon {
  width: 50px;
  padding-bottom: 25px;
}

.document-titletext {
  font-family: 'ProximanovaBold';
  font-size: 20px;
  color: #1c1d1e;
  padding-bottom: 20px;
}

.document-text {
  font-family: 'Proximanova';
  font-size: 16px;
  color: #808080;
  line-height: 1.2rem;
}

.off-page {
  position: relative;
  transform: translate(380px, -550px);
}

.thin-end {
  font-family: 'RobotoLight';
  font-size: 20px;
}

.black-bg {
  background-color: black;
}

.navy-bg {
  background-color: #0B1B2B;
}

.partner-level-title {
  text-align: center;
  font: normal normal 300 42px/48px Roboto;
  color: #005B97;
  padding-bottom: 4rem;
}

.partner-accelerate-bg {
  background-color: #06111C;
  border-top: 1px solid #15202a;
}

.partner-accelerate-bg .horizontal-grid {
  background: no-repeat url('../img/partner/dots_horizontal.png');
  background-size: auto 10rem;
  overflow: visible;
  overflow-x: visible;
  background-position-x: right;
  background-position-y: 2rem;
  padding: 5rem 0;
}

.partner-prehead-lg {
  text-align: left;
  font: normal normal 900 24px/24px RobotoRegular;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.partner-prehead-sm {
  text-align: left;
  font: normal normal 900 14px/24px RobotoRegular;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.partner-bg {
  background: url('../img/partner/partner-forecasts-graph.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: contain;
  min-height: 920px;
  padding-bottom: 6.1rem;
  padding-top: 8rem;
}

.partner-bg-sm {
  min-height: 800px;
  padding: 8rem 0 6.1rem 0;
}

.partner-bg .maintext {
  color: white;
}

.partner-bg .subtext {
  color: #a4a5a5;
}

.partner-bg .subtext-white {
  color: #fff;
}

.up-towers {
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
}

.center-vert {
  padding-top: 18rem;
}

.light-partner-box {
  background-color: #f2f2f2;
  margin-bottom: 4.6rem;
}

.partner-grid {
  background-color: #051826;
  margin-top: 3.8rem;
  margin-bottom: 3.8rem;
  transform: translateX(-80px);
  min-height: 20rem;
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.partner-grid .maintext {
  font-family: 'RobotoBold';
  color: white;
}

.partner-grid .subtext {
  color: #a4a5a5;
}

.big-partner-btn {
  font-family: 'ProximanovaBold';
  font-size: 16px;
  color: #3fa9f5 !important;
  background-color: transparent;
  border: 1px solid #3fa9f5;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
  cursor: pointer;
  min-width: 160px;
  text-align: center;
  border-radius: 10px;
}

.big-partner-btn:hover {
  background-color: #005b97;
  color: white !important;
  text-decoration: none;
  border: 1px solid #005b97;
}

.blog-header .big-partner-btn {
  width: 33%;
}

.email-input {
  margin-right: 5px;
  padding-left: 15px;
  width: 63%;
  height: 47px;
  margin-bottom: 20px;
  min-width: 160px;
  display: inline;
}

.add-marg-bot {
  margin-bottom: 20px;
}

.portal-bg {
  background: url('../img/partner/portal_browser.png');
  min-height: 40rem;
  margin-bottom: 3rem;
  border-radius: 5px 5px 0px 0px;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: 80%;
  background-position-x: 0;
  background-position-y: 0;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.3);
  box-shadow: none;
}

#portal-bg-highquality {
  display: none;
}

@-webkit-keyframes nav-animation {
  0% {
    transform: translate(-379px, -13px);
  }
  20% {
    transform: translate(-379px, -13px);
  }
  30% {
    transform: translate(-245px, -13px);
  }
  80% {
    transform: translate(-245px, -13px);
  }
  90% {
    transform: translate(-379px, -13px);
  }
  100% {
    transform: translate(-379px, -13px);
  }
}

@-webkit-keyframes nav-animation-mini {
  0% {
    transform: translate(-214px, -13px);
  }
  20% {
    transform: translate(-214px, -13px);
  }
  30% {
    transform: translate(-115px, -13px);
  }
  80% {
    transform: translate(-115px, -13px);
  }
  90% {
    transform: translate(-214px, -13px);
  }
  100% {
    transform: translate(-214px, -13px);
  }
}

@-webkit-keyframes nav-animation-mobile {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(0px, 0px);
  }
  30% {
    transform: translate(145px, 0px);
  }
  80% {
    transform: translate(145px, 0px);
  }
  90% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes portal-ham {
  0% {
    opacity: 0;
  }
  19% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes portal-ham-mini {
  0% {
    opacity: 0;
  }
  19% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes portal-ham-mobile {
  0% {
    opacity: 0;
  }
  19% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.portal-wrapper {
  height: 550px;
  right: 0;
  position: absolute;
  bottom: 0;
  width: 381px;
  transform: translate(60px, 60px);
  overflow: hidden;
}

.portal-phone {
  height: 500px;
  right: 0;
  position: absolute;
  bottom: 79px;
  transform: translate(-90px, 80px);
}

.portal-phone-screen {
  height: 450px;
  right: 0;
  position: absolute;
  bottom: 0;
  transform: translate(-165px, -93px);
}

.portal-phone-hamburger {
  height: 26px;
  right: 0;
  position: absolute;
  bottom: 0;
  transform: translate(-353px, -465px);
  opacity: 0;
  animation: portal-ham 5s infinite ease-in-out;
  animation-delay: 2s;
}

.portal-phone-nav {
  height: 372px;
  right: 0;
  position: absolute;
  bottom: 80px;
  transform: translate(-379px, -13px);
  animation: nav-animation 5s infinite ease-in-out;
  animation-delay: 2s;
}

.plane-bg {
  background: url('../img/assets/certified-executive-partner.jpg');
  background-repeat: no-repeat;
  height: 26rem;
  margin-bottom: 4.6rem;
}

.factory-bg {
  background: url('../img/assets/distribution-partner.jpg');
  background-repeat: no-repeat;
  height: 26rem;
  margin-bottom: 4.6rem;
}

.train-bg {
  background: url('../img/assets/retailer.jpg');
  background-repeat: no-repeat;
  height: 26rem;
  margin-bottom: 4.6rem;
}

.corner-tag {
  height: 15%;
  bottom: 0;
  position: absolute;
  margin-left: 20px;
  margin-bottom: 40px;
}

/* FAQ Accordion */
.faq-accordion, .faq-accordion * {
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
}

.faq-accordion {
  overflow:hidden;
  box-shadow: none;
  background:#fff;
  margin: auto;
  margin-bottom: 16rem;
}

/* FAQ Section */
.auto-text-columns {
  column-count: auto;
  column-width: 12rem;
}

.faq-section {
  background-color: #dadee2;
  border-radius: 8px;
}

.faq-section a {
  text-decoration: none;
}

.faq-section a:hover {
  color: #005b97;
}

.faq-accordion:last-child .faq-section {
  border-bottom: none;
  margin-bottom: 2rem;
}

.faq-answer-float-img {
  height: 200px;
  float: left;
  margin-right: 1em;
}

/* FAQ Section Title */
.faq-section-title {
  background: #dadee2;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 0.6rem;
  padding-left: 1rem;
  transition: background-color linear 0.4s, color linear 0.4s;
  color: #000;
  font-size: 18px;
  font-family: 'RobotoRegular';
  cursor: pointer;
  text-align: left;
}

.faq-section-title.active,
.faq-section-title:hover {
  background:#005b97;
  color: #fff;
}

.faq-section-title:focus {
  outline: none;
}

.faq-section-title:before {
  content: ' ';
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid black;
  margin-right: 5px;
  transition: border-color linear 0.4s;
}

.faq-section-title:hover:before {
  border-top-color: #fff;
}

.faq-section-title.active:before {
  border-top: none;
  border-bottom: 8px solid white;
}


.faq-section-content {
  display: grid;
  max-height: 0px;
  overflow-y: hidden;
  text-align: left;
  padding: 0 2rem;
  transition: all 0.6s ease-in-out;
}

.faq-section-content.open {
  max-height: 400vh;
}

.faq-section-content .question {
  margin-bottom: 0.5rem;
  font-family: 'RobotoRegular';
  font-size: 18px;
  cursor: pointer;
  padding-top: 1rem;
}

.faq-section-content .question button {
  border: none;
  display: inline-block;
  color: #051826;
}

.faq-section-content .answer {
  font-family: 'RobotoRegular';
  display: none;
  padding:10px;
  margin:1px;
}

.faq-section-content .answer p {
  padding-left: 1rem;
}
.faq-section-content .answer .auto-text-columns {
  padding-left: 3em;
}
.faq-section-content .answer li {
  line-height: 1.6rem;
}

#faq-video-tutorials {
  padding: 0 2rem;
}
#faq-video-tutorials div:first-child {
  padding-top: 2rem;
}
#faq-video-tutorials div:last-child {
  padding-bottom: 2rem;
}

.contact-header {
  background: url('../img/hero-images/have_questions.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 10.1rem;
  padding-bottom: 3.8rem;
  min-height: 399px;
}

.contact-header .maintext {
  color: white;
}

.social-contact {
  padding-top: 20px;
  max-width: 33%;
}

.questions-form {
  padding-bottom: 6.6rem;
}

.questions-form .maintext {
  font-family: 'RobotoBold';
}

.questions-form .form-group {
  margin-bottom: 30px;
}

.partner-list {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(3, 1fr);
}

.partner-card {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  border: 1px solid black;
  padding: 1em;

  text-align: center;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.6s ease;
}
.partner-card:hover {
  transform: scale(0.98);
  transition: all 0.3s ease;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.partner-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8em;
}
.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pull-right {
  right: 0;
}

.tos-header {
  padding-top: 10.1rem;
  padding-bottom: 3.8rem;
}

.apply-header {
  padding-top: 10.1rem;
  padding-bottom: 3.8rem;
  background: url('../img/hero-images/apply-partner.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  min-height: 399px;
}

.apply-header .maintext {
  color: white;
}

.apply-header .subtext {
  color: #f9f9f9;
  font-size: 16px;
}

.radio-inline {
  padding-left: 10px;
  padding-right: 10px;
}

.blog-header {
  padding-top: 13.1rem;
  padding-bottom: 3.8rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('../img/hero-images/hero_blog.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  height: 560px;
}

.blog-header .maintext {
  color: white;
}

.blog-signup {
  position: relative;
  text-align: center;
  padding: 30px;
  margin-top: -80px;
  margin-bottom: 40px;
}
.blog-signup .text-center {
  padding-top: 40px;
  border-top: 1px solid #8797a8;
  max-width: 600px;
  margin: 20px auto;
}
.blog-signup input {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.blog-signup button {
  color: #005b97;
}
.blog-signup .error-text {
  position: unset;
}

.blog-main {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.blog-grey-bg {
  background-color: #f2f2f2;
}

.big-blog-box {
  padding-top: 75%;
  position: relative;
  width: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.big-blog-box:hover {
  transform: scale(0.98);
}

.little-blog-box {
  padding-top: 75%;
  position: relative;
  width: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.blog-row-marg {
  padding-top: 75%;
  margin-top: 30px;
  width: 100%;
}

.float-left {
  float: left;
}

.float-left .section-icon {
  width: 8rem;
  height: auto;
  margin: 1rem;
}

.image-by {
  padding-left: 1em;
  font-size: 0.75em;
  color: #929292;
}

.blog-bg-03-2024 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Clipboard_ChatMail_Main.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-03-2024 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Clipboard_ChatMail_Preview.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-02-2024 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Reseller_Spotlight_SRIT_Blog_Large.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-02-2024 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Reseller_Spotlight_SRIT_Blog_Thumb.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-01-2024-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Reseller_Spotlight_Blog_1_Large.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-01-2024-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Reseller_Spotlight_Blog_1_Thumb.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-01-2024 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Main_Triangulation.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-01-2024 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Preview_Triangulation.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-11-2023 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/computer-motherboard-with-cpu.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-11-2023 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/computer-motherboard-with-cpu-thumb.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-bg-10-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/CrackTheCode_Feature.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-10-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/CrackTheCode_Thumb.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-09-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/press_photographer.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-09-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/press_photographer_thumb.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-08-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Renati_Location_Services_Blog_Large.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-08-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Renati_Location_Services_Blog_Small.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-05-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Firebase_Image-Large.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-05-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Firebase_Image-Small.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-04-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Main__Surveillance_Woes___Privacy_Concerns_for_International_Travel.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-04-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Preview__Surveillance_Woes___Privacy_Concerns_for_International_Travel.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-03-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Main_Three_Threats_Targeting_Your_Mobile_Security.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-03-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Preview__Three_Threats_Targeting_Your_Mobile_Security.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-01-23-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/ChatMail_v_Threema_Blog_Main.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-01-23-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/ChatMail_v_Threema_Blog_Thumb.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-01-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Main_Data_Privacy_Case_Study.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.blog-thumb-01-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Preview_Data_Privacy_Case_Study.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-12-22 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/main_how_your_phone_can_be_used_against_you.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-12-22 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/preview_how_your_phone_can_be_used_against_you.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-09-22 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/Main_Decoding_the_Spin_on_Fake_News_in_the_Private_Phone_Industry.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-09-22 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/Preview_Decoding_the_Spin_on_Fake_News_in_the_Private_Phone_Industry.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-08-22 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/ChatMails_5th__Birthday_Main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-08-22 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/ChatMails_5th__Birthday_Preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-07-20 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/lock-phone-lg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-07-20 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/lock-phone-sm.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-06-15 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/blockchain_isn_t_as_private_as_you_may_think_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-06-15 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
  url('../img/blog/blockchain_isn_t_as_private_as_you_may_think_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-05-20 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/chatmail_from_buyers_and_sellers_perspective_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-05-20 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
  url('../img/blog/chatmail_from_buyers_and_sellers_perspective_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-05-20-light {
  background: url('../img/blog/chatmail_from_buyers_and_sellers_perspective_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-05-17 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
  url('../img/blog/passwords_first_line_of_defense_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-05-17 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('../img/blog/passwords_first_line_of_defense_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-04-12 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
  url('../img/blog/main_sim_swapping_the_new_and_popular_digital_scam.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-04-12 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)), url('../img/blog/preview_sim_swapping_the_new_and_popular_digital_scam.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-03-25 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
  url('../img/blog/main_open_source_code_protestware_raises_safety_concerns.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-03-25 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
  url('../img/blog/preview_open_source_code_protestware_raises_safety_concerns.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-03-25-light {
  background: url('../img/blog/preview_open_source_code_protestware_raises_safety_concerns.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-03-16 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
  url('../img/blog/main_when_public_health_and_data_privacy_collide.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-03-16 {
  background: url('../img/blog/preview_when_public_health_and_data_privacy_collide.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-02-18 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
  url('../img/blog/main_uk_marketing_attack_on_encryption_diminishes_digital_privacy.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-02-18 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
  url('../img/blog/preview_uk_marketing_attack_on_encryption_diminishes_digital_privacy.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-light-02-18 {
  background: url('../img/blog/preview_uk_marketing_attack_on_encryption_diminishes_digital_privacy.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-02-16 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
  url('../img/blog/main_should_you_trust_DoH_to_replace_VPN.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-02-16 {
  background: url('../img/blog/preview_should_you_trust_DoH_to_replace_VPN.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-01-27 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
  url('../img/blog/main_size_journalists_are_major_targets_for_hacks.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-01-27 {
  background: url('../img/blog/preview_size_journalists_are_major_targets_for_hacks.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-12-14 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url('../img/blog/do_your_research_before_downloading_free_apps_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-12-14 {
  background: url('../img/blog/do_your_research_before_downloading_free_apps_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-11-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url('../img/blog/australia_sweeping_new_digital_laws_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-11-23 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url('../img/blog/australia_sweeping_new_digital_laws_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-10-07 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url('../img/blog/graphene_os_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-dark-thumb-10-07 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/blog/graphene_os_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-light-thumb-10-07 {
  background: url('../img/blog/graphene_os_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-09-03 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url('../img/blog/is_apple_backing_down_on_privacy_rights_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-09-03 {
  background: url('../img/blog/is_apple_backing_down_on_privacy_rights_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-08-17 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)),
    url('../img/blog/happy_fourth_birthday_chatmail_main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-08-17 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/happy_fourth_birthday_chatmail_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-07-07 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/blog/worlds_largest_data_collectors.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-07-07 {
  background: url('../img/blog/worlds_largest_data_collectors_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-06-03 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/blog/entrust_privacy_to_free_app.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-06-03 {
  background: url('../img/blog/entrust_privacy_to_free_app_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-05-14 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/blog/encrypted_phones_cryptocurrency.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-05-14 {
  background: url('../img/blog/encrypted_phones_cryptocurrency_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-04-13 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/blog/chatmail_pulls_the_curtain_on_encryption.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-04-13 {
  background: url('../img/blog/chatmail_pulls_the_curtain_on_encryption_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-03-21 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../img/blog/will-anything-change-after-whatsapp-changes-its-privacy-policy.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-03-21 {
  background: url('../img/blog/will-anything-change-after-whatsapp-changes-its-privacy-policy_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/even_the_strongest.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1-1 {
  background: url('../img/blog/even_the_strongest_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1-2 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('../img/blog/are_free_apps_actually_free.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1-2 {
  background: url('../img/blog/are_free_apps_actually_free_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/third-party-applications-pose-security-risks.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1-3 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('../img/blog/third-party-applications-pose-security-risks_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1-4 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/secure-internet-browsing-no.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1-4 {
  background: url('../img/blog/secure-internet-browsing-no-preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1-5 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/quantum-computing.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1-5 {
  background: url('../img/blog/quantum-computing.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1-6 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/affect-your-security.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1-6 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/affect-your-security_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/blog/ring_dorbell.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-1 {
  background: url('../img/blog/ring_dorbell.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../img/blog/phone_charger.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url('../img/blog/phone_charger_preview.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../img/blog/the_price_you_pay.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-3 {
  background: url('../img/blog/the_price_you_pay_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-4 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/blog/the_motivation_for_big_pharma_cybercrime.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-4 {
  background: url('../img/blog/the_motivation_for_big_pharma_cybercrime_preview.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-5 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/blog/signs_your_phone_is_being_monitored.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-5 {
  background: url('../img/blog/signs_your_phone_is_being_monitored_preview.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-6 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/blog/encryption_what_is_the_big_deal.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-6 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url('../img/blog/encryption_what_is_the_big_deal_preview.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-7 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url('../img/blog/whatsapp_and_one_of_its_many_security_pitfalls.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-7 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('../img/blog/whatsapp_and_one_of_its_many_security_pitfalls_preview.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-bg-8 {
  background: url('../img/blog/app_permissions_deal_with_the_devil.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.blog-thumb-8 {
  background: url('../img/blog/app_permissions_deal_with_the_devil_preview.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.little-blog-box:hover {
  transform: scale(0.98);
}

.blog-title {
  position: absolute;
  bottom: 0;
  width: 90%;
  padding: 30px;
}

.blog-img {
  background: url('../img/assets/blurred_image-2.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 75%;
  margin-top: 30px;
  width: 100%;
}

.blog-title .maintext {
  font-family: 'RobotoBold';
  font-size: 20px;
  color: white;
}

.blog-title .subtext {
  color: #fff;
}

.blog-text-box {
  background-color: white;
  padding-top: 75%;
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.blog-text-box .maintext {
  font-family: 'RobotoBold';
  font-size: 20px;
  color: #1c1d1e;
}

.blog-text-box .subtext {
  color: #929292;
}

.blog-link {
  font-family: 'RobotoRegular';
  font-size: 16px;
}

.editors-blog {
  padding-top: 6.1rem;
  padding-bottom: 2rem;
  font-family: 'RobotoBold';
  font-size: 28px;
  color: #1c1d1e;
}

.blog-grid {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.blog-grid .blog-title {
  top: 0;
  bottom: auto;
}

.blog-grid .maintext a {
  color: black;
}

.blog-grid .blog-link {
  position: absolute;
  bottom: 30px;
  margin-bottom: 0rem;
  top: auto;
}

.blog-grid .blog-title {
  height: 100%;
}

.blog-grid .little-blog-box {
  transform: none;
}

.blog-grid:hover {
  transform: scale(0.98);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.post-header {
  padding-top: 16.1rem;
  padding-bottom: 3.8rem;
  min-height: 610px;
}

.post-header .maintext {
  color: white;
}

.post-header .subtext {
  padding-top: 7em;
  color: white;
  font-size: 17px;
}

.post-title {
  padding-top: 2.4rem;
  padding-bottom: 1.6rem;
}

.blog-post-body {
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
}

.post-img {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

.security-belt-bg {
  background-color: #f2f2f2;
}

.navbar {
  padding-bottom: 10px;
}

@-webkit-keyframes mobi-fade-in {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes mobi-fade-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}

@-webkit-keyframes mobi-slide-down {
  0% {
    height: 40vh;
  }
  100% {
    height: 100vh;
  }
}

@-webkit-keyframes mobi-slide-up {
  0% {
    height: 100vh;
  }
  100% {
    height: 10vh;
  }
}

.mobi-fade-in-1 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.2s;
}

.mobi-fade-in-2 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.25s;
}

.mobi-fade-in-3 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.3s;
}

.mobi-fade-in-4 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.35s;
}

.mobi-fade-in-5 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.4s;
}

.mobi-fade-in-6-1 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.45s;
}

.mobi-fade-in-6 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.5s;
}

.mobi-fade-in-7 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.55s;
}

.mobi-fade-in-8 {
  opacity: 0;
  animation: mobi-fade-in 1s forwards;
  animation-delay: 0.6s;
}

.mobi-fade-out-1 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.4s;
}

.mobi-fade-out-2 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.35s;
}

.mobi-fade-out-3 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.3s;
}

.mobi-fade-out-4 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.25s;
}

.mobi-fade-out-5 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.2s;
}

.mobi-fade-out-6-1 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.15s;
}

.mobi-fade-out-6 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.1s;
}

.mobi-fade-out-7 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0.05s;
}

.mobi-fade-out-8 {
  animation: mobi-fade-out 1s forwards;
  animation-delay: 0s;
}

.mobile-drop {
  background-color: rgba(255, 255, 255, 1);
  position: fixed; /* Stay in place */
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh;
  overflow: hidden; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.modal-content {
  padding-top: 22px;
  padding-left: 9px;
  padding-right: 9px;
  border: 0px solid rgba(0, 0, 0, 0.2);
}

.modal-footer .social-contact {
  padding: 15px;
}

.modal-footer {
  justify-content: space-evenly;
  border-top: 0px;
}

.modal-header {
  padding-bottom: 0;
  margin-top: -2px;
  border-bottom: 0px;
}

.modal-body h4 {
  font-size: 1.2rem;
  line-height: 6vh;
}

.modal-header .navbar-brand {
  width: 100px;
  margin-bottom: 5px;
}

.modal-body {
  padding-left: 50px;
}

.faint-line {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 10px;
  padding-left: 0px;
}

.modal-body a {
  color: black;
}

.mobi-slide-down {
  animation: mobi-slide-down 1s;
}

.mobi-slide-up {
  animation: mobi-slide-up 0.7s;
  animation-delay: 0.8s;
}

.modal-header .nav-hamburger {
  transform: translateY(6px);
}

.display-always {
  display: block !important;
}

.security-desktop-pad {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beyond-support {
  padding-top: 12rem;
}

.portal-padding {
  padding-top: 2rem;
  max-width: 32rem;
}

.partner-padding-block {
  padding-top: 2.6em;
}

.hide-until-mobi {
  display: none;
}

.hide-until-800 {
  display: none;
}

.hide-until-tablet {
  display: none;
}

.end-textbox {
  padding-bottom: 6.1rem;
}

.hide-until-420 {
  display: none;
}

.footer-icon-size {
  height: 70px;
}

ul.bullet-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  background: transparent url('../img/assets/sprites-bullets.png') no-repeat;
}

ul.bullet-list li::before {
  font-size: 0px;
  content: none;
}

ul.nobullets li {
  margin: 1em 0;
}
ul.nobullets li::before {
  content: none;
}

.message-input {
  padding-top: -200px;
}
​

/* custom selector in contact form */
.square {
  width: 0.7em;
  height: 0.7em;
  margin: 0.5em;
  display: inline-block;
}

/* Custom dropdown */
.custom-dropdown {
  position: relative;
  display: block;
  vertical-align: middle;
}

.custom-dropdown select {
  width: 100%;
  background-color: white;
  color: black;
  font-size: inherit;
  padding: 0.5em;
  padding-right: 2.5em;
  border: 1px;
  margin: 0;
  border-radius: 5px;
  text-indent: 0.01px;
  text-overflow: '';
  border-color: #ced4da;
  border-style: solid;
  -webkit-appearance: button; /* hide default arrow in chrome OSX */
  -moz-appearance: none; /* hide default arrow in firefox */
  appearance: none;
}

.custom-dropdown::before,
.custom-dropdown::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.custom-dropdown::after {
  /*  Custom dropdown arrow */
  content: '\25BC';
  height: 1em;
  font-size: 0.625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -0.5em;
}

.custom-dropdown select[disabled] {
  color: rgba(0, 0, 0, 0.3);
}

.custom-dropdown select[disabled]::after {
  color: rgba(0, 0, 0, 0.1);
}

.custom-dropdown::before {
  background-color: rgba(0, 0, 0, 0.15);
}

.custom-dropdown::after {
  color: rgba(0, 0, 0, 0.4);
}

.disable-btn {
  background-color: gray !important;
  color: white !important;
  pointer-events: none;
}

.docAnchor {
  transform: translateY(-150px);
}

.doc-big-text {
  transform: translateX(-60px);
}

.content-box.added-top-padding {
  padding-top: 4.2rem;
}

.homepage-top-padding {
  padding-top: 2.6rem;
}

.min-icon-height {
  min-height: 680px;
}

.cc-revoke {
  display: none !important;
}

.btn-disabled {
  background-color: grey;
  border-color: grey;
}

.btn-disabled:hover {
  background-color: grey;
  border-color: grey;
}

.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

#svg-spinner {
  transition-property: transform;
  animation-name: rotate;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.some-top-pad {
  padding-top: 4rem;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.no-show {
  display: none;
}

/*
SCREEN SIZE Changes
*/
@media screen and (max-width: 1370px) {
  .big-data-background {
    background-size: 0 0;
  }
  .features-youtube-iframe {
    width: 40%;
  }
  .big-data-background {
    background-size: 0 0;
  }
  .big-data-background .title-text {
    max-width: 100%;
  }
  .xxl-col {
    flex: 0 0 100%;
    margin-left: 20%;
    padding-left: 86.66%;
  }
  .added-top-padding {
    margin: 0px;
    padding-top: 0.75rem;
  }
  .homepage-top-padding {
    padding-top: 2.6rem;
  }
  .block-title {
    color: #3d4146;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 1.79rem;
  }
  .block-text-small {
    font-size: 16px;
    color: #3d4146;
    margin-left: 0px;
    margin-right: 0px;
  }
  .become-a-background {
    padding-bottom: 0px;
    margin-bottom: 3rem;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .content-box.added-top-padding {
    padding-top: 4.6rem;
  }
  .colapse {
    padding-right: 20%;
  }
}

@media screen and (max-width: 1260px) {
  .doc-big-text {
    transform: translateX(0px);
  }
}

@media screen and (max-width: 1199px) {
  .security-grid .text-box {
    min-height: 350px;
  }
  .security-mid-right {
    display: none;
  }
  .grey-features-box {
    min-height: 360px;
  }
  .phone-pic {
    width: 100%;
    padding-top: 6rem;
  }
}

/*
additional break point for the belt
*/
@media screen and (max-width: 1024px) {
  .belt-white-left {
    width: 82%;
  }
  .belt-white-buckle {
    left: 82%;
    width: 8%;
  }
  .belt-white-right {
    width: 10.2%;
  }
  .faq-accordion {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .two-column-flex {
    gap: 3em;
  }
  .features-youtube-iframe {
    position: static;
    display: block;
    width: 100%;
    max-width: 680px;
    height: auto;
    margin-bottom: 4rem;
    transform: none;
  }
  .index-youtube-iframe {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
  .big-data-background .title-text {
    flex: 1 0 100%;
  }
  @keyframes border-bg-fade {
    0% {
      border-bottom: 2px solid rgba(0, 91, 151, 0.2);
    }
    100% {
      border-bottom: 2px solid rgba(0, 91, 151, 0.9);
    }
  }
  .side-icon {
    cursor: default;
  }
  .side-icon:hover {
    border: 2px solid #005b97;
  }
  .bg-black {
    border-bottom: 2px solid rgba(0, 91, 151, 1);
  }
  .bg-grey {
    border-bottom: 2px solid rgba(0, 91, 151, 1);
  }
  .lock-box {
    width: 100%;
    height: 250px;
    text-align: center;
    margin-bottom: 30px;
  }
  .lock-circle, .pulse-lock {
    left: calc(50% - 50px);
    top: 200px;
  }
  .security-mid .security-mid-text {
    padding-top: 2.79rem;
    padding-bottom: 2.79rem;
  }
  .security-mid-right {
    margin-top: 0rem;
  }
  .security-grid {
    column-count: 2;
  }
  .security-mid-right {
    display: none;
  }
  .security-tablet-only {
    display: block;
  }
  .security-mid-right-tablet {
    margin-top: 0rem;
    margin-bottom: 0rem;
    padding-bottom: 3.8rem;
    border-style: solid;
    border-color: #f2f2f2;
    border-width: 10px;
    padding-right: 40px;
  }
  .up-towers {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 1.79rem;
    height: 500px;
  }
  .center-vert {
    padding-top: 0rem;
    padding-bottom: 3rem;
    z-index: 500;
  }
  .beyond-support {
    padding-top: 3rem;
  }
  .mobile-grey-back {
    background-color: #f2f2f2;
  }
  .light-partner-box {
    margin-top: 10px;
    margin-bottom: 0rem;
  }
  .partner-grid {
    margin-top: 2.8rem;
  }
  .mobi-center {
    text-align: center;
  }
  .portal-padding {
    padding-top: 3em;
    max-width: 100%;
  }
  .portal-phone {
    transform: translate(-50px, 50px);
    height: 350px;
  }
  .portal-phone-screen {
    height: 315px;
    transform: translate(-58px, -14px);
  }
  .portal-phone-hamburger {
    height: 20px;
    transform: translate(-191px, -274px);
    animation: portal-ham-mini 5s infinite ease-in-out;
  }
  .portal-phone-nav {
    height: 261px;
    transform: translate(-214px, -13px);
    animation: nav-animation-mini 5s infinite ease-in-out;
    bottom: 0;
  }
  .portal-wrapper {
    width: 214px;
    transform: translate(0px, 40px);
    bottom: 79px;
    right: 0;
  }
  .portal-bg {
    min-height: 30rem;
  }
  .partner-padding-block {
    padding-top: 0em;
  }
  .plane-bg {
    height: 17rem;
    background-size: cover;
  }
  .factory-bg {
    height: 17rem;
    background-size: cover;
  }
  .train-bg {
    height: 17rem;
    background-size: cover;
  }
  .corner-tag {
    height: 18%;
    margin-left: 5px;
    margin-bottom: 20px;
  }
  .add-marg-mobi {
    margin-left: 15px;
  }
  .solutions-header {
    padding-top: 6.1rem;
    text-align: center;
  }
  .solutions-bg {
    background-size: auto;
    min-height: auto;
  }
  .stairs-phone {
    height: 350px;
    transform: translateX(82.5px);
  }
  .stairs-bg {
    min-height: 25rem;
  }
  .solutions-cont {
    padding-top: 3rem;
  }
  .street-phone {
    transform: translateX(-80px);
    height: 350px;
  }
  .solut-tab-hide {
    display: none;
  }
  .hide-until-tablet {
    display: block;
  }
  .document-box .maintext {
    padding-top: 0px;
    padding-bottom: 1.79rem;
  }
  .first-doc {
    transform: translateX(190px);
  }
  .second-doc {
    display: none;
  }
  .third-doc {
    display: none;
  }
  .fourth-doc {
    display: none;
  }
  .fifth-doc {
    display: none;
  }
  .sixth-doc {
    display: none;
  }
  .document {
    min-height: 520px;
  }
  .document-box {
    height: 950px;
  }
  .document-left-btn {
    transform: translateY(200px);
    right: 80%;
  }
  .document-right-btn {
    transform: translateY(200px);
    left: 80%;
  }
  .big-partner-btn {
    margin-bottom: 3rem;
  }
  .cpe-pad {
    margin-left: 1rem;
  }
  .second-doc {
    display: block;
    transform: translateX(900px);
  }
  @-webkit-keyframes shift-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-710px);
    }
  }
  @-webkit-keyframes shift-right {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(710px);
    }
  }
  .display-desktop-only {
    display: none;
  }
  .features-header {
    padding-top: 7.1rem;
    padding-bottom: 3.1rem;
    min-height: 240px;
  }
  .feature-right-btn-ajust {
    transform: translateY(165px);
    left: 30px;
  }
  .feature-left-btn-ajust {
    transform: translateY(133px);
    right: 30px;
  }
  .light-features-box {
    margin-top: 0rem;
    min-height: 0px;
  }
  .grey-features-box {
    margin-bottom: 0rem;
    margin-top: 4rem;
    text-align: center !important;
    min-height: 400px;
  }
  .text-box {
    margin-bottom: 0px;
    height: 300px;
  }
  .line-break {
    width: 20%;
    transform: translateX(0px);
  }
  .features-table {
    padding-bottom: 0rem;
  }
  .no-marg-top {
    margin-top: 0px !important;
    margin-bottom: 3rem;
  }
  .features-phone {
    top: -105px;
    width: 60%;
  }
  .one-phone {
    width: 100%;
    padding-bottom: 105px;
    padding-top: 50px;
  }
  .tab-pad {
    padding-top: 50px;
  }
  .end-textbox {
    padding-bottom: 3rem;
  }
  .side-icon {
    min-width: 35%;
    margin-top: 435px;
    margin-bottom: 10px;
    transform: translateX(2px);
  }
  .security-grid .text-box {
    height: auto;
    margin-bottom: 2rem;
    transform: translateY(0px);
    margin-top: 2rem;
  }
  .security-desktop-pad {
    padding-top: 0rem;
  }
  .light-security-box {
    height: 365px;
  }
  .big-blog-box {
    margin-bottom: 25px;
  }
  .phone-pic {
    padding-top: 0rem;
  }
  .features-header {
    padding-bottom: 2rem;
  }
  .blue-guy {
    width: 120px;
  }
  .purp-guy {
    width: 120px;
  }
  .blue-plus {
    transform: translateX(-20px);
  }
  .purp-check {
    transform: translateX(13px);
  }
  .packet-people {
    min-height: 270px;
  }
  .green-line {
    margin-top: 55px;
  }
  .finger-print {
    position: absolute;
    margin-top: 30px;
  }
  .travel-path {
    margin-top: 55px;
  }
  .green-circle {
    margin-top: 45px;
  }
  .border-top-bot {
    border-top: 10px solid #f2f2f2;
    border-bottom: 10px solid #f2f2f2;
  }
  .no-border-right {
    border-right: 0px solid #f2f2f2;
  }
  .no-border-left {
    border-left: 0px solid #f2f2f2;
  }
  .partner-bg {
    background: none;
    min-height: 510px;
    padding-top: 7rem;
    padding-bottom: 3rem;
    min-height: 300px;
    text-align: center;
  }
  .copy-right-text {
    padding-top: 2.6rem;
  }
  .social-center {
    display: flex;
  }
  .blog-header {
    height: auto;
    padding-top: 7.1rem;
  }

  .partner-level-text .levels-title {
    font: normal normal bold 26px/34px RobotoRegular;
    color: #fff;
  }

  .partner-level-text .levels-sub-title {
    font: normal normal normal 16px/20px RobotoRegular;
    color: #fff;
  }
  .program-copy {
    margin-top: 2rem;
    margin-bottom: 3rem;
    font: normal normal normal 14px/20px Roboto;
  }
  .partner-graph-img.main {
    width: 100%;
  }
  .partner-accelerate-bg .horizontal-grid {
    background-size: auto 5rem;
  }
  .partner-grid-bg {
    background-size: 5rem auto;
  }
  .navy-bg {
    padding: 0;
  }
  .video-wrapper {
    height: 113vh;
  }
  .belt-white-left {
    height: 140px;
  }
  .belt-white-right {
    height: 140px;
  }
  .some-top-pad  {
    padding-top: 2.6rem;
  }
}

/*
styling changes for tablet
*/
@media screen and (max-width: 800px) {
  .two-column-flex {
    flex-flow: row wrap;
  }
  .two-column-flex > * {
    flex-basis: 100% !important;
  }
  .navbar {
    padding-top: 26px;
  }
  .navbar .nav-itembar {
    display: none;
  }
  .nav-hamburger {
    float: right;
    display: block;
    transform: translateY(2px);
  }
  .navbar .partner-btn {
    margin-right: 20px;
  }
  .navbar .navbar-brand {
    padding-top: 15px;
  }
  .main-hero {
    height: 450px;
    padding-top: 6.5rem;
    margin-top: 0px;
  }
  .cust-marg {
    margin-left: 6%;
  }
  .columns {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
  }
  .add-padding {
    padding-top: 1.79rem;
    padding-bottom: 1.79rem;
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .surround-grey {
    padding-top: 5.6rem;
  }
  .shrink-img {
    height: 400px;
  }
  .translate-up {
    transform: translateY(-20px);
  }
  .footer-icon-size {
    padding-left: 15px;
    height: 60px;
  }
  .belt-footer-left {
    width: 80%;
  }
  .belt-footer-buckle {
    position: absolute;
    left: 80%;
    width: 10%;
    height: 150px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .belt-footer-right {
    width: 10%;
  }
  .footer-block {
    padding: 0rem;
    min-width: 300px;
  }
  .footer-block > div {
    transform: translateX(10px);
    width: 33.333%;
    padding-right: 20px;
    padding-left: 10px;
  }
  .footer-icon {
    width: 15%;
    margin-left: -30px;
    max-width: 100%;
  }
  .hide-until-800 {
    display: block;
  }
  footer .social-icons {
    padding-top: 0;
  }
}

/*Partner Sizing changes*/
@media screen and (max-width: 800px) {
  .partner-bg {
    min-height: 510px;
    padding-top: 6rem;
    padding-bottom: 0rem;
    min-height: 300px;
    text-align: center;
  }
  .partner-grid {
    transform: translateX(-60px);
  }
}

@media screen and (max-width: 799px) {
  .hero-top:after {
    background: none;
  }
  .hero-top-promo:after {
    background: none;
  }
  .hero {
    background: url('../img/hero-images/hero_homepage.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 450px;
    background-attachment: inherit;
  }
  .hero-promo {
    background: url('../img/promo/hero.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 500px;
    background-attachment: inherit;
  }
  #blackOverlay {
    display: none;
  }
  .hero-inner {
    padding-top: 100px;
    transform: translateY(0px);
    padding-left: 10%;
  }
  .hero-inner-promo {
    padding-top: 100px;
    transform: translateY(0px);
    padding-left: 10%;
  }
  .hero-inner-promo h1 {
    max-width: 30rem;
    font-size: 58px;
    font-weight: bold;
    font-family: 'RobotoBold';
  }
  .hero-inner-promo h2 {
    max-width: 20rem;
    font-size: 16px;
    font-family: 'RobotoRegular';
    margin-bottom: 1rem;
  }
  .promo-hero-link img {
    max-width: 12rem;
    height: auto;
  }
  .hero h1 {
    width: 240px;
    font-size: 28px;
    line-height: 30px;
  }
  .hero h2 {
    width: 240px;
    font-size: 18px;
  }
  .belt-white-left {
    top: 106vh;
    height: 110px;
    width: 81%;
  }
  .belt-white-buckle {
    left: 81%;
    top: 106vh;
    height: 110px;
    width: 8%;
  }
  .belt-white-right {
    top: 106vh;
    height: 110px;
    width: 11%;
  }
}

/*
break point for locked img flip
*/
@media screen and (max-width: 767px) {
  .surround-grey {
    overflow: hidden;
    padding-top: 3.6rem;
    padding-bottom: 1.79rem;
  }
  .icon-size {
    width: 20%;
  }
  .ham-nav {
    width: 50%;
    padding-left: 15%;
    padding-right: 0px;
    padding-top: 15px;
  }
  .btn-learn {
    padding-bottom: 3rem;
  }
  .surround-white {
    display: table;
    margin-right: 5px;
    margin-left: 5px;
    height: auto;
    padding-bottom: 1.5rem;
  }
  .shrink-img {
    overflow: hidden;
    display: none;
    transform: translateX(18%);
    height: 250px;
  }
  .some-top-pad {
    padding-top: 2.3rem;
  }
  .add-padding {
    padding: 3.8rem;
    display: table-footer-group;
  }
  .translate-up {
    transform: translateY(-45px);
    text-align: center !important;
  }
  .add-margin {
    margin: 15px;
  }
  .cpe-pad {
    margin-left: 0rem;
  }
  .text-box {
    height: auto;
    margin-bottom: 1rem;
  }
  .light-features-box {
    padding-bottom: 2.8rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
  }
  .grey-features-box {
    min-height: 0px;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  .tamper-icon {
    width: 35%;
  }
  .features-table {
    padding-bottom: 4rem;
  }
  .document-left-btn {
    transform: translateY(550px);
    right: 53%;
  }
  .document-right-btn {
    transform: translateY(550px);
    left: 53%;
  }
}

/*security mobile changes*/
@media screen and (max-width: 767px) {
  .features-youtube-iframe {
    margin-bottom: 8rem;
  }
  .light-security-box {
    height: 450px;
  }
  .mobile-hide {
    display: none;
  }
  .light-security-box {
    margin-bottom: 1.79rem;
  }
  .bg-setup {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .security-grey-break {
    width: 100%;
    margin-top: 19.6rem;
    margin-bottom: 0;
  }
  .mobi-ajust {
    margin-top: 10px;
  }
  .partner-bg {
    padding-bottom: 3rem;
  }
  .mobile-grey-back {
    background-color: white;
  }
  .beyond-support {
    padding-top: 0rem;
    padding-bottom: 3rem;
  }
  .partner-grid {
    margin-top: 0rem;
    margin-bottom: 0rem;
    transform: translateX(0px);
  }
  .portal-padding {
    padding-top: 0em;
  }
  .mobi-partner-pad {
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 3rem;
  }
  .add-marg-mobi {
    margin-left: 0rem;
  }
  .mobi-center-2 {
    text-align: center;
  }
  .mobi-hide {
    display: none;
  }
  .hide-until-mobi {
    display: block;
  }
  .solutions-bg {
    background-position-x: 35%;
  }
  .stairs-phone {
    transform: translate(0px, 50px);
  }
  .street-phone {
    transform: translate(0px, 50px);
  }
  .wallst-bg {
    min-height: 25rem;
  }
  .big-partner-btn {
    margin-bottom: 0rem;
  }
  .plane-bg {
    margin-bottom: 1.79rem;
  }
  .factory-bg {
    margin-bottom: 1.79rem;
  }
  .train-bg {
    margin-bottom: 1.79rem;
  }
  .beyond-support {
    padding-bottom: 0rem;
  }
  .solutions-cont {
    padding-bottom: 3rem;
  }
  .side-icon {
    min-width: 50%;
    margin-top: 31rem;
  }
  .line-break {
    width: 40%;
    transform: translateX(15px);
  }
  .features-phone {
    width: 90%;
  }
  .one-phone {
    width: 90%;
  }
  .first-doc {
    transform: translateX(26px);
  }
  .second-doc {
    transform: translateX(435px);
  }
  .third-doc {
    display: block;
    transform: translateX(844px);
  }
  @-webkit-keyframes shift-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-409px);
    }
  }
  @-webkit-keyframes shift-right {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(409px);
    }
  }
  .special-textbox .maintext {
    padding-right: 20px;
  }
  .feature-right-btn-ajust {
    transform: translateY(165px);
    left: 30px;
  }
  .feature-left-btn-ajust {
    transform: translateY(133px);
    right: 30px;
  }

  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .hero {
    height: 450px;
    background-attachment: inherit;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url('../img/hero-images/hero_homepage.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .hero-promo {
    height: 450px;
    background-attachment: inherit;
    background: url('../img/promo/hero.jpg') center center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .hero-inner {
    padding-top: 100px;
    transform: translateY(0px);
    padding-left: 10%;
  }
  .hero-inner-promo {
    padding-top: 100px;
    transform: translateY(0px);
    padding-left: 10%;
  }
  .hero-inner-promo h1 {
    max-width: 20rem;
    font-size: 38px;
    font-weight: bold;
    font-family: 'RobotoBold';
  }
  .hero-inner-promo h2 {
    max-width: 20rem;
    font-size: 12px;
    font-family: 'RobotoRegular';
    margin-bottom: 1rem;
  }
  .promo-hero-link img {
    max-width: 8rem;
    height: auto;
  }
  .hero h1 {
    width: 240px;
    font-size: 28px;
    line-height: 30px;
  }
  .hero h2 {
    width: 240px;
    font-size: 18px;
  }
  .belt-white-left {
    top: 103vh;
    height: 100px;
    width: 80%;
  }
  .belt-white-buckle {
    left: 80%;
    top: 103vh;
    width: 10%;
  }
  .belt-white-right {
    top: 103vh;
    height: 103px;
    width: 10%;
  }
}

@media screen and (max-width: 640px) {
  .security-grid .text-box {
    min-height: 375px;
  }
}

@media screen and (max-width: 575px) {
  .security-mid-right-tablet {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
  .security-grid {
    column-count: 1;
  }
  .security-grid .text-box {
    transform: translateY(-50px);
    margin-top: 0px;
    min-height: 185px;
    margin-bottom: 15px;
  }
  .side-icon {
    min-width: 50%;
    margin-top: 33rem;
  }
  .features-phone {
    width: 65%;
  }
  .mobi-bord-top {
    border-top: 0px;
    transform: translateY(-3.8rem);
  }
  .mobi-bord-bot {
    border-bottom: 0px;
  }
  .packet-container {
    padding-top: 0rem;
  }
  .border-top-bot {
    border-top: 0px solid #f2f2f2;
    border-bottom: 0px solid #f2f2f2;
  }
  .no-border-right {
    border-right: 10px solid #f2f2f2;
  }
  .no-border-left {
    border-left: 10px solid #f2f2f2;
  }
  .min-icon-height {
    min-height: 720px;
  }
}

@media screen and (max-width: 510px) {
  .second-doc {
    display: block;
  }
  .side-icon {
    min-width: 60%;
    margin-top: 28rem;
  }
  .email-input {
    margin-right: 0px;
  }
  .blue-guy {
    transform: translateX(-20px);
  }
  .purp-guy {
    transform: translateX(20px);
  }
  .blue-plus {
    transform: translateX(-33px);
  }
  .purp-check {
    transform: translateX(30px);
  }
  /* promo features section title */
  .promo-section-title {
    font-size: 2rem;
  }
  .promo-section-title h1 {
    font-size: 2rem;
  }
  .promo-section-title h4 {
    line-height: 1.4;
    font-family: 'RobotoRegular';
  }
  .promo-overlap-img-center hr {
    margin-top: 0;
    padding-top: 0;
    background-color: #005b97;
    width: 100%;
    transform: translateY(-27px);
  }
  .partner-phone-gif hr {
    margin-top: 0;
    padding-top: 0;
    background-color: #005b97;
    width: 100%;
  }
  .promo-overlap-img-center img {
    -webkit-transform: scale(0.9); /* Saf3.1+, Chrome */
    -moz-transform: scale(0.9); /* FF3.5+ */
    -ms-transform: scale(0.9); /* IE9 */
    -o-transform: scale(0.9); /* Opera 10.5+ */
    transform: scale(0.9);
  }
  .blue-promo-h1 {
    font-size: 42px;
  }
  .promo-form-header {
    font-size: 2rem;
  }
  .promo-form-subheader {
    font-size: 1.2rem;
  }
  .promo-form {
    margin: 0;
    padding-bottom: 7rem;
  }
}

@media screen and (max-width: 486px) {
  .document-box .document-left-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid #3fa9f5;
    transform: translateY(200px);
    right: 87%;
    z-index: 9;
  }
  .document-box .left-arrow {
    border: 5px solid #3fa9f5;
    border-bottom: 0px solid white;
    border-right: 0px solid white;
    width: 35px;
    height: 35px;
  }
  .document-box .document-right-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid #3fa9f5;
    transform: translateY(200px);
    left: 83%;
    z-index: 9;
  }
  .document-box .right-arrow {
    border: 5px solid #3fa9f5;
    border-top: 0px solid white;
    border-left: 0px solid white;
    width: 35px;
    height: 35px;
  }
}

/*following is just for mobile docs arrow animation on click*/
.right-arrow-clicked {
  animation: arrow-press-right forwards 0.8s;
}

.left-arrow-clicked {
  animation: arrow-press-left forwards 0.8s;
}

@-webkit-keyframes arrow-press-right {
  0% {
    -webkit-transform: scale(1, 1) rotate(-45deg) translate(-3px, 18px);
  }
  30% {
    -webkit-transform: scale(0.7, 0.7) rotate(-45deg) translate(-3px, 18px);
  }
  100% {
    -webkit-transform: scale(1, 1) rotate(-45deg) translate(-3px, 18px);
  }
}

@-webkit-keyframes arrow-press-left {
  0% {
    -webkit-transform: scale(1, 1) rotate(-45deg) translate(2px, 24px);
  }
  30% {
    -webkit-transform: scale(0.7, 0.7) rotate(-45deg) translate(2px, 24px);
  }
  100% {
    -webkit-transform: scale(1, 1) rotate(-45deg) translate(2px, 24px);
  }
}

/*
styling changes for mobile
*/

@media screen and (max-width: 440px) {
  .travel-path {
    width: 80%;
  }
  .footer-block {
    padding: 10px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 420px) {
  .partner-btn {
    display: none;
  }
  .nav-hamburger {
    transform: translateY(0px);
  }
  .hide-until-420 {
    display: block;
  }
  .hide-at-420 {
    display: none;
  }
  .features-phone {
    width: 90%;
  }
  .pad-up {
    padding-top: 24rem;
  }
  .more {
    display: none;
  }
  .more-btn {
    display: block;
  }
  .features-phone {
    padding-left: 15%;
    padding-right: 15%;
  }
}

@media screen and (max-width: 400px) {
  .belt-white-left {
    width: 60%;
  }
  .belt-white-buckle {
    position: absolute;
    z-index: 1;
    left: 60%;
    width: 20%;
  }
  .belt-white-right {
    width: 20.2%;
  }
  .footer-belt-left {
    top: 380px;
    width: 60%;
  }
  .footer-belt-buckle {
    position: absolute;
    z-index: 1;
    top: 380px;
    left: 60%;
    width: 20%;
    height: 150px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .footer-belt-right {
    top: 380px;
    height: 75px;
    width: 20%;
  }
  .ham-nav {
    margin-right: 0px;
  }
  .security-grey-break .subtext {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .travel-path {
    width: 80%;
  }
  .side-icon {
    min-width: 60%;
    margin-top: 22rem;
  }
  .footer-block {
    padding: 10px;
    padding-left: 10px;
  }
  .min-icon-height {
    min-height: 545px;
  }
}

@media screen and (max-width: 400px) {
  .document-box {
    height: 1000px;
  }
  .solutions-bg {
    background: white;
  }
}

@media screen and (max-width: 375px) {
  .pad-up {
    padding-top: 20rem;
  }
  .first-doc {
    transform: translateX(12px);
  }
  @-webkit-keyframes shift-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-422px);
    }
  }
}

@media screen and (max-width: 362px) {
  .first-doc {
    transform: translateX(5px);
  }
  @-webkit-keyframes shift-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-429px);
    }
  }
}

@media screen and (max-width: 350px) {
  .ham-nav {
    margin-right: 50px;
  }
  .document-box {
    height: 1100px;
  }
  .first-doc {
    transform: translateX(0px);
  }
  .footer-box .container {
    padding-left: 15px;
  }
}

@media screen and (max-width: 319px) {
  .packet-people {
    display: none;
  }
}

@media screen and (max-width: 310px) {
  .navbar .partner-btn {
    margin-right: 1px;
  }
  .blog-title {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .belt-white-left {
    width: 70%;
    height: 100px;
  }
  .belt-white-buckle {
    left: 70%;
    width: 15%;
  }
  .belt-white-right {
    width: 15%;
    height: 100px;
  }
  .big-data-background {
    background-size: 0 0;
  }
  .big-data-block {
    display: block;
    max-width: 100%;
    height: auto;
    padding-top: 3rem;
  }
  .big-data-background {
    background-size: 0 0;
  }
  .added-top-padding {
    margin: 0px;
    padding-top: 0.75rem;
  }
  .content-box.added-top-padding {
    margin: 0px;
    padding-top: 0.75rem;
  }
  .block-text-small {
    font-size: 16px;
    color: #3d4146;
    margin-left: 0px;
    margin-right: 0px;
  }
  .surround-grey {
    overflow: hidden;
    padding-top: 3.6rem;
    padding-bottom: 1.79rem;
  }
  .btn-learn {
    padding-bottom: 3rem;
  }
  .become-a-background {
    margin-bottom: 0rem;
    padding-left: 0%;
    padding-right: 0%;
    padding-top: 0rem;
    padding-bottom: 7.6rem;
    width: 90%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }
  .belt-footer-left {
    width: 60%;
  }
  .belt-footer-buckle {
    position: absolute;
    z-index: 0;
    left: 60%;
    width: 20%;
    height: 150px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .belt-footer-right {
    width: 20%;
  }
  .footer-block > div {
    transform: translateX(10px);
    width: 50%;
    padding-right: 10px;
  }
  .footer-icon {
    width: 30%;
    padding-left: 0px;
    padding-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .colapse {
    width: 100%;
    margin-left: 50%;
    padding-right: 0%;
  }
  .social-icons {
    max-width: 25%;
    padding-right: 5%;
    padding-left: 5%;
  }
  .social-center {
    padding-left: 30%;
  }
  .partner-light-section {
    padding: 4rem 0 4rem 0;
    background-color: #fafafa;
  }
  .portal-bg {
    background: url('../img/partner/portal_browser.png');
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 160%;
    background-position-x: 0;
    background-position-y: 0;
    overflow: visible;
    padding-top: 0;
    box-shadow: 7px 7px 10px rgba(0, 0, 0, 0);
    -moz-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0);
  }
  .portal-phone {
    transform: translate(0px, 0px);
    height: auto;
    top: 200px;
    bottom: 0;
    right: 60px;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
  }
  .portal-wrapper {
    transform: translate(0px, 0px);
    height: 30rem;
    top: 200px;
    bottom: 0;
    right: 60px;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 228px;
  }
  .portal-phone-screen {
    height: auto;
    width: 224px;
    transform: translate(-2px, 15px);
    top: 2px;
  }
  .portal-phone-hamburger {
    height: auto;
    width: 29px;
    transform: translate(0px, 0px);
    top: 68px;
    left: 5px;
    animation: portal-ham-mobile 5s infinite ease-in-out;
  }
  .portal-phone-nav {
    animation: nav-animation-mobile 5s infinite ease-in-out;
    height: 375px;
    left: -140px;
    top: 97px;
  }
  .partner-advantage {
    padding-top: 9rem;
    margin-top: 4rem;
  }
  .footer-icon-size {
    display: none;
  }
  .homepage-top-padding {
    padding-top: 0.4rem;
  }
}

@media screen and (max-width: 260px) {
  .document-box {
    height: 1300px;
  }
  .belt-white-left {
    width: 100%;
  }
  .features-phone {
    padding-left: 0%;
    padding-right: 0%;
  }
  .pad-up {
    padding-top: 24rem;
  }
}

@media screen and (max-width: 130px) {
  .document-box {
    height: 1600px;
  }
  .belt-white-right {
    width: 20.8%;
  }
}
