/*!
 * SNOW Landing Page Theme
 *
 * Created by Visual Soldiers
 * Visit us at http://www.visualsoldiers.com
 *
 * Handcrafted with love in Atlanta!
 */


/* ==========================================================================
   FONTS
   ========================================================================== */
@font-face {
    font-family: 'montserratbold';
    src: url('../fonts/montserrat-bold.woff2') format('woff2'),
         url('../fonts/montserrat-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratlight';
    src: url('../fonts/montserrat-light.woff2') format('woff2'),
         url('../fonts/montserrat-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratregular';
    src: url('../fonts/montserrat-regular.woff2') format('woff2'),
         url('../fonts/montserrat-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



/* ==========================================================================
   Global styles
   ========================================================================== */
body {
  color: black;
  font-family: 'montserratregular', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}
strong {
  font-family: 'montserratbold', Helvetica, Arial, sans-serif;
}
em {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  color: inherit;
}
h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

* + p {
  margin-top: 1.5em;
}

a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  -moz-transition:    400ms ease all;
  -o-transition:      400ms ease all;
  -webkit-transition: 400ms ease all;
  transition:         400ms ease all;
  zoom: 1;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}
img {
  height: auto;
  max-width: 100%;
}
.lead {
  color: #ffffff;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 20px;
    line-height: 1.5;
  }
}
.text-white {
  color: white;
}
.font-bold {
  font-family: 'montserratbold', Helvetica, Arial, sans-serif;
}
.font-light {
  font-family: 'montserratlight', Helvetica, Arial, sans-serif;
}
.relative {
  position: relative;
}
.display-table {
    display: table;
    height: 100%;
    min-height: inherit;
    width: 100%;
}
.display-table .display-cell {
    display: table-cell;
    float: none;
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .display-table.medium-block .display-cell {
    display: block !important;
  }
}
.zoom {
  -moz-transition:    200ms ease all;
  -o-transition:      200ms ease all;
  -webkit-transition: 200ms ease all;
  transition:         200ms ease all;
  zoom: 1;
}
.zoom:hover {
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.window-height {
  height: 100vh;
  min-height: 600px;
}
.window-height-80 {
  height: 80vh;
  min-height: 480px;
}
@media screen and (max-width: 767px) {
  .window-height, .window-height-80 {
    height: auto !important;
    min-height: 0 !important;
  }
}

/*------------------Utilities---------------------*/


.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -10%;
}

::selection {
	background: #231f20; /* Safari */
	color: #FFFFFF;
}
::-moz-selection {
	background: #231f20; /* Firefox */
	color: #FFFFFF;
}


/*------------------Buttons---------------------*/
.btn:focus {
  outline: 0px auto -webkit-focus-ring-color;
  outline: none;
}

.btn {
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
}

.btn-lg {
  font-size: 13px;
  line-height: 1.33;
  padding: 22px 30px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 480px) { 
  .btn-lg {
    font-size: 12.5px;
    line-height: 1.33;
    padding: 16px 13px;
    letter-spacing: 0px;
  }
}

.btn-sm {
  font-size: 11px;
  line-height: 1.33;
  padding: 10px 18px;
  font-weight: 400;
}

.btn-wide {
  width: 100%;
  font-size: 13px;
  line-height: 1.33;
  padding: 18px 28px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 480px) { 
  .btn-wide {
    width: 100%;
    font-size: 12.5px;
    line-height: 1.33;
    padding: 16px 13px;
    letter-spacing: 0px;
  }
}

.btn-primary {
  background-color:#70cbce;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: #8be2e5;
  color: #ffffff;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn-secondary {
  background-color: #ffffff;
  color: #231f20;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
  background-color: #ededed;
  color: #231f20;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}




/*-----------------Margins------------------*/
.margin-0 {
    margin-bottom: 0 !important;
}
.margin-10 {
    margin-bottom: 10px !important;
}
.margin-15 {
    margin-bottom: 15px !important;
}
.margin-20 {
    margin-bottom: 20px !important;
}
.margin-30 {
    margin-bottom: 30px !important;
}
.margin-40 {
    margin-bottom: 40px !important;
}
.margin-50 {
    margin-bottom: 50px !important;
}
.margin-60 {
    margin-bottom: 60px !important;
}
.margin-70 {
    margin-bottom: 70px !important;
}
.margin-80 {
    margin-bottom: 80px !important;
}
.margin-90 {
    margin-bottom: 90px !important;
}
.margin-100 {
    margin-bottom: 100px !important;
}


/*-----------------Colors------------------*/

.black {
  color: #231f20;
}

.blue {
  color: #70cbce;
}

.white {
  color: #ffffff;
}

.black-bg {
  background: #231f20;
}

.blue-bg {
  background: #70cbce;
}

.white-bg {
  background: #ffffff;
}

.purple-bg {
	background: #6d3f96;
}



/* ==========================================================================
   Nav Styles
   ========================================================================== */

.navbar {
    border: none;
    background: rgba(21, 21, 53, 0.8);
    margin: auto;
    height: 50px;
    padding: 0;
    position: fixed;
    top: -50px;
    -webkit-transition: 400ms ease top;
    -moz-transition: 400ms ease top;
    -o-transition: 400ms ease top;
    transition: 400ms ease top;
}

.navbar.open {
    top: 0;
}

.navbar-wrap {
  height: 50px;
  padding: 5px 0;
}

.navbar-inverse .navbar-nav > li > a, .navbar-wrap a {
    color: inherit;
    font-size: 14px;
    letter-spacing: 1px;
}

.navbar-inverse .navbar-nav > li > a:hover {
    color: inherit;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 10px;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #003A5C;
}

.navbar-inverse .navbar-toggle {
    border-color: transparent;
}

.logo img {
	margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .logo img {
    margin: -2px 0 0 15px;
  }
}
.social-links {
  display: inline-block;
  list-style: none;
  margin: 0 auto;
  padding: 0 1em 0 0;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .social-links {
    padding: 0;
  }
  .navbar .social-links {
    display: none;
  }
}
.social-links li {
  display: inline-block;
  padding: 0 5px;
}
.social-links a {
  color: white;
  display: inline-block;
  font-size: 1.1em;
  padding: 0.25em 0.4em;
  text-align: center;
  -webkit-transition: 500ms ease opacity;
  -moz-transition: 500ms ease opacity;
  -o-transition: 500ms ease opacity;
  transition: 500ms ease opacity;
}
.social-links a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.social-links a i {
  line-height: inherit;
}


/* ==========================================================================
   Main styles
   ========================================================================== */


/*------------------Header---------------------*/

header {
  background: url('../img/bg-first-fold.png') no-repeat center bottom #26275E;
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
    min-height: 0;
    padding: 0em 0 4em;
  }
  .header-nav .navbar-nav {
    margin: 2px 0 0;
  }
}

@media screen and (min-width: 768px) {
  header .window-height {
    min-height: 780px;
  }
}

.header-nav-wrap {
  left: 0;
  margin: 2em 0 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header-nav-wrap {
    margin-top: 1em;
  }
}
.header-nav-wrap .social-links {
  margin: 0 -5px;
  padding: 0;
  display: inline-block;
}
.header-nav-wrap .social-links a {
  border: 1px solid white;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  font-size: 1.1em;
  height: 2em;
  line-height: 1.55em;
  width: 2em;
}
@media screen and (max-width: 480px) {
  .header-nav-wrap .social-links a {
    font-size: 0.9em;
    margin: 4px 0 0px;
  }
}

header h1 {
  margin: 0;
}
header .featured-img {
  margin: auto;
  max-width: 47%;
}
@media screen and (max-width: 767px) {
  header .featured-img {
    max-width: 70%;
  }
}
@media screen and (max-width: 480px) {
  header .featured-img {
    max-width: 100%;
  }
}

header .featured-img img {
  height: auto;
  margin-top: -6.5em;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  header .featured-img img {
    margin-top: -2em;
  }
}
@media screen and (max-width: 640px) {
  header .featured-img img {
    margin-top: -2em;
  }
}
@media screen and (max-width: 480px) {
  header .featured-img img {
    margin-top: 4em;
  }
}

.header-info .talk-bubble {
  max-width: 28%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .header-info .talk-bubble.one {
    left: 0;
    top: 14em;
  }
  .header-info .talk-bubble.two {
    right: 0;
    top: 10em;
  }
}
@media screen and (min-width: 1200px) {
  .header-info .talk-bubble.one {
    left: 0;
    top: 7em;
  }
  .header-info .talk-bubble.two {
    top: 14em;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-info .talk-bubble {
    max-width: 30%;
  }
  .header-info .talk-bubble.one {
    left: -1%;
  }
  .header-info .talk-bubble.two {
    right: -1%;
    top: 4em;
  }
}
@media screen and (max-width: 767px) {
  .header-info {
    padding-bottom: 3em;
  }
  .header-info .talk-bubble {
    margin: 0 auto;
    max-width: 75%;
    position: relative;
    top: initial;
    width: 100%;
  }
  .header-info .talk-bubble.two {
    margin-top: 2em;
  }
}
@media screen and (max-width: 480px) {
  .header-info .talk-bubble {
    max-width: 90%;
  }
}

.header-info .talk-bubble .wrap {
  background: rgba(255,255,255,0.12);
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  padding: 0.6em 2em;
  position: relative;
}
@media screen and (max-width: 991px) {
  .header-info .talk-bubble .wrap {
    padding: 0.6em 1em;
  }
}

.header-info .talk-bubble.two .wrap {
  padding: 1.2em 2em;
}
@media screen and (max-width: 991px) {
  .header-info .talk-bubble.two .wrap {
    padding: 1em;
  }
}

.header-info .talk-bubble .wrap:before {
  border-color: rgba(255,255,255,0.12) transparent transparent transparent;
  border-style: solid;
  content: "";
  height: 0;
  margin: -15px -42px 0 0;
  position: absolute;
  top: 25%;
  width: 0;
}
@media screen and (min-width: 768px) {
  .header-info .talk-bubble.one .wrap:before {
    border-width: 22px 42px 0 0;
    margin: 0px -42px 0 0;
    right: 0;
  }
  .header-info .talk-bubble.two .wrap:before {
    border-width: 24px 0 0 40px;
    left: 0;
    margin: 0 0 0 -40px;
  }
}
@media screen and (min-width: 992px) {
  .header-info .talk-bubble.two .wrap:before {
    border-width: 35px 0 0 70px;
    left: 0;
    margin: 0 0 0 -70px;
  }
}
@media screen and (max-width: 767px) {
  .header-info .talk-bubble .wrap:before {
    border-color: transparent transparent rgba(255,255,255,0.12) transparent;
    border-width: 0 0 22px 35px;
    left: 12%;
    margin: -22px 0 0;
    right: auto;
    top: 0;
  }
}

.header-info .talk-bubble p {
  margin: 0;
}
.header-info .talk-bubble.one p {
  font-size: 1.5em;
}
@media screen and (max-width: 480px) {
  .header-info .talk-bubble.one p {
    font-size: 1.2em;
  }
}
.header-info .talk-bubble .small {
  color: inherit;
  font-size: 75%;
  margin-top: 1em;
}

.intro-text {
  padding: 3em 0 2em;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .intro-text {
    padding-top: 6em;
  }
}
.slack-btn a {
  background-color: #282860;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -moz-box-shadow: 0 0 47px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0 0 47px rgba(0,0,0,0.24);
  -o-box-shadow: 0 0 47px rgba(0,0,0,0.24);
  box-shadow: 0 0 47px rgba(0,0,0,0.24);
  display: inline-block;
  font-family: 'montserratlight', Helvetica, Arial, sans-serif;
  font-size: 1.3em;
  padding: 10px 1em 10px 10px;
}
.slack-btn a img {
  margin-right: 10px;
}
.slack-btn a span {
  position: relative;
  top: 2px;
}
.slack-btn a:hover {
  background: white;
  color: black;
}
.intro-text .small {
  color: #957FB2;
  font-size: 0.9em;
  margin: 2em 0 0;
}
.intro-text .small a {
  text-decoration: underline;
}
.intro-text .small a:hover {
  color: white;
}
.rotate {
  color: #f87069;
  display: none;
}



/*------------------Mouse Icon---------------------*/

.mouse-icon {
    border: 2px solid #fff;
    border-radius: 16px;
    display: block;
    height: 50px;
    margin: -100px auto 50px;
    position: relative;
    width: 30px;
    z-index: 10;
}
.mouse-icon .scroll {
    animation-delay: 0s;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: scrolling;
    animation-play-state: running;
    animation-timing-function: linear;
}
.mouse-icon .scroll {
    background: #fff none repeat scroll 0 0;
    border-radius: 10px;
    height: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 4px;
    width: 4px;
}
@keyframes scrolling {
0% {
    opacity: 0;
    filter: alpha(opacity=0);
    top: 5px;
}
30% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 10px;
}
100% {
    opacity: 0;
    filter: alpha(opacity=0);
    top: 25px;
}
}

.pad-xl {
	padding: 200px 0px;
}

.pad-lg {
	padding: 160px 0px;
}

.pad-sm {
	padding: 80px 0px;
}

.pad-xs {
	padding: 30px 0px;
}



/*------------------Parallax Fold---------------------*/
#be-the-first {
  background: url(../img/bg-parallax.png) #23255C no-repeat center bottom fixed;
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  min-height: 300px;
  padding: 11em 0 0;
}
@media screen and (max-width: 991px) {
  #be-the-first {
    padding-top: 8em;
  }
}
.touch #be-the-first {
  background-attachment: scroll;
  -webkit-background-size: 110% auto;
  -moz-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
  background-position: 51% bottom;
}
@media screen and (max-width: 767px) { 
  #be-the-first {
    background-attachment: scroll;
    -webkit-background-size: 110% auto;
    -moz-background-size: 110% auto;
    -o-background-size: 110% auto;
    background-size: 110% auto;
    background-position: 51% bottom;
    padding-top: 4em;
  }
}
@media screen and (max-width: 480px) {
  #be-the-first {
    -webkit-background-size: auto 50%;
    -moz-background-size: auto 50%;
    -o-background-size: auto 50%;
    background-size: auto 50%;
    background-position: 10% bottom;
  }
}

.parallax-text {
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .parallax-text {
    margin-bottom: 3em;
  } 
}

.iphone-section {
  min-height: 18em;
}
@media screen and (max-width: 767px) {
  .iphone-section {
    min-height: 16em;
  }
}
.iphone-section .shadow {
  background: url(../img/bg-parallax-shadow.png) 0 bottom repeat-x transparent;
  bottom: 0;
  height: 363px;
  left: 0;
  position: absolute;
  width: 100%;
}

.iphone {
  position: relative;
  text-align: center;
}
.iphone .iphone-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
}
.iphone .iphone-inner {
  margin-left: -50%;
  width: 200%;
}
.iphone .relative {
  display: inline-block;
  margin: 0 auto;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .iphone .relative {
    max-width: 350px;
  }
}

.iphone .gif-wrap {
  background-color: white;
  background-repeat: no-repeat;
  -webkit-background-size: auto 100%;
  -moz-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  height: 68.3%;
  left: 22.6%;
  position: absolute;
  top: 10.7%;
  width: 54.6%;
}

.iphone .gif-wrap a {
  background: rgba(0,0,0,0.8);
  display: block;
  height: 100%;
  left: 0;
  line-height: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  text-align:center;
  top: 0;
  -webkit-transition: 500ms ease opacity;
  -moz-transition: 500ms ease opacity;
  -o-transition: 500ms ease opacity;
  transition: 500ms ease opacity;
  width: 100%;
}
.iphone .gif-wrap a img {
  margin: auto;
  vertical-align: middle;
  width: 100px;
}
.iphone .gif-wrap a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}




/*------------------MAIN INFO---------------------*/
#main-info {
  overflow: hidden;
  padding: 2em 0 5em;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #main-info .main {
    max-width: 550px;
    margin: auto;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  #main-info .info-row {
    margin: 0 -1.9em;
  }
  #main-info .info-row .single-info {
    padding: 0 1.9em;
  }
}

@media screen and (max-width: 991px) {
  .single-info + .single-info {
    margin-top: 4em;
  }
}

#main-info .icon {
  height: 120px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #main-info .icon {
    height: auto;
  }
}

#main-info .icon img {
  max-height: 100px;
  max-width: 215px;
}

#main-info h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 1em 0 1.5em;
  padding: 0 0 0 2.3em;
  position: relative;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main-info h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #main-info h3 {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #main-info h3 {
    padding: 0;
    margin-top: 1.5em;
  }
}

#main-info h3 span {
  float: left;
  font-size: 3em;
  left: 0;
  line-height: 1;
  margin-top: -4px;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .single-info .text-left {
    text-align: center;
  }
  #main-info h3 span {
    display: block;
    float: none;
    margin: 0;
    position: static;
  }
}

#main-info p {
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  #main-info p {
    font-size: 0.9em;
  }
}




/*------------------VIDEO---------------------*/

.video-row {
  margin-top: 6em;
}
.video-row:before {
  background-color: #d2d2d2;
  content: '';
  display: inline-block;
  height: 1px;
  margin: 0 auto;
  width: 50%;
}
.video-col {
  padding-top: 5em;
}
.video-col h2 {
  margin: 0 0 1em;
}
.video-wrap {
  padding: 56.3% 0 0;
  position: relative;
  width: 100%;
}
.video-wrap iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .video-row {
    margin-top: 4em;
  }
  .video-col {
    padding-top: 3.5em;
  }
  .video-col h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 0.5em;
  }
}




/*------------------PRICING---------------------*/

#support-papio, #custom-pricing {
  background-color: #f4f4f8;
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.prices {
  margin: 6em 0 0;
}
@media screen and (max-width: 991px) {
  .prices {
    margin: 4em 0 0;
  }
}

@media screen and (max-width: 480px) {
  .prices .icon-col, .prices .entry {
    width: 100%;
  }
  .prices .icon-col {
    margin-bottom: 2em;
  }
  .prices .entry {
    text-align: center;
  }
}

.prices h3 {
  line-height: 1.2;
}
.prices h4 {
  line-height: 1.4;
  margin: 0.5em 0 0;
}
.prices p, .prices li {
  font-size: 0.9em;
}
.prices .font-light {
  margin: 1.5em 0 0;
}
.prices ul {
  padding: 1em 0 0;
}
.prices ul li {
  margin: 0.5em 0;
  padding: 0 0 0 2em;
  position: relative;
}
@media screen and (max-width: 480px) {
  .prices ul {
    display: inline-block;
    margin: 0 auto;
    max-width: 300px;
    text-align: left;
  }
}

.prices ul li:before {
  content: '\f06c';
  color: #92c25e;
  display: inline-block;
  float: left;
  font-family: 'FontAwesome';
  left: 0;
  position: absolute;
  top: 2px;
}

.prices .btn {
  background-color: #92c25e;
  padding: 1em 1.5em 0.8em;
  line-height: 1.2;
}
.prices .btn:hover {
  background-color: #698b45;
}

#support-papio .cta, #custom-pricing .cta {
  margin-top: 4em;
}
@media screen and (max-width: 991px) {
  .single-price + .single-price {
    margin-top: 4em;
  }
}



/*------------------FAQ---------------------*/
#faq {
  background: url('../img/bg-green.png') no-repeat top center #92C25E;
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #faq {
    -webkit-background-size: 200% auto;
    -moz-background-size: 200% auto;
    -o-background-size: 200% auto;
    background-size: 200% auto;
  }
}
.faq-title h2 {
  margin: 0 0 0.25em;
}
.faq-title .icon {
  margin: 1.5em 0 0;
}
.segments {
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .segments {
    margin-top: 3em;
  }
}

.segments p {
  font-family: 'montserratlight', Helvetica, Arial, sans-serif;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .segments p {
    font-size: 1.1em;
  }
}

.segments p.regular {
  font-family: inherit;
}
.segments p a {
 text-decoration: underline;
}
.segments p a:hover {
  color: #F8E71C;
}



/*------------------FAQ---------------------*/
footer {
  background: #92C25E;
  margin-top: -1px;
  padding: 1em 0 5em;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0 0 3em;
  }
}
@media screen and (max-width: 480px) {
  footer {
    padding: 0 0 2em;
  }
}

footer p {
  font-size: 0.85em;
  letter-spacing: 0.045em;
}
footer a:hover {
  text-decoration: underline;
}




/*------------------OTHER---------------------*/

#invite {
  background: #f2f2f2;
}
.fa-envelope-o {
  color: #4ec3cd;
  font-size: 22px;
  display: block;
  padding-top: 15px;
  width: 60px;
  height: 60px;
  border: 2px solid #4ec3cd;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  margin: auto;
}
.news-container {
  padding: 10px 0px 20px;
  border-bottom: 1px dotted #d9d9d9;
}

.news-img {
  padding-right: 20px;
}




/*---------------Pricing Tables-------------------*/

#pricing {
  background: #70cbce;
}

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

.pricing-table {
  background: transparent;
  margin-bottom: 50px;
  margin-top: 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.pricing-table.active {
  box-shadow: 0px 0px 12px rgba(41,46,50,0.6); 
  position: absolute;
  margin: auto;
  z-index: 200;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.pricing-table:hover {
  margin-top: -10px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.pricing-table li {
  padding-left: 20px;
  padding-right: 20px;
}

.headline {
  background: #252259;
  color: #FFFFFF;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.price {
    background: none repeat scroll 0 0 #252259;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 20px;
    padding-top: 20px;
}


.pricing-table:hover li.price  {
  background: #252259;
  -webkit-transition: all 0.85s ease-in-out;
  -moz-transition: all 0.85s ease-in-out;
  -o-transition: all 0.85s ease-in-out;
  transition: all 0.85s ease-in-out;
}

.price small {
  font-weight: 300;
  color: #929496;
}

.info {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 13px;
  color: #929496;
  background: #ffffff;
}

.features {
  color: #231f20;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #E8EAEA;
  background: #ffffff
}

.features.first {
  border-top: 1px dotted #E8EAEA;
}

.features.last {
  padding-top: 17px;
  padding-bottom: 20px;
}

.features.last a {
    background: #7AC147;
    padding: .5em 1em;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: 6px;
}

.pricing-container .btn {
    border-radius: 0;
}




/* ==========================================================================
   Form styles
   ========================================================================== */
.form-control {
    background-color: #FFFFFF;
    background-image: none;
    border: 0px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #929496;
    display: block;
    font-size: 15px;
    height: 60px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

.form-control::-moz-placeholder {
    color: #d9d9d9;
    font-size: 15px;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control::-webkit-placeholder, .form-control::-o-placeholder {
    color: #d9d9d9;
    font-size: 15px;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control::-o-placeholder {
    color: #d9d9d9;
    font-size: 15px;
    opacity: 1;
    filter: alpha(opacity=100);
}

