<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  height: 100%;
  background-color: #292929;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

a {
  text-decoration: none;
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 15px;
  border-radius: 3px;
  background-color: #26acc7;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  font-family: Raleway, sans-serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background-color: #383838;
}

.button.intro-button {
  position: relative;
  z-index: 1;
  margin-top: 0px;
  padding: 11px 25px;
  border: 1px solid #e31064;
  border-radius: 3px;
  background-color: #e31064;
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-weight: 700;
}

.button.intro-button:hover {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

.button.feature-button {
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 2px;
  background-color: #000;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 15px;
}

.button.feature-button:hover {
  background-color: #e31064;
}

.button.submit-button {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 700;
}

.button.dark {
  background-color: #000;
}

.button.dark:hover {
  background-color: #3bcdeb;
}

.navbar {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  padding: 12px 37px;
  border-radius: 2px;
  background-color: transparent;
}

.hero {
  height: 800px;
  background-color: #2f3d40;
  background-image: url('../images/WebHeroSplash.png');
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}

.hero-container {
  position: relative;
  height: 100%;
  padding-top: 230px;
}

.hero-text-block {
  position: relative;
  z-index: 500;
  width: 540px;
  float: left;
}

.hero-title {
  margin-top: 0px;
  margin-bottom: 1px;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 44px;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 6px #000;
}

.hero-title.title-2 {
  margin-top: -5px;
  font-size: 28px;
  line-height: 34px;
  font-weight: 300;
}

.hero-title.frontPageHeaderLI{
  margin-top: 10px;
  font-size: 28px;
  line-height: 34px;
  font-weight: 300;
}

/* Css for Case Studies dropdown in nav bar */
.nav-dropdown {
  background-color: transparent;
  color: white;
  padding: 10px, 20px;
  font-size: 16px;
  border: none;
}

/* VidWrapper */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

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

/* The container &lt;div&gt; - needed to position the dropdown content */
.dropdownGlobalStyle {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Dropdown Content (Hidden by Default) */
.dropdownGlobalStyle-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, .25);
  opacity: 95%;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdownGlobalStyle-content a {
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 10px;
  text-decoration: none;
  display: block;
  background-color: transparent
}

/* Change color of dropdown links on hover */
.dropdownGlobalStyle-content a:hover {color: #FFF;}

/* Show the dropdown menu on hover 
.dropdownGlobalStyle:hover .dropdownGlobalStyle-content {display: block;}
*/
/* Change the background color of the dropdown button when the dropdown content is shown
.dropdownGlobalStyle:hover .nav-dropdown {background-color: rgba(0, 0, 0, .25);}
*/
.comingSoonMessage{
  text-align: center;
}

.bioMedPharmaimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.bioMedPharmBodyText {
  text-align: center;
}

.bioMedPharmBodyText p {
  font-size: large;
  padding: 5px;

}

.bioMedPharmBodyText strong, h3{
  text-decoration: underline;
}

@media only screen and (max-width: 990px) {
  .hero-title.frontPageHeaderLI{
    font-size: 20px;
    line-height: 20px;
  }

  .dropdownGlobalStyle {
    width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  .hero-title.frontPageHeaderLI{
    font-size: 16px;
    line-height: 20px;
    font-weight: 200;
    margin-top: 5px;
    padding-left: 20px;
  }

  .hero-image {
    position: absolute;
    top: 10px;
    right: -370px;
    width: 70%;
    -webkit-transform: translate(-50px, 0px);
    -ms-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease;
  }
  
}

.hero-title.title-2._1 {
  margin-top: 13px;
}

.hero-title.word {
  display: inline-block;
  margin-right: 14px;
  font-size: 58px;
  line-height: 49px;
  font-weight: 900;
}

.hero-button {
  display: inline-block;
  margin-right: 6px;
  padding: 15px 25px;
  border-radius: 3px;
  background-color: #26acc7;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-button:hover {
  background-color: #3fd4f2;
}

.hero-button._2 {
  background-color: #e31064;
}

.hero-button._2:hover {
  background-color: #fc3585;
}

.hero-image {
  position: absolute;
  top: 105px;
  right: -370px;
  -webkit-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.hero-image.macbook {
  top: 95px;
  right: -75px;
  height: 270px;
}

.hero-image.phone-white {
  top: 223px;
  right: -105px;
  height: 420px;
}

.hero-overlay {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 48, 66, .29);
}

.section {
  display: block;
  padding-top: 95px;
  padding-bottom: 95px;
  background-color: #fff;
}

.section.tint {
  background-color: #ededed;
}

.section.tint.testimonials {
  display: none;
}

.section.tint.edgecomputing {
  padding-top: 158px;
  padding-bottom: 158px;
}

.section.products {
  display: none;
  height: 490px;
  background-color: #26acc7;
  color: #fff;
}

.section.dark {
  background-color: #292929;
  color: #fff;
}

.section.dark.mini {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cfcfcf;
}

.section.corporate-vision {
  padding-top: 61px;
  padding-bottom: 61px;
}

.section-title-block {
  margin-bottom: 30px;
  text-align: left;
}

.section-title-block.centered {
  text-align: center;
}

.section-title-block.testimonials {
  margin-bottom: 55px;
}

.section-title {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 35px;
  font-weight: 900;
  text-transform: capitalize;
}

.section-title.subtitle {
  font-size: 25px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
}

.brand-logo {
  position: relative;
  left: 2px;
  top: 7px;
  display: inline-block;
  margin-left: -5px;
  padding-left: 0px;
  opacity: 0.4;
  font-family: 'Droid Sans', sans-serif;
  color: #fdfdfd;
  font-size: 27px;
  letter-spacing: 1px;
}

.container {
  position: relative;
  padding-right: 0px;
  padding-left: 0px;
}

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

.section-divider-line {
  display: inline-block;
  width: 100px;
  height: 3px;
  background-color: #ff1774;
}

.section-divider-line.feature-divider {
  margin-top: 16px;
  margin-bottom: 14px;
}

.section-divider-line.models-divider {
  margin-top: 15px;
  margin-bottom: 18px;
  background-color: hsla(0, 0%, 100%, .29);
}

.nav-link {
  padding-right: 10px;
  padding-left: 10px;
  font-family: Raleway, sans-serif;
  color: hsla(0, 0%, 100%, .65);
  font-size: 14px;
  text-decoration: none;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.w--current {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}

.logo-container {
  top: 5px;
  padding-top: 7px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.logo-container:hover {
  text-shadow: 0 0 16px #fff;
}

.intro-row {
  margin-bottom: 45px;
}

.intro-column-title {
  margin-top: 0px;
  margin-bottom: 1px;
  font-size: 24px;
  line-height: 23px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-column-title.subtitle {
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 300;
}

.intro-button-wrapper {
  position: relative;
}

.intro-button-line {
  position: absolute;
  left: 0px;
  top: 22px;
  right: 0px;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.intro-icon {
  height: 65px;
  margin-bottom: 27px;
}

.link {
  font-family: Raleway, sans-serif;
  color: #26acc7;
}

.link:hover {
  color: #000;
}

.link.below-paragraph {
  display: block;
  margin-top: 16px;
  font-family: Ubuntu, Helvetica, sans-serif;
  color: #e31064;
  text-decoration: none;
}

.link.below-paragraph:hover {
  color: #000;
  text-decoration: underline;
}

.link.footer-link {
  display: block;
  color: #a8a8a8;
}

.link.footer-link:hover {
  color: #fff;
}

.link.footer-text-link:hover {
  color: #fff;
}

.image-section {
  background-image: url('../images/BG-1.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.image-section._1 {
  background-image: url('../images/WebHeroSplash2.png');
  background-position: 50% 0px;
  background-size: cover;
  background-attachment: fixed;
}

.image-section-overlay {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(69, 87, 102, .4);
  color: #fff;
}

.image-section-overlay._2 {
  padding-top: 145px;
  padding-bottom: 145px;
  background-color: rgba(69, 87, 102, .4);
}

.large-phone-mockup {
  position: absolute;
  left: -93px;
  top: -156px;
  height: 623px;
  border: 5px solid #fff;
  border-radius: 15px;
}

.column-title-block {
  margin-bottom: 21px;
}

.check-list {
  margin-top: 25px;
}

.check-list-icon {
  width: 24px;
  margin-right: 13px;
  float: left;
}

.check-list-item {
  margin-bottom: 10px;
}

.check-list-item.last {
  margin-bottom: 0px;
}

.checklist-title {
  font-family: Raleway, sans-serif;
  color: #fff;
}

.feature-title {
  margin-top: 0px;
  margin-bottom: 6px;
  font-size: 23px;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-title.subtitle {
  font-size: 17px;
  font-weight: 300;
}

.feature-column {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}

.feature-block {
  position: relative;
  padding: 25px;
  border-style: solid;
  border-width: 3px;
  border-color: hsla(0, 0%, 100%, .2);
  border-radius: 4px;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, .2);
  -webkit-transition: background-color 500ms ease, border-color 500ms ease, color 350ms ease;
  transition: background-color 500ms ease, border-color 500ms ease, color 350ms ease;
}

.feature-block:hover {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}

.features-row {
  margin-top: 51px;
}

.footer {
  padding-top: 75px;
  padding-bottom: 50px;
  background-color: #000;
  color: #b3b3b3;
}

.column-title {
  margin-top: 0px;
  margin-bottom: 6px;
  line-height: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.column-title.subtitle {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 27px;
  font-weight: 300;
}

.column-title.subtitle.center {
  margin-top: 12px;
  font-size: 23px;
  line-height: 28px;
  text-transform: none;
}

.column-title.center {
  font-size: 42px;
  text-align: center;
  text-transform: capitalize;
}

.large-column-title {
  margin-top: 0px;
  font-family: Raleway, sans-serif;
  font-size: 45px;
  line-height: 39px;
  font-weight: 900;
  text-transform: uppercase;
}

.models-text-block {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-block;
  width: 35%;
  margin-top: 14px;
  float: left;
}

.models-slider {
  display: inline-block;
  width: 570px;
  height: 300px;
  float: right;
  background-color: transparent;
}

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

.model-image {
  height: 300px;
}

.model-image.iphone {
  height: 280px;
  margin-top: 16px;
}

.model-image.ipad {
  margin-top: 18px;
}

.model-slider-title {
  position: absolute;
  right: 50px;
  bottom: 85px;
  padding: 9px 11px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .8);
  font-family: Raleway, sans-serif;
  font-size: 23px;
}

.model-slider-title.subtitle {
  bottom: 49px;
  padding: 5px 7px;
  background-color: #e31064;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.model-slider-arrow {
  width: 40px;
  border-radius: 0px;
  opacity: 0.6;
  font-size: 23px;
  font-weight: 600;
}

.model-slider-arrow:hover {
  opacity: 1;
}

.page-header {
  background-image: url('../images/WebHeroSplash.png');
  background-position: 0px 0px;
  background-size: cover;
  background-attachment: fixed;
}

.page-header.contact {
  background-image: url('../images/WebHeroSplash.png');
  background-position: 50% 0px;
  background-size: cover;
  background-attachment: fixed;
}

.page-header._404-page {
  height: 100%;
  background-image: url('../images/WebHeroSplash.png');
}

.page-header-overlay {
  width: 100%;
  height: 100%;
  padding-top: 175px;
  padding-bottom: 105px;
  background-color: rgba(29, 48, 66, .29);
  text-align: center;
}

.page-header-overlay._404-page {
  height: 100%;
  padding-top: 25%;
}

.page-header-title {
  margin-top: 0px;
  color: #fff;
  font-size: 52px;
  line-height: 50px;
  font-weight: 900;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.page-header-title.subtitle {
  margin-top: 75px;
  margin-bottom: 0px;
  font-size: 27px;
  line-height: 26px;
  font-weight: 300;
  text-transform: uppercase;
}

.page-header-title.top {
  letter-spacing: 1px;
}

.page-header-container.centered {
  text-align: center;
}

.page-header-container.always-centered {
  text-align: center;
}

.contact-form {
  display: block;
  width: 600px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding: 25px;
  border-radius: 4px;
  background-color: transparent;
}

.field {
  height: 50px;
  margin-bottom: 6px;
  border-style: solid;
  border-width: 2px;
  border-color: hsla(0, 0%, 100%, .2);
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: background-color 200ms ease, border 400ms ease;
  transition: background-color 200ms ease, border 400ms ease;
  font-family: Raleway, sans-serif;
  color: #000;
}

.field:hover {
  border-color: #000;
  background-color: #fff;
}

.field:focus {
  border-color: #26acc7;
  box-shadow: 0 0 23px 0 rgba(0, 0, 0, .6);
}

.field.area {
  height: 170px;
  padding-top: 12px;
}

.info-image {
  position: relative;
  left: 42px;
  top: 0px;
  bottom: 0px;
  max-width: 80%;
  border-radius: 40px;
}

.info-image._2 {
  left: -30px;
}

.info-image._1 {
  left: 75px;
  top: -80px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.info-image._1._2 {
  top: 29px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.info-column-left {
  padding-right: 100px;
}

.info-image-block {
  position: absolute;
  top: -35px;
  right: -80px;
  z-index: 20;
  width: 625px;
}

.info-tooltip-block {
  position: absolute;
  left: 0px;
  top: 106px;
}

.info-tooltip-block._2 {
  left: auto;
  top: 180px;
  right: 0px;
  display: none;
  text-align: right;
}

.info-tooltip-line {
  position: relative;
  width: 200px;
  height: 2px;
  background-color: #e31064;
}

.info-tooltip-line._2 {
  width: 260px;
}

.info-tooltip-circle {
  position: absolute;
  top: -9px;
  right: 0px;
  width: 20px;
  height: 20px;
  border: 4px solid #e31064;
  border-radius: 100%;
  background-color: #fff;
}

.info-tooltip-circle.left {
  left: 0px;
  top: -9px;
  right: auto;
}

.info-tooltip-text {
  margin-bottom: 7px;
  font-family: Raleway, sans-serif;
  font-weight: 700;
}

.testimonial-block {
  position: relative;
  min-height: 120px;
  margin-top: 13px;
  padding-top: 27px;
  padding-left: 125px;
  border-top: 1px solid rgba(0, 0, 0, .09);
  opacity: 1;
}

.testimonial-image {
  position: absolute;
  left: 0px;
  top: 23px;
  width: 90px;
  height: 90px;
  border: 3px solid #fff;
  border-radius: 100%;
}

.testimonial-name {
  display: inline-block;
  margin-top: 9px;
  font-family: Raleway, sans-serif;
  font-weight: 800;
}

.testimonial-name.title {
  margin-left: 17px;
  font-weight: 300;
}

.footer-column {
  text-align: left;
}

.footer-link {
  color: #919191;
}

.footer-link:hover {
  color: #fff;
}

.footer-title {
  margin-bottom: 35px;
  opacity: 1;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 21px;
  font-weight: 200;
}

.footer-list-item {
  margin-bottom: 6px;
}

.footer-list-text {
  font-family: Raleway, sans-serif;
  color: #c9c9c9;
}

.photo-section {
  background-image: url('../images/Photo-1.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.photo-section-overlay {
  padding-top: 145px;
  padding-bottom: 145px;
  background-color: rgba(0, 0, 0, .58);
  color: #fff;
}

.content-features-row {
  margin-bottom: 30px;
}

.content-features-column {
  margin-bottom: 20px;
}

.features-block {
  position: relative;
  padding-top: 4px;
  padding-left: 44px;
}

.feature-icon {
  position: absolute;
  left: -11px;
  top: -12px;
  height: 50px;
}

.feature-block-title {
  margin-bottom: 7px;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.feature-paragraph {
  font-family: Raleway, sans-serif;
  color: #313131;
}

.facts-section {
  display: none;
  padding-top: 55px;
  padding-bottom: 55px;
  background-color: #ebebeb;
}

.facts-column {
  -webkit-transition: color 350ms ease;
  transition: color 350ms ease;
  color: #1c1c1c;
  text-align: center;
}

.facts-column:hover {
  color: #e31064;
}

.facts-title {
  font-family: Raleway, sans-serif;
  font-size: 44px;
  line-height: 38px;
  font-weight: 900;
}

.facts-title.description {
  margin-top: 14px;
  color: #737373;
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
}

.clients-title {
  margin-bottom: 17px;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.clients-col-left {
  padding-right: 25px;
}

.clients-col-right {
  display: block;
  padding-left: 25px;
}

.hero-buttons-wrapper {
  margin-top: 25px;
}

.contact-map {
  width: 600px;
  margin-top: 25px;
}

.success-bg {
  padding-top: 16px;
  border-radius: 60px;
  background-color: #26acc7;
  color: #fff;
  text-align: center;
}

.error-bg {
  padding-top: 16px;
  border-radius: 50px;
  color: #e31064;
  text-align: center;
}

.small-link-icon {
  height: 20px;
  margin-top: 12px;
  margin-right: 8px;
  float: left;
}

.navbar-container {
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, .25);
}

.callout-text {
  margin-top: 21px;
  font-size: 24px;
  line-height: 32px;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.featureblocks {
  height: 200px;
}

.dictionary {
  color: #242424;
}

.analytics-slide {
  position: relative;
  max-width: 140%;
}

.container-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.iiot-explainers {
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 15px;
}

.video-container {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
}

.dropdown-bg.w--open {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: rgba(0, 0, 0, .25);
}

.dropdown-link {
  color: hsla(0, 0%, 100%, .65);
}

.dropdown-link:hover {
  color: #fff;
}

.text-block {
  color: hsla(0, 0%, 100%, .65);
  text-decoration: none;
}

.button-2 {
  margin-top: 20px;
}

.text-block-2 {
  font-family: Raleway, sans-serif;
  line-height: 22px;
}

.corptext {
  font-size: 18px;
  line-height: 30px;
}

.corptext.callout {
  margin: 10px 40px 20px;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
}

.dropdown-toggle {
  padding: 0px;
}

.video-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.header-logo {
  margin-top: 9px;
}

.spacer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.div-block {
  padding-right: 50px;
  padding-left: 50px;
}

html.w-mod-js *[data-ix=hero-title] {
  opacity: 0;
}

html.w-mod-js *[data-ix=hero-title-2] {
  opacity: 0;
  -webkit-transform: translate(-20px, 0px);
  -ms-transform: translate(-20px, 0px);
  transform: translate(-20px, 0px);
}

html.w-mod-js *[data-ix=hero-title-3] {
  opacity: 0;
  -webkit-transform: translate(-20px, 0px);
  -ms-transform: translate(-20px, 0px);
  transform: translate(-20px, 0px);
}

html.w-mod-js *[data-ix=hero-title-4] {
  opacity: 0;
  -webkit-transform: translate(-20px, 0px);
  -ms-transform: translate(-20px, 0px);
  transform: translate(-20px, 0px);
}

html.w-mod-js *[data-ix=hero-title-5] {
  opacity: 0;
  -webkit-transform: translate(-20px, 0px);
  -ms-transform: translate(-20px, 0px);
  transform: translate(-20px, 0px);
}

html.w-mod-js *[data-ix=hero-title-6] {
  opacity: 0;
  -webkit-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
}

html.w-mod-js *[data-ix=hero-button] {
  opacity: 0;
  -webkit-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
}

html.w-mod-js *[data-ix=hero-button-2] {
  opacity: 0;
  -webkit-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
}

html.w-mod-js *[data-ix=hero-image] {
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate(50px, 0px);
}

html.w-mod-js *[data-ix=hero-image-2] {
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate(50px, 0px);
}

html.w-mod-js *[data-ix=hero-image-3] {
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate(50px, 0px);
}

html.w-mod-js *[data-ix=model-title-slide] {
  opacity: 0;
  -webkit-transform: translate(20px, 0px);
  -ms-transform: translate(20px, 0px);
  transform: translate(20px, 0px);
}

html.w-mod-js *[data-ix=model-title-slide-2] {
  opacity: 0;
  -webkit-transform: translate(20px, 0px);
  -ms-transform: translate(20px, 0px);
  transform: translate(20px, 0px);
}

html.w-mod-js *[data-ix=testimonial-image] {
  opacity: 0.4;
}

html.w-mod-js *[data-ix=page-title] {
  opacity: 0;
  -webkit-transform: translate(0px, -20px);
  -ms-transform: translate(0px, -20px);
  transform: translate(0px, -20px);
}

html.w-mod-js *[data-ix=page-title-2] {
  opacity: 0;
  -webkit-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
}

html.w-mod-js *[data-ix=fade-in-on-load] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix=fade-in-on-load-2] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix=fade-in-on-load-3] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix=fade-in-on-load-4] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix=fade-in-on-load-5] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix=fade-on-scroll] {
  opacity: 0.02;
  -webkit-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
}

html.w-mod-js *[data-ix=fade-on-scroll-right] {
  opacity: 0.02;
  -webkit-transform: translate(30px, 0px);
  -ms-transform: translate(30px, 0px);
  transform: translate(30px, 0px);
}

html.w-mod-js *[data-ix=stats-fade-in] {
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
}

html.w-mod-js *[data-ix=stats-fade-in-2] {
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
}

html.w-mod-js *[data-ix=stats-fade-in-3] {
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate(50px, 0px);
}

html.w-mod-js *[data-ix=stats-fade-in-4] {
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate(50px, 0px);
}

html.w-mod-js *[data-ix=process-bar-fill-70] {
  width: 0%;
}

html.w-mod-js *[data-ix=process-bar-fill-50] {
  width: 0%;
}

html.w-mod-js *[data-ix=process-bar-fill-30] {
  width: 0%;
}

@media (max-width: 991px) {
	
	.dropdownGlobalStyle-content {position:relative;background:#130d1f;}	
	
  .navbar {
    padding-right: 45px;
    padding-left: 45px;
  }
  .hero {
    height: 570px;
  }
  .hero-container {
    padding-top: 124px;
  }
  .hero-text-block {
    width: 400px;
  }
  .hero-title {
    font-size: 17px;
  }
  .hero-title.title-2 {
    font-size: 23px;
    line-height: 27px;
  }
  .hero-title.word {
    font-size: 47px;
  }
  .hero-image {
    top: 87px;
    right: -190px;
    max-width: 70%;
  }
  .hero-image.macbook {
    top: 117px;
    right: -318px;
    height: 390px;
  }
  .hero-image.phone-white {
    top: 159px;
    height: 370px;
  }
  .hero-overlay {
    padding-right: 45px;
    padding-left: 45px;
  }
  .section {
    overflow: hidden;
    padding: 45px;
  }
  .section.tint.edgecomputing {
    padding-top: 73px;
    padding-bottom: 73px;
  }
  .section.products {
    height: 360px;
  }
  .section-title-block.testimonials {
    margin-bottom: 30px;
  }
  .section-title {
    margin-bottom: 3px;
    font-size: 35px;
  }
  .section-title.subtitle {
    font-size: 19px;
    line-height: 17px;
  }
  .brand-logo {
    width: 11.5%;
    margin-right: 1%;
    margin-left: 1%;
  }
  .nav-link {
    width: 100%;
    max-width: 900px;
    padding-left: 25px;
    -webkit-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
    font-size: 15px;
  }
  .nav-link:hover {
    background-color: #26acc7;
  }
  .nav-link.dropdown {
    padding-left: 0px;
  }
  .nav-link.dropdown.w--current {
    padding-left: 0px;
  }
  .intro-row {
    margin-bottom: 32px;
  }
  .image-section-overlay {
    padding-right: 45px;
    padding-left: 45px;
  }
  .image-section-overlay._2 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .large-phone-mockup {
    left: -75px;
    top: -115px;
    height: 674px;
  }
  .feature-block {
    padding: 15px;
  }
  .column-title.subtitle.center {
    font-size: 18px;
    line-height: 20px;
  }
  .large-column-title {
    font-size: 35px;
    line-height: 34px;
  }
  .models-text-block {
    width: 40%;
  }
  .models-slider {
    top: 39px;
    right: -15px;
    width: 400px;
    height: 190px;
  }
  .model-image {
    height: 190px;
  }
  .model-slider-title {
    bottom: 65px;
    font-size: 17px;
  }
  .model-slider-title.subtitle {
    bottom: 30px;
    margin-top: 4px;
    font-size: 12px;
  }
  .page-header {
    background-position: 100% 0px;
  }
  .page-header-overlay {
    padding: 160px 45px 70px;
  }
  .page-header-overlay._404-page {
    padding-top: 26%;
  }
  .page-header-title {
    font-size: 45px;
    line-height: 38px;
  }
  .page-header-title.subtitle {
    font-size: 25px;
  }
  .page-header-content-container {
    margin-top: 45px;
  }
  .column-left {
    padding-right: 45px;
  }
  .info-image._2 {
    left: 40px;
    max-width: 80%;
  }
  .info-image._1 {
    left: -16px;
    top: -14px;
    height: 370px;
  }
  .info-image-block {
    top: -4px;
    right: -100px;
    width: 535px;
    text-align: center;
  }
  .info-tooltip-block {
    text-align: left;
  }
  .info-tooltip-block._2 {
    right: 70px;
  }
  .info-tooltip-line._2 {
    width: 200px;
  }
  .menu-button {
    width: 60px;
    height: 60px;
    padding-top: 17px;
    padding-right: 0px;
    padding-left: 0px;
    border-style: solid;
    border-width: 2px;
    border-color: hsla(0, 0%, 100%, .49);
    border-radius: 4px;
    -webkit-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
    color: #fff;
    text-align: center;
  }
  .menu-button:hover {
    background-color: #fff;
    color: #e31064;
  }
  .menu-button.w--open {
    background-color: #26acc7;
  }
  .nav-menu {
    background-color: #000;
  }
  .footer-row {
    padding-right: 25px;
    padding-left: 25px;
  }
  .photo-section-overlay {
    padding: 90px 45px;
  }
  .facts-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .facts-title.description {
    font-size: 16px;
  }
  .clients-title {
    font-size: 21px;
  }
  .clients-col-left {
    padding-right: 18px;
  }
  .clients-col-right {
    top: 212px;
  }
  .contact-map {
    width: auto;
  }
  .navbar-container {
    height: 60px;
  }
  .callout-text {
    line-height: 29px;
  }
  .dropdown-link {
    padding-left: 45px;
    -webkit-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
  }
  .dropdown-link:hover {
    background-image: -webkit-linear-gradient(270deg, #26acc7, #26acc7);
    background-image: linear-gradient(180deg, #26acc7, #26acc7);
  }
  .text-block {
    color: hsla(0, 0%, 100%, .65);
    text-align: left;
  }
  .corptext {
    font-size: 17px;
    line-height: 28px;
  }
  .corptext.callout {
    margin: 6px 39px 10px;
    font-size: 20px;
    line-height: 25px;
  }
  .dropdown-toggle {
    padding: 0px;
  }
  .link-block {
    text-decoration: none;
  }
  .header-logo {
    height: 40px;
  }
  .div-block {
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 15px 25px;
  }
  .hero {
    height: 560px;
  }
  .hero-container {
    padding-top: 102px;
  }
  .hero-text-block {
    width: 50%;
  }
  .hero-title {
    font-size: 3vw;
    line-height: 5vw;
  }
  .hero-title.title-2 {
    margin-bottom: 5px;
    font-size: 3vw;
    line-height: 3vw;
  }
  .hero-title.word {
    font-size: 6vw;
    line-height: 5vw;
  }
  .hero-button {
    width: 100%;
    margin-top: 5px;
    margin-right: 0px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .hero-image {
    right: -150px;
    max-width: 85%;
  }
  .hero-image.macbook {
    top: 127px;
    right: -246px;
    height: auto;
  }
  .hero-image.phone-white {
    height: 281px;
  }
  .hero-overlay {
    padding-right: 25px;
    padding-left: 25px;
  }
  .section {
    padding: 25px;
  }
  .section.products {
    height: auto;
    padding-bottom: 0px;
  }
  .section-title-block.testimonials {
    margin-bottom: 15px;
  }
  .section-title {
    font-size: 6vw;
    line-height: 6vw;
  }
  .section-title.subtitle {
    font-size: 3vw;
    line-height: 6vw;
  }
  .brand-logo {
    margin-left: -6%;
    font-size: 23px;
  }
  .logo-container {
    top: 9px;
    padding-top: 0px;
    padding-left: 0px;
  }
  .intro-column {
    padding-bottom: 25px;
  }
  .intro-column.last {
    padding-bottom: 0px;
  }
  .image-section-overlay {
    padding: 25px;
  }
  .large-phone-mockup {
    position: relative;
    left: 20%;
    top: -38px;
    width: 100%;
    height: auto;
    max-width: 60%;
  }
  .feature-column {
    padding-right: 10px;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .feature-column.last {
    padding-bottom: 0px;
  }
  .footer {
    padding-top: 25px;
  }
  .column-title {
    font-size: 6vw;
    line-height: 6vw;
  }
  .large-column-title {
    font-size: 6vw;
    line-height: 6vw;
  }
  .models-text-block {
    position: static;
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  .models-slider {
    position: relative;
    top: 0px;
    right: 0px;
    display: block;
    width: 100%;
    float: none;
  }
  .model-image {
    width: auto;
    height: auto;
  }
  .page-header._404-page {
    height: auto;
  }
  .page-header-overlay {
    padding: 100px 25px 45px;
  }
  .page-header-overlay._404-page {
    padding: 100px 25px 25px;
  }
  .page-header-title {
    font-size: 6vw;
    line-height: 6vw;
  }
  .page-header-title.subtitle {
    font-size: 3vw;
    line-height: 4vw;
  }
  .page-header-container.centered {
    text-align: left;
  }
  .page-header-content-container {
    margin-top: 25px;
  }
  .contact-form {
    width: 100%;
    padding: 0px;
  }
  .field {
    height: 42px;
    margin-bottom: 5px;
  }
  .column-left {
    padding-right: 0px;
    padding-left: 0px;
  }
  .column-right {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .info-image._2 {
    left: -7px;
  }
  .info-image._1 {
    left: -2px;
    top: -30px;
  }
  .info-image._1._2 {
    margin-bottom: 54px;
  }
  .info-column-left {
    padding-right: 0px;
    padding-left: 0px;
  }
  .info-image-block {
    position: static;
    width: 100%;
  }
  .testimonial-block {
    padding-top: 19px;
  }
  .menu-button {
    width: 50px;
    height: 50px;
    padding-top: 12px;
  }
  .footer-row {
    padding-right: 0px;
    padding-left: 0px;
  }
  .footer-column {
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
  }
  .footer-title {
    margin-bottom: 15px;
  }
  .photo-section-overlay {
    padding: 25px;
  }
  .content-features-row {
    margin-bottom: 0px;
  }
  .content-features-column {
    padding-right: 0px;
    padding-bottom: 9px;
    padding-left: 0px;
  }
  .features-block {
    padding-top: 1px;
    padding-left: 43px;
  }
  .facts-section {
    padding: 25px;
  }
  .facts-column {
    padding-right: 25px;
    padding-bottom: 9px;
    padding-left: 0px;
    text-align: left;
  }
  .facts-column.last {
    padding-bottom: 0px;
  }
  .facts-title {
    display: inline-block;
    width: 97px;
    margin-right: 22px;
    padding-bottom: 6px;
    float: left;
    border-radius: 2px;
    background-color: #292828;
    color: #fff;
    font-size: 36px;
    line-height: 33px;
    text-align: center;
  }
  .facts-title.description {
    width: auto;
    margin-top: 7px;
    margin-right: 0px;
    padding-bottom: 0px;
    background-color: transparent;
  }
  .clients-col-left {
    padding-right: 0px;
    padding-bottom: 25px;
    padding-left: 0px;
  }
  .clients-col-right {
    top: 2px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .hero-buttons-wrapper {
    margin-top: 16px;
  }
  .contact-map {
    height: 300px;
  }
  .navbar-container {
    height: 50px;
  }
  .callout-text {
    font-size: 21px;
    line-height: 25px;
  }
  .featureblocks {
    height: 170px;
  }
  .corptext.callout {
    margin-right: 30px;
    margin-left: 30px;
    font-size: 19px;
    line-height: 28px;
  }
  .div-block {
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (max-width: 479px) {
  p {
    font-size: 13px;
    line-height: 18px;
  }
  .navbar {
    padding-left: 20px;
  }
  .hero {
    height: 400px;
    background-position: 100% 0px;
  }
  .hero-container {
    padding-top: 84px;
  }
  .hero-text-block {
    width: 60%;
  }
  .hero-title {
    line-height: 34px;
  }
  .hero-title.title-2 {
    margin-top: 11px;
    margin-bottom: -14px;
    font-size: 4vw;
    line-height: 17px;
  }
  .hero-button {
    padding-left: 15px;
  }
  .hero-image {
    top: 115px;
    right: -80px;
    max-width: 130%;
  }
  .hero-image.macbook {
    top: 130px;
    right: -150px;
    height: auto;
  }
  .hero-image.phone-white {
    top: 150px;
    right: -95px;
    height: 180px;
  }
  .section {
    padding: 20px;
  }
  .section-title-block {
    margin-bottom: 7px;
  }
  .section-title {
    font-size: 7vw;
    line-height: 7vw;
  }
  .section-title.subtitle {
    font-size: 4vw;
    line-height: 4vw;
  }
  .brand-logo {
    position: relative;
    left: 2px;
    top: 3px;
    width: 27.5%;
    margin-right: 2%;
    margin-left: -40%;
    font-size: 17px;
  }
  .section-divider-line.feature-divider {
    margin-top: 7px;
  }
  .section-divider-line.models-divider {
    margin-top: 9px;
    margin-bottom: 9px;
  }
  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    font-size: 14px;
  }
  .logo-container {
    top: 6px;
  }
  .logo-container.w--current {
    top: 7px;
  }
  .intro-column {
    padding-bottom: 15px;
  }
  .intro-column-title {
    font-size: 22px;
    line-height: 21px;
  }
  .intro-icon {
    height: 45px;
    margin-bottom: 13px;
  }
  .link.below-paragraph {
    margin-top: 8px;
    font-size: 12px;
  }
  .link.footer-link {
    font-size: 13px;
    line-height: 19px;
  }
  .image-section-overlay {
    overflow: hidden;
  }
  .large-phone-mockup {
    margin-top: 20px;
  }
  .column-title-block {
    margin-bottom: 14px;
  }
  .check-list-icon {
    width: 18px;
  }
  .check-list-item {
    margin-bottom: 7px;
  }
  .checklist-title {
    font-size: 12px;
    line-height: 13px;
  }
  .feature-title {
    line-height: 12px;
  }
  .feature-title.subtitle {
    line-height: 22px;
  }
  .feature-column {
    padding-right: 0px;
    padding-bottom: 15px;
    padding-left: 0px;
  }
  .features-row {
    margin-top: 19px;
  }
  .column-title.subtitle {
    margin-bottom: 5px;
    font-size: 5vw;
    line-height: 6vw;
  }
  .column-title.subtitle.center {
    font-size: 14px;
    line-height: 16px;
  }
  .model-image {
    height: auto;
  }
  .model-image.iphone {
    width: auto;
    height: auto;
  }
  .model-slider-title {
    font-size: 15px;
  }
  .model-slider-title.subtitle {
    font-size: 10px;
  }
  .page-header-overlay {
    padding: 75px 20px 26px;
  }
  .page-header-overlay.contact {
    padding-top: 100px;
  }
  .page-header-title {
    margin-bottom: 6px;
  }
  .page-header-title.subtitle {
    margin-top: 45px;
    font-size: 3.5vw;
    line-height: 4vw;
  }
  .page-header-content-container {
    margin-top: 25px;
  }
  .field {
    height: 36px;
    font-size: 12px;
  }
  .field.area {
    height: 116px;
  }
  .info-image._1 {
    left: 1px;
    top: -27px;
    height: 260px;
    max-width: 150%;
    border-radius: 0px;
  }
  .info-image._1._2 {
    border-radius: 40px;
  }
  .testimonial-block {
    margin-top: 17px;
    padding-top: 14px;
    padding-left: 0px;
  }
  .testimonial-image {
    position: static;
    margin-bottom: 14px;
  }
  .menu-button {
    width: 40px;
    height: 40px;
    padding-top: 7px;
  }
  .footer-list-text {
    font-size: 13px;
  }
  .facts-section {
    padding: 20px;
  }
  .facts-title {
    margin-right: 14px;
    font-size: 27px;
  }
  .facts-title.description {
    font-size: 14px;
  }
  .clients-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .clients-col-right {
    top: 7px;
  }
  .checklist-column-right {
    padding-right: 0px;
    padding-left: 0px;
  }
  .contact-map {
    height: 260px;
  }
  .small-link-icon {
    margin-top: 3px;
    margin-right: 6px;
  }
  .navbar-container {
    height: 40px;
  }
  .headerlogo {
    max-width: 80%;
  }
  .callout-text {
    font-size: 16px;
    line-height: 20px;
  }
  .button-2 {
    margin-top: 30px;
  }
  .corptext {
    font-size: 14px;
    line-height: 22px;
  }
  .corptext.callout {
    margin: 5px 0px 10px;
    font-size: 16px;
    line-height: 23px;
  }
  .header-logo {
    height: 35px;
    margin-top: 3px;
  }
}

</pre></body></html>