/*======================
  Tricentric Stylesheet
======================*/
body {
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 1.1em;
  color: #333;
  background-color: rgb(253,253,253);
}

.home {
  padding-bottom: 270px;
  background-color: rgb(253,253,253);
  position: relative;
  background-image: url('/assets/images/geo.png');
  background-position: 100% 50%;
}

h4, h5 {
  font-weight: 500;
  color: #00A9DC;
}

h5 {
  margin-top: 30px;
}

h6 {
  font-size: 1.1em;
  color: #333;
}

select:hover,
.checkbox label input:hover {
  cursor: pointer;
}

.subheader-wrapper {
  position: absolute;
  background-color: rgba(0,0,0,.6);
  width: 100%;
  height: 100%;
}

.subheader {
  position: relative;
  background-image: url('/assets/images/testlab.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 44%;
  text-align: center;
  height: 110px;
}

.subheader img {
  margin: 0 auto;
  padding-top: 30px;
  display: block;
  position: relative;
}

a.home-card {
  margin: 45px auto;
  padding: 30px 0;
  width: 30%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(199,199,199,0.16), 0 3px 6px rgba(199,199,199,0.23);
  transition: .2s;
}

a.home-card:hover {
  transform: translateY(-2px);
}

a.home-card span {
  margin: 0 auto;
  padding: 5px 30px;
  background-color: #00A9DC;
  display: block;
  width: 50%;
  color: #fff;
  border-radius: 2px;
  font-weight: 500;
  font-size: .8em;
}

.fa-wpforms {
  margin: 20px 0;
  color: #333;
  font-size: 1.8em;
}

.asterisk {
  float: right;
  color: #333;
  font-weight: 400;
  font-size: .7em;
}

.fa-asterisk {
  font-size: 8px;
  vertical-align: top;
}

.header {
  background-color: #00A9DC;
  padding: 30px;
  box-shadow: 0 3px 6px rgba(100,100,100,0.16), 0 3px 6px rgba(100,100,100,0.23);
}

.secondary-header {
  margin: 30px auto;
}

.secondary-header h4 {
  margin: 30px auto;
}

.product-detail {
  margin-bottom: 15px;
}

.form-control-lg {
  font-size: 1em !important;
}

.submit-button {
  margin: 60px auto !important;
  display: block !important;
  text-align: center;
}

.btn-primary {
  background-color: #00A9DC !important;
  transition: .2s !important;
}

.success-card {
  padding: 60px 30px;
  background: #fff;
  border: 2px solid rgb(240,240,240);
  border-radius: 4px;
}

.marketing-kit,
.privacy {
  padding: 15px 30px;
  border-radius: 3px;
  background: rgb(249,249,249);
}

.footer-home {
  padding: 45px 0 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 270px;
  background-color: rgb(245,245,245);
}

.footer {
  margin-top: 90px;
  height: 50px;
  width: 100%;
  background-color: #00A9DC;
}

/*======================
  Fade In (on page load)
======================*/

/* Trigger */
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animateTwo {
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* FADE IN UP */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@media only screen and (min-width : 800px) {
  form.support {
    margin: 0 auto;
    width: 65%;
  }
}

@media only screen and (max-width : 800px) {
  a.home-card {
    margin: 15px auto;
    width: 90%;
  }
}
