@charset "UTF-8";
/*
Theme Name: Inbox Health
Theme URI: http://thebananaland.com
Description: A custom template for Inbox Health
Version: 1.0
Author: Marcella Kovac / Jordan Rabidou
Author URI: http://www.TheBananaland.com
*/
/*================================================================================
CSS Reset
================================================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
:focus {
  outline: 0;
}
textarea {
  overflow: auto;
  resize: none;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*================================================================================
REMOVE WEBKIT FORM STYLES
================================================================================*/
input, select {
  -webkit-border-radius: 0;
  border-radius: 0;
}
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
input {
  border-radius: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/*================================================================================
Typography
================================================================================*/
body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #626284;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #181832;
}
h1 {
  font-size: 48px;
}
h1.xl {
  font-size: 72px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 32px;
  font-weight: 300;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
p {
  margin: 0 0 15px;
}
p:last-child {
  margin: 0;
}
small {
  font-size: 12px;
}
ul {
  list-style-type: disc;
  margin: 0 0 15px 20px;
}
ol {
  list-style-type: decimal;
  margin: 0 0 15px 20px;
}
li {
  margin: 0 0 5px;
}
li:last-child {
  margin: 0;
}
strong, b {
  font-weight: bold;
}
em {
  font-style: italic;
}
a {
  color: blue;
  text-decoration: underline;
}
i.icon {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
}
i.icon svg {
  width: 100%;
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/*================================================================================
Structure
================================================================================*/
html, body {
  overflow: hidden;
  overflow-y: auto;
}
.col-1-1 {
  width: 100%;
}
.col-1-2, .half {
  width: 50%;
}
.col-4-5 {
  width: 80%;
}
.col-1-3 {
  width: 75%;
}
.col-2-3 {
  width: 66.666666%;
}
.col-3-5 {
  width: 60%;
}
.col-1-2, .half {
  width: 50%;
}
.col-2-5 {
  width: 40%;
}
.col-1-3 {
  width: 33.333333%;
}
.col-1-4 {
  width: 25%;
}
.col-1-5 {
  width: 20%;
}
.clearfix:after {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: table;
  height: 0;
  clear: both;
}
.cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.vcenter {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.grid_container {
  margin: 0px -15px;
}
.grid {
  padding: 15px;
}
.grid_container-small {
  margin: 0px -3px;
}
.grid-small {
  padding: 3px;
}
.grid_container-large {
  margin: -50px;
}
.grid-large {
  padding: 50px;
}
.table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.table_row {
  display: table-row;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.font_18 {
  font-size: 18px;
}
/**************************
CUSTOM CSS CLASSES
**************************/
.show_tablet {
  display: none;
}
.show_mobile {
  display: none;
}
.hide_desktop {
  display: none;
}
.alignleft {
  float: left;
  display: inline;
  /* IE6 fix */
  padding: 0 1em 0.5em 0;
  text-align: left;
}
.aligncenter {
  display: block;
  margin: 1em auto;
  text-align: center;
}
.alignright {
  float: right;
  display: inline;
  /* IE6 fix */
  padding: 0 0 0.5em 1em;
  text-align: right;
}
.alignjustify {
  text-align: justify;
}
.text_centered {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.centered {
  text-align: center;
}
.text_right {
  text-align: right;
}
.lowercase {
  text-transform: lowercase;
}
.letter-spaced {
  letter-spacing: 0.2em;
}
.letter-spaced-1 {
  letter-spacing: 0.1em;
}
.blue_gradient {
  background: linear-gradient(90deg, #027ADD 0%, #2BBFE4 100%);
}
.gray_gradient {
  background: linear-gradient(180deg, rgba(208, 223, 238, 0.4) 0%, #F7FAFC 100%);
}
.light_blue_gradient {
  background: linear-gradient(to bottom, #d0dfee, #f7fafc);
}
.bg_gradient_1 {
  background: linear-gradient(90deg, #F3F7FB 0%, #DDF0FB 100%);
}
.blue_button {
  border-radius: 8px;
  background-color: #027ADD;
  color: #fff;
  padding: 16px;
  font-family: Poppins;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 2px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}
.blue_button:hover {
  background: #108DF3;
}
.cta_type_button {
  border-radius: 8px;
  box-shadow: 0 4px 12px -32px #00000014;
  background-color: #2BBFE4;
  color: #fff !important;
  text-decoration: none;
  display: inline-block;
  font-family: Poppins;
  font-size: 14px;
  font-weight: bold;
  padding: 16px;
  min-width: 195px;
  line-height: 1.14;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}
.cta_type_button:hover {
  background-color: #56CDEB;
}
.secondary_button {
  border-radius: 8px;
  border: solid 1px #2BBFE4;
  background-color: transparent;
  color: #2BBFE4;
  text-decoration: none;
  display: inline-block;
  font-family: Poppins;
  font-size: 14px;
  font-weight: bold;
  padding: 16px;
  width: 195px;
  line-height: 1.14;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}
.secondary_button:hover {
  background: #56CDEB;
  color: #fff;
}
.cta_type_underline {
  text-decoration: none;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  display: inline-block;
}
.cta_type_underline:hover {
  padding-bottom: 6px;
}
.the_ctas > a {
  margin-right: 50px;
  display: inline-block;
}
.the_ctas > a:last-child {
  margin-right: 0;
}
.text_white {
  color: #fffl;
}
.text_blue {
  color: #027ADD;
}
.text_light_blue {
  color: #2BBFE4;
}
.text_gray {
  color: #777792;
}
.text_light_gray {
  color: #d0dfee;
}
.bg_blue {
  background-color: #027ADD;
  color: #fff;
}
.bg_light_blue {
  background-color: #2BBFE4;
}
.bg_gray {
  background-color: #777792;
}
.bg_light_gray {
  background-color: #d0dfee;
}
.bg_trans_light_blue {
  background-color: rgba(137, 221, 237, 0.4);
}
.bg_purple {
  background-color: #39395D;
  color: #fff;
}
.bg_purple_4 {
  background-color: #181832;
  color: #fff;
}
.bg_purple_4 h1, .bg_purple_4 h2 {
  color: #fff;
}
.bg_purple_4 h3 {
  color: #A8A9BA;
}
h3.sub_title {
  margin-top: 16px;
  font-size: 20px;
  font-family: Nunito;
  font-weight: normal;
}
.plus_button {
  position: relative;
  width: 30px;
  height: 30px;
  /* Vertical line */
  /* horizontal line */
}
.plus_button:before, .plus_button:after {
  content: "";
  position: absolute;
  background-color: #2BBFE4;
  transition: transform 0.25s ease-out;
}
.plus_button:before {
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  margin-left: -2px;
}
.plus_button:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  margin-top: -2px;
}
.plus_button.active {
  cursor: pointer;
}
.plus_button.active:before {
  transform: rotate(90deg);
}
.plus_button.active:after {
  transform: rotate(180deg);
}
/**************************
ANIMATION STYLES
**************************/
.rotate {
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.rotate.up {
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
/**************************
DOM ELEMENTS
**************************/
#page {
  margin: 0px auto;
  position: relative;
}
.wrapper {
  margin: 0px auto;
  padding: 0 50px;
  max-width: 1440px;
  width: 100%;
}
.wrapper.small {
  max-width: 1240px;
}
.wrapper.xsmall {
  max-width: 1045px;
}
.section {
  margin: 0 0 96px;
}
.section:last-child {
  padding-bottom: 80px;
  margin-bottom: 0;
}
.section:first-child {
  padding-top: 80px;
}
.section.padded {
  padding: 96px 0;
}
/*================================================================================
Header
================================================================================*/
.admin-bar #nav_bar {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar #nav_bar {
    top: 46px;
  }
}
#nav_bar {
  padding: 26px 0;
  transition: all 0.5s;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background: #fff;
  box-shadow: 0px 8px 12px 0px rgba(78, 85, 92, 0.06);
}
#nav_bar.scrollUp {
  transform: translateY(-100%);
}
#nav_bar.scrolled {
  box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.1);
}
#nav_bar.scrolled.has_alert {
  top: 0 !important;
}
#logo {
  width: 180px;
  max-width: 100%;
  -webkit-transition: opacity 500ms linear;
  -ms-transition: opacity 500ms linear;
  transition: opacity 500ms linear;
}
#logo:hover {
  opacity: 0.8;
}
#demo_link {
  margin-right: 60px;
}
.blue_gradient:not(.scrolled) #logo svg rect, .blue_gradient:not(.scrolled) #logo svg path {
  fill: #fff !important;
}
.blue_gradient:not(.scrolled) .login_link {
  color: #fff;
}
.login_link {
  color: #777792;
  text-decoration: none;
  font-weight: 500;
}
#login_link_wrapper {
  position: relative;
}
.login_link .icon {
  -webkit-transition: opacity 500ms linear;
  -ms-transition: opacity 500ms linear;
  transition: opacity 500ms linear;
}
.login_link:hover .icon {
  opacity: 0.8;
}
#login_menu {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
#login_menu ul {
  list-style: none;
  background: #fff;
  width: 200px;
  border-radius: 6px;
  box-shadow: 0 12px 36px -8px rgba(78, 85, 92, 0.04);
  margin: 34px 0 0 0;
  padding: 20px 24px;
}
#login_menu a {
  color: #2BBFE4;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  letter-spacing: 0.23px;
  text-decoration: none;
}
#login_link:hover #login_menu {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
#mobile_nav {
  display: none;
}
/*================================================================================
FOOTER
================================================================================*/
#main_footer {
  padding: 48px 0 32px;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  margin: 0;
}
footer {
  color: #A8A9BA;
}
footer a {
  color: #A8A9BA;
  text-decoration: none;
}
#footer_menus {
  width: 75%;
  position: relative;
}
#footer_menus a:hover {
  color: #A8A9BA;
}
.menu_header {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.2px;
}
.contact_details {
  margin-top: 20px;
  opacity: 0.8;
  font-family: Nunito;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.43;
  letter-spacing: 0.2px;
  color: #A8A9BA;
}
.footer_menu {
  margin-right: 130px;
}
.footer_menu > li {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.2px;
  width: 25%;
  white-space: nowrap;
}
.footer_menu > li > a {
  color: #fff;
}
.footer_menu > li > ul {
  margin-top: 20px;
  margin-bottom: 36px;
}
.footer_menu > li > ul > li {
  display: block;
  opacity: 0.8;
  font-family: Nunito;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.43;
  letter-spacing: 0.2px;
}
#footer_bottom {
  padding-top: 24px;
  margin-top: 36px;
  border-top: 1px solid #626284;
  color: #A8A9BA;
}
.social_links li {
  width: 24px;
  height: 24px;
  line-height: 26px;
  background: #626284;
  color: #181832;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 24px;
}
.social_links li a {
  color: #181832;
}
#footer_login_link {
  margin-right: 24px;
  white-space: nowrap;
}
#footer_login_link a {
  opacity: 0.8;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: 0.2px;
  color: #777792;
  text-transform: uppercase;
}
.footer_left {
  font-family: Nunito;
  font-size: 12px;
}
.footer_left .credits {
  margin-right: 42px;
}
.footer_left #bottom_menu li {
  padding-right: 36px;
}
#hippa {
  border-radius: 12px;
  background: #626284;
  color: #181832;
  padding: 2px 12px;
}
#hippa .fa {
  margin-right: 8px;
  font-size: 13px;
}
#hippa span {
  font-family: Nunito;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.67;
}
/*================================================================================
404
================================================================================*/
#four-oh-four_content {
  text-align: center;
  margin: 0px auto;
}
#four-oh-four_content h1 {
  font-size: 60px;
}
#four-oh-four_content h2 {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#four-oh-four_image {
  text-align: center;
}
#four-oh-four_image img {
  max-width: 100%;
  height: auto;
}
/**************************
NAVIGATION STYLES
**************************/
#main_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins;
  letter-spacing: 0.2px;
}
#main_menu ul li {
  display: inline-block;
  margin: 0 22px;
  padding: 0;
}
#main_menu ul li a {
  color: #777792;
  text-decoration: none;
  position: relative;
}
.blue_gradient:not(.scrolled) #main_menu ul li a {
  color: #fff;
}
.blue_gradient:not(.scrolled) #main_menu ul li a:hover:after, .blue_gradient:not(.scrolled) #main_menu ul li.current-menu-item a:after {
  background: #fff;
}
#main_menu ul li a:hover:after, #main_menu ul li.current-menu-item a:after {
  content: "";
  display: block;
  height: 1px;
  background: #777792;
  width: 100%;
  bottom: -4px;
  position: absolute;
}
#nav ul ul {
  display: none;
}
/**************************
CONTENT STYLES
**************************/
.entry {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
  letter-spacing: 0.2px;
}
.entry a {
  border-bottom: 1px solid;
  text-decoration: none;
  display: inline-block;
  color: #777792;
}
/**************************
HERO SECTIONS STYLES
**************************/
.hero_section {
  position: relative;
  padding: 80px 0 96px;
}
.hero_section .hero_left {
  padding-right: 60px;
}
.hero_section .hero_content {
  padding-right: 55px;
  margin-top: 50px;
}
.hero_section h2 {
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 600;
  font-family: Poppins;
}
.hero_section .hero_image {
  max-width: 524px;
}
.hero_section .mobile_hero {
  display: none;
}
.hero_section .scroll_down {
  text-align: center;
  font-size: 40px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  margin-left: -17.5px;
  color: #777792;
  transition: all 250ms linear;
}
.hero_section .scroll_down:hover {
  transform: scale(1.2);
  transform-origin: center center;
}
.hero_section .hovering_image {
  position: absolute;
  top: 50%;
  left: -6.7%;
  transform: translateY(-50%);
}
.hero_section .hero_image {
  position: relative;
}
.hero_ctas {
  margin: 50px 0;
}
.hero_section.blue_gradient h2 {
  color: #fff;
}
.hero_section.blue_gradient .hero_content {
  color: #fff;
}
.hero_no_pad_left .wrapper {
  padding-right: 0;
}
.image_position_left .hero_left {
  padding: 0;
}
.float_updown {
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}
@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/**************************
CONTENT WITH IMAGE SECTION STYLES
**************************/
.image_position_left {
  -webkit-flex-direction: row-reverse;
  /* Safari 6.1+ */
  flex-direction: row-reverse;
}
.image_position_left .content_with_image_image {
  max-width: 457px;
  margin-right: 60px;
}
.image_position_left .content_with_image_content {
  max-width: 555px;
}
.content_with_image_image img {
  display: inline-block;
  width: auto;
  height: auto;
}
.content_with_image_content .entry {
  margin-top: 16px;
}
.image_position_right .content_with_image_content {
  max-width: 555px;
}
.image_position_right .content_with_image_image {
  max-width: 457px;
  text-align: center;
  margin-left: 60px;
}
.stat_section {
  margin-top: 23px;
  padding-top: 23px;
  border-top: 2px solid #d0dfee;
}
.stat_left {
  width: 32px;
  margin-right: 16px;
}
.stat_right {
  width: 100%;
}
.small_stat {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.stat_source {
  font-size: 10px;
  font-weight: 300;
  margin-top: 16px;
}
/**************************
CONTENT WITH MEDIA SECTION STYLES
**************************/
video.content_video {
  width: 100% !important;
  height: auto !important;
  border-radius: 20px;
  overflow: hidden;
}
/************************** VIMEO PLAYLIST STYLES **************************/
.vimeo_playlist_section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (height:width) */
  height: 0;
  border-radius: 24px;
  overflow: hidden;
}
.vimeo_playlist_section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vimeo_playlist_section #video-container {
  margin-bottom: 64px;
}
.vimeo_playlist_section #video-list-items {
  background: #fff;
  border-radius: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.vimeo_playlist_section #video-list-items li {
  padding: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #D0DFEE;
}
.vimeo_playlist_section #video-list-items li:last-child {
  border: none;
}
.vimeo_playlist_section #video-list-items li .title_bar {
  position: relative;
  padding-right: 20px;
}
.vimeo_playlist_section #video-list-items li .video_title {
  position: relative;
  font-weight: 800;
  padding-left: 48px;
}
.vimeo_playlist_section #video-list-items li .icon {
  position: absolute;
  display: block;
  width: 32px;
}
.vimeo_playlist_section #video-list-items li .icon .pause_button {
  display: none;
}
.vimeo_playlist_section #video-list-items li .accordion_toggler {
  position: absolute;
  right: 0px;
  color: #A8A9BA;
  font-size: 14px;
}
.vimeo_playlist_section #video-list-items li .accordion_toggler i {
  transform: rotate(-90deg);
}
.vimeo_playlist_section #video-list-items li .video_time {
  padding: 0 20px;
}
.vimeo_playlist_section #video-list-items li.active .video_time, .vimeo_playlist_section #video-list-items li.active .video_title {
  color: #027ADD;
}
.vimeo_playlist_section #video-list-items li.active .video_description {
  display: block;
  padding-left: 48px;
}
.vimeo_playlist_section #video-list-items li.active .pause_button {
  display: block;
  transform: translate(-5px, -5px);
}
.vimeo_playlist_section #video-list-items li.active .play_button {
  display: none;
}
.vimeo_playlist_section #video-list-items li.active .accordion_toggler i {
  transform: rotate(0deg);
}
.vimeo_playlist_section #video-list-items .video_description {
  display: none;
  padding-top: 19px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.12px;
}
.vimeo_playlist_section #video-list-items .video_time {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12px;
}
.vimeo_playlist_section .video_cta_box {
  padding: 38px 32px;
  text-align: center;
  border-radius: 24px;
}
.vimeo_playlist_section .video_cta_box .btn_primary {
  margin-top: 36px;
}
.vimeo_playlist_section .video_cta_box .entry {
  margin-top: 36px;
}
@media (max-width: 1000px) {
  .vimeo_playlist_section .col-3-5, .vimeo_playlist_section .col-2-5 {
    width: 100%;
  }
}
.video_with_headline_section .video_top {
  margin-bottom: 64px;
}
.video_with_headline_section .sub_title {
  margin: 36px auto;
  max-width: 760px;
}
/**************************
CONTACT BOXES SECTION STYLES
**************************/
.full {
  width: 100%;
}
.contact_box_inner {
  border-radius: 12px;
  border: solid 1px #d0dfee;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.contact_box_inner.has_bottom {
  padding-bottom: 72px;
}
.contact_box_content {
  font-weight: 300;
  margin-top: 24px;
}
.contact_items {
  margin: 24px 0 0 0;
  list-style: none;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
}
.contact_items a {
  color: #777792;
  text-decoration: none;
  -webkit-transition: color 500ms linear;
  -ms-transition: color 500ms linear;
  transition: color 500ms linear;
}
.contact_items a:hover {
  color: #A8A9BA;
}
.bottom_content {
  margin: 0;
  background-color: #f7fafc;
  color: #4e555c;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 11px 24px;
  border-top: solid 1px #d0dfee;
  font-family: Nunito;
  font-size: 16px;
  font-weight: 300;
}
.contact_box_left {
  width: 50%;
  margin-right: 60px;
}
.contact_box_image {
  width: 50%;
  max-width: 486px;
}
.contact_box_icon {
  width: 20px;
  margin-right: 6px;
}
/**************************
ALERT BAR SECTION STYLES
**************************/
#alert_bar {
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 14px 0;
}
#alert_bar a {
  color: #027ADD;
}
#alert_bar .wrapper {
  position: relative;
}
#alert_bar #alert_close {
  position: absolute;
  top: 0;
  right: 50px;
  cursor: pointer;
}
.alert_bar_section {
  background: #777792;
}
.alert_bar_section i {
  transition: all 500ms ease-in-out;
}
.alert_bar_content {
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 300;
}
a.alert_bar_link {
  color: #fff;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-left: 16px;
}
a.alert_bar_link i {
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
}
a.alert_bar_link:hover i {
  transform: translate(4px);
}
/**************************
FEATURED RESOURCES SECTION STYLES
**************************/
.featured_resources_section {
  padding: 62px 0 115px;
  color: #fff;
}
.featured_resources_section .resource_bubble {
  margin-bottom: 52px;
}
.featured_resources_section a {
  color: #fff;
  text-decoration: none;
}
.featured_resources_section .post_title {
  color: #fff;
}
.featured_resources_section .cat_bar {
  font-weight: 800;
}
.featured_resources_section .cat_icon svg path {
  fill: #fff;
}
.primary_left {
  max-width: 555px;
  width: 100%;
  margin-right: 60px;
}
.primary_left h2 {
  margin-bottom: 48px;
}
.featured_link * {
  -webkit-transition: opacity 500ms linear !important;
  -ms-transition: opacity 500ms linear !important;
  transition: opacity 500ms linear !important;
}
.featured_link:hover * {
  opacity: 0.8;
}
.primary_right {
  max-width: 457px;
  width: 100%;
}
.primary_right a img {
  -webkit-transition: opacity 500ms linear;
  -ms-transition: opacity 500ms linear;
  transition: opacity 500ms linear;
}
.primary_right a:hover img {
  opacity: 0.8;
}
.secondary_featured_posts {
  margin-top: 115px;
}
a.read_more, .read_more {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  margin-top: 16px;
  padding-bottom: 10px;
}
/**************************
BLOG SECTION STYLES
**************************/
.blog_left {
  max-width: 750px;
}
.blog_right {
  width: 365px;
  padding-left: 60px;
}
.blog_right h4 {
  font-size: 24px;
}
.event_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.event_list li {
  margin: 48px 0 0 0;
}
.event_location, .event_date {
  font-weight: 300;
  font-size: 12px;
  color: #4e555c;
}
.event_title {
  color: #2BBFE4;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  margin: 8px 0;
  -webkit-transition: opacity 500ms linear;
  -ms-transition: opacity 500ms linear;
  transition: opacity 500ms linear;
}
.event_link {
  text-decoration: none;
}
a.event_link:hover .event_title {
  opacity: 0.8;
}
.the_post_list {
  border-top: solid 1px #d0dfee;
  padding-top: 35px;
  margin-bottom: 35px;
}
.the_post_list h3 {
  font-size: 24px;
  font-weight: 600;
}
.the_post_list a {
  color: #000;
  text-decoration: none;
}
.article_left {
  width: 100%;
}
.article_left a {
  -webkit-transition: opacity 500ms linear;
  -ms-transition: opacity 500ms linear;
  transition: opacity 500ms linear;
}
.article_left a:hover {
  opacity: 0.5;
}
.article_right {
  width: 165px;
  margin-left: 30px;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}
.post-categories {
  margin: 0;
  list-style: none;
  padding: 0;
}
.pagination {
  margin-top: 60px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
}
.pagination span, .pagination a {
  display: block;
  float: left;
  text-decoration: none;
  width: auto;
  margin-right: 36px;
  min-width: 14px;
  text-align: center;
  color: #2BBFE4;
  /* Pagination text color */
}
.pagination a:hover {
  color: #89dded;
}
.pagination .current {
  color: #89dded;
  border-bottom: 1px solid;
}
#searchbar {
  margin-bottom: 38px;
}
#searchbox {
  height: 43px;
  text-align: left;
}
.sbx-custom {
  display: inline-block;
  position: relative;
  height: 43px;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 16px;
}
.sbx-custom__wrapper {
  width: 100%;
  height: 100%;
}
.sbx-custom__input {
  display: inline-block;
  padding: 0;
  padding-right: 40px;
  padding-left: 40px;
  width: 100%;
  height: 43px;
  vertical-align: middle;
  white-space: normal;
  font-size: inherit;
  appearance: none;
  text-align: left;
  border: none;
}
.sbx-custom__input::-webkit-search-decoration, .sbx-custom__input::-webkit-search-cancel-button, .sbx-custom__input::-webkit-search-results-button, .sbx-custom__input::-webkit-search-results-decoration {
  display: none;
}
.sbx-custom__input:hover {
  box-shadow: none;
}
.sbx-custom__input:focus, .sbx-custom__input:active {
  outline: 0;
  box-shadow: none;
  background: #FFFFFF;
}
.sbx-custom__input::placeholder {
  color: #89dded;
  opacity: 1 !important;
  font-weight: 600;
}
.sbx-custom__submit {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border: 0;
  border-radius: 0 0px 0px 0;
  padding: 0;
  width: 25px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  user-select: none;
  background: transparent;
}
.sbx-custom__submit::before {
  display: inline-block;
  margin-right: -4px;
  height: 100%;
  vertical-align: middle;
  content: "";
}
.sbx-custom__submit:hover, .sbx-custom__submit:active {
  cursor: pointer;
}
.sbx-custom__submit:focus {
  outline: 0;
}
.sbx-custom__submit svg {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  fill: #2bbfe4;
}
.sbx-custom__reset {
  display: none;
  position: absolute;
  top: 11px;
  right: 11px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  user-select: none;
  fill: rgba(0, 0, 0, 0.5);
}
.sbx-custom__reset:focus {
  outline: 0;
}
.sbx-custom__reset svg {
  display: block;
  margin: 4px;
  width: 13px;
  height: 13px;
}
.sbx-custom__input:valid ~ .sbx-custom__reset {
  display: block;
  animation-name: sbx-reset-in;
  animation-duration: 0.15s;
}
@keyframes sbx-reset-in {
  0% {
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
/**************************
SINGLE BLOG STYLES
**************************/
.single_post_header {
  position: relative;
  padding-top: 58px;
  padding-bottom: 58px;
}
.single_post_header figure {
  position: relative;
  z-index: 100;
  padding-top: 72px;
}
.resource_bubble {
  display: inline-block;
  color: #89dded;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 8px 25px;
  min-width: 140px;
  height: 36px;
  border-radius: 18px;
  background-color: #027add;
}
.single_post_header.has_image {
  padding-bottom: 0;
}
.single_post_header.has_image:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  height: calc(50% - 94px);
  background: #fff;
  z-index: 99;
}
.blog_entry {
  padding: 58px 0 115px;
}
.blog_entry h1 {
  font-size: 36px;
  line-height: 1.33;
  margin-bottom: 48px;
}
.post_meta {
  margin: 48px 0;
}
.post_date {
  color: #4e555c;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  opacity: 0.6;
  margin-bottom: 8px;
}
.post_author {
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.post_author a {
  font-weight: 800;
  border: none;
  color: #2BBFE4;
}
a.back_button {
  color: #2BBFE4;
  border: none;
  font-size: 18px;
  font-weight: 300;
}
/**************************
ARCHIVE BLOG STYLES
**************************/
.archive_header {
  text-align: center;
  padding: 50px 0;
}
/**************************
IMAGE W CTA SECTION STYLES
**************************/
.image_wcta_section img {
  width: 100%;
  height: auto;
}
.image_wcta_section .image_wcta_image {
  margin-bottom: 52px;
}
.image_wcta_section .the_ctas {
  margin-top: 52px;
}
/**************************
TABBED SLIDER SECTION STYLES
**************************/
.tabbed_slider_section .section_header {
  text-align: center;
  margin-bottom: 52px;
}
.tabbed_slider_section .sub_title {
  margin-top: 16px;
  font-size: 20px;
  font-family: Nunito;
  font-weight: normal;
}
.tabbed_slider_section.version_2 {
  padding: 95px 0;
  background-color: #D0F1F8;
}
.tabbed_slider_section.version_2 .section_header {
  margin-bottom: 40px;
}
.tabbed_slider_section.version_2 .tabbed_slider .tabbed_slide figure {
  max-width: 745px;
  margin: 0 auto;
}
.tabbed_slider_section.version_2 .tabbed_slider .slick-dots {
  margin-top: -116px;
  z-index: 99;
  position: relative;
}
.tabbed_slider_section.version_2 .tabbed_slider .slick-dots li {
  background: #fff;
  padding: 24px 32px;
  color: #027ADD;
  border: none;
  border-radius: 12px;
  box-shadow: 0 16px 36px -12px rgba(57, 57, 93, 0.25);
  margin: 0 15px;
  transition: all 500ms linear;
}
.tabbed_slider_section.version_2 .tabbed_slider .slide_title {
  color: #027ADD;
}
.tabbed_slider_section.version_2 .tabbed_slider .slide_content {
  color: #777792;
}
.tabbed_slider_section.version_2 .tabbed_slider li.slick-active {
  transform: translateY(-24px);
}
.tabbed_slider .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 48px;
  cursor: pointer;
  display: -ms-flexbox;
  /* MID: IE 10 */
  display: -webkit-box;
  /* OLD: Safari,  iOS, Android browser, older WebKit browsers.  */
  display: -webkit-flex;
  /* NEW, Chrome 21–28, Safari 6.1+ */
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tabbed_slider figure img {
  margin: 0 auto;
}
.tabbed_slider .slick-dots li {
  width: 100%;
  border-top: 4px solid #d0dfee;
  padding-top: 24px;
  padding-right: 30px;
}
.tabbed_slider .slick-dots li a {
  text-decoration: none;
}
.tabbed_slider .slide_title {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  color: #d0dfee;
}
.tabbed_slider .slide_content {
  font-family: Nunito;
  font-size: 18px;
  font-weight: 300;
  color: #d0dfee;
}
.tabbed_slider li.slick-active {
  border-color: #027ADD;
}
.tabbed_slider li.slick-active .slide_title {
  color: #027ADD;
}
.tabbed_slider li.slick-active .slide_content {
  color: #777792;
}
.tab_content {
  text-align: center;
  margin: 36px auto 0 0;
  padding: 0 100px;
}
.tab_content .slide_title {
  color: #027ADD;
}
.tab_content .slide_content {
  color: #777792;
}
.tabbed_slider_container {
  position: relative;
}
.slide_arrows .slick-arrow {
  position: absolute;
  bottom: 0%;
  margin: -36px 0 0 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  z-index: 10;
  color: #000;
  font-size: 20px;
  background: #EEEFF0;
  cursor: pointer;
  -webkit-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  transition: all 500ms linear;
}
.slide_arrows .slick-arrow:hover {
  opacity: 0.8;
}
.slide_arrows .slick-prev {
  left: 0px;
}
.slide_arrows .slick-next {
  right: 0px;
}
/**************************
TESTIMONIAL SECTION STYLES
**************************/
.testimonial_flex {
  width: 100%;
}
.testimonial_image {
  max-width: 263px;
  margin-right: 60px;
  width: 100%;
}
.quote_content.has_image {
  max-width: 750px;
}
.the_quote {
  font-size: 32px;
  line-height: 1.5em;
}
.quote_credit {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.67;
}
.quote_credit .name {
  font-weight: 800;
}
.testimonial_section.version_2 .quote_content {
  max-width: 945px;
  margin: 0 auto;
}
.testimonial_section.version_2 .quote_credit {
  display: flex;
  align-items: center;
}
.testimonial_section.version_2 .credit_info {
  font-size: 16px;
}
.testimonial_section.version_2 .testimonial_image {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 30px;
}
/************************** testimonial_slider_section STYLES **************************/
.testimonial_slider_section .sub_title {
  margin-top: 24px;
}
.testimonial_slider_section .h4 {
  margin-bottom: 16px;
}
.testimonial_slider_section .entry {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.15px;
  line-height: 1.5em;
}
.testimonial_slider_section .five_star {
  margin-bottom: 24px;
}
.testimonial_slider_section .credit {
  margin-top: 36px;
  color: #626284;
}
.testimonial_slider_section .circle {
  width: 64px;
  margin-right: 25px;
}
.testimonial_slider_section .quote {
  color: #181832;
  font-family: Nunito;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.15px;
  line-height: 36px;
  margin-bottom: 24px;
}
.testimonial_slider_section .testimonial_slider {
  margin-top: 64px;
  overflow: hidden;
}
.testimonial_slider_section .testimonial_slide {
  padding: 36px;
  border-radius: 24px;
  background: #fff;
}
.testimonial_slider_section .swiper {
  width: 100%;
  height: 100%;
}
.testimonial_slider_section .slider_arrows {
  margin-top: 64px;
}
.testimonial_slider_section .slider_arrows .arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  background: #D0DFEE;
  margin: 0 18px;
}
.testimonial_slider_section .slider_arrows .arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.testimonial_slider_section .slider_arrows .arrow.arrow-prev {
  transform: scaleX(-1);
}
.testimonial_slider_section .slider_arrows .arrow svg * {
  fill: #979797;
}
/**************************
RECENT POSTS SECTION STYLES
**************************/
.cat_bar {
  font-family: Nunito;
  font-size: 12px;
  margin-bottom: 24px;
}
.cat_bar i {
  margin-right: 5px;
  width: 10px;
}
.cat_bar i svg {
  width: 100%;
  height: auto;
}
h2.post_title {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin: 28px 0 32px;
  -webkit-transition: color 500ms linear;
  -ms-transition: color 500ms linear;
  transition: color 500ms linear;
}
.recent_post a {
  text-decoration: none;
  color: #777792;
}
a.post_link:hover h2 {
  color: #108DF3;
}
/**************************
CENTERED TEXT WITH CTA SECTION STYLES
**************************/
.centered_text_w_cta_section {
  text-align: center;
}
.centered_text_w_cta_section h3 {
  max-width: 750px;
  margin: 0px auto 36px;
}
/************************** content_grid_section STYLES **************************/
.logo_grid_section .h2 {
  margin-bottom: 2em;
}
.logo_grid_section .logo_item img {
  object-fit: contain;
  width: auto;
  height: 70px;
  max-width: 200px;
}
/**************************
CENTERED TEXT WITH LOGOS SECTION STYLES
**************************/
.centered_text_w_logos_section {
  text-align: center;
}
.centered_logo {
  max-width: 200px;
  margin: 35px;
}
/**************************
CASE STUDY SECTION STYLES
**************************/
.bg_shape_container {
  position: relative;
}
.bg_shape_container .wrapper {
  padding: 0;
}
.curved_bg_shape {
  background: url("images/svg/curved-bg-shape.svg") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: -1;
}
.top_content {
  max-width: 555px;
  margin-right: 60px;
}
.top_content h3 {
  margin-bottom: 52px;
}
.the_stats {
  margin-top: 8.4%;
}
.stat_icon {
  width: 74px;
  margin-right: 20px;
}
.stat_number {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
}
.stat_content {
  font-family: Nunito;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
}
.case_study_image {
  max-width: 637px;
  margin: 60px 60px 60px 0;
}
.case_study_headline {
  font-family: Poppins;
  font-size: 60px;
  font-weight: 600;
  padding-right: 50px;
  max-width: 555px;
  line-height: 1.2;
}
.case_study_bottom {
  margin-top: 96px;
}
.col_title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}
.col_content {
  font-family: Nunito;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
}
.the_logos_container {
  display: inline-block;
  text-align: center;
}
.the_logos img {
  max-width: 125px;
  margin-right: 60px;
}
.the_logos img:last-child {
  margin-right: 0;
}
.logo_text {
  font-family: Nunito;
  font-size: 16px;
  font-weight: 300;
  margin-top: 21px;
}
.case_study_section.version_2 .top_content h3 {
  font-size: 36px;
  font-weight: 600;
}
.case_study_section.version_2 .case_study_top_container {
  background: #D0F1F8;
  padding-bottom: 138px;
}
.case_study_section.version_2 .case_study_top {
  align-items: center;
}
.case_study_section.version_2 .the_stats {
  margin-top: 0;
}
.case_study_section.version_2 .the_stat {
  margin-bottom: 40px;
}
.case_study_section.version_2 .the_stat:last-child {
  margin-bottom: 0;
}
.case_study_section.version_2 .stat_number {
  font-size: 60px;
}
.case_study_section.version_2 .bg_shape_container .wrapper {
  max-width: 100%;
}
.case_study_section.version_2 .bg_shape_container .curved_bg_shape {
  background: none;
}
.case_study_section.version_2 .bg_shape_container .case_study_middle {
  display: block;
  background: #d0f1f8;
  background: linear-gradient(180deg, #d0f1f8 0%, #d0f1f8 50%, white 50%);
  padding: 0 30px;
}
.case_study_section.version_2 .bg_shape_container .case_study_content_wrapper {
  max-width: 1005px;
  padding: 48px 30px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #FFFFFF;
  box-shadow: 0 16px 36px -12px rgba(57, 57, 93, 0.25);
  text-align: center;
}
.case_study_section.version_2 .bg_shape_container .case_study_headline {
  max-width: 100%;
  font-size: 36px;
}
.case_study_section.version_2 .bg_shape_container .case_study_small {
  font-size: 20px;
  max-width: 750px;
  margin: 25px auto 0;
}
.case_study_section.version_2 .the_logos_container {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 72px;
}
.case_study_section.version_2 .the_logos_container .the_logos {
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
}
.case_study_section.version_2 .the_logos_container .the_logos img {
  max-width: 207px;
  max-height: 70px;
  width: auto;
  height: auto;
  margin: 5px 30px;
}
.case_study_section.version_2 .case_study_bottom .inner {
  border-right: 1px solid #D0DFEE;
  padding-right: 18%;
  padding-left: 10%;
}
.case_study_section.version_2 .case_study_bottom .col-1-3:last-child .inner {
  border-right: none;
}
.case_study_section.version_2 .case_study_bottom .col_title {
  color: #027ADD;
  font-weight: 800;
}
/************************** stats_section STYLES **************************/
.stats_section.section {
  margin-bottom: 0;
}
.stats_section.section .stat_container {
  padding: 56px 48px;
  border-radius: 24px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 24px 0 rgba(78, 85, 92, 0.16);
}
.stats_section.section .h2 {
  font-size: 28px;
  margin-bottom: 64px;
}
.stats_section.section figure {
  z-index: -1;
  position: relative;
  margin-top: -10%;
}
.stats_section.section figure img {
  display: block;
  width: 100%;
  height: auto;
}
.stats_2_section ul.the_stats li {
  border: none;
  padding-right: 32px;
}
.stats_2_section ul.the_stats li .content {
  border-left: 1px solid #D0DFEE;
  padding-left: 32px;
  margin: 24px 0;
}
.stats_2_section ul.the_stats li .content strong {
  color: #027ADD;
}
.stats_2_section ul.the_stats li .the_stat {
  margin-left: 33px;
}
.stats_2_section ul.the_stats li .info {
  margin-left: 33px;
  font-size: 14px;
}
.stats_2_section .bottom_text {
  text-align: center;
  margin-top: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.stats_2_section.bg_purple {
  color: #A8A9BA;
}
.stats_2_section.bg_purple strong {
  color: #fff !important;
}
.stats_3_section {
  color: #fff;
}
.stats_3_section .content_top {
  margin-bottom: 96px;
  text-align: center;
}
.stats_3_section ul.the_stats li {
  border: none;
  padding-right: 32px;
}
.stats_3_section ul.the_stats li .content {
  margin: 24px 0 0 33px;
}
.stats_3_section ul.the_stats li .the_stat {
  border-left: 1px solid #626284;
  padding-left: 32px;
}
.stats_3_section ul.the_stats li .info {
  margin-left: 33px;
  font-size: 14px;
}
.stats_3_section ul.the_stats li:first-child .the_stat {
  border-left: 0;
}
/************************** COMMON STAT STYLES STYLES **************************/
ul.the_stats {
  list-style: none;
  margin: 0;
}
ul.the_stats li {
  border-right: 1px solid #D0DFEE;
  padding-left: 32px;
}
ul.the_stats li:last-child {
  border: none;
}
ul.the_stats li:first-child {
  padding-left: 0;
}
ul.the_stats li:first-child .content {
  border: none;
}
.the_stat {
  font-family: Poppins;
  color: #027ADD;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.139em;
}
.stat_title {
  margin-top: 24px;
}
.icon_items_section .section_header, .features_section .section_header {
  margin-bottom: 150px;
}
.icon_items_section .section_header .entry, .features_section .section_header .entry {
  margin-top: 36px;
}
.icon_items_section .icon, .features_section .icon {
  margin-bottom: 20px;
}
.icon_items_section h1.h4, .features_section h1.h4 {
  margin-bottom: 47px;
}
.icon_items_section h4, .features_section h4 {
  font-weight: 800;
  margin-bottom: 16px;
}
.icon_items_section .the_link, .features_section .the_link {
  margin-top: 20px;
}
.icon_items_section .small_title {
  margin-top: 95px;
}
.icon_items_section .content_buttons {
  margin-top: 96px;
}
/**************************
FORM SECTION STYLES
**************************/
.form_section {
  position: relative;
  color: #fff;
}
.form_section h2 {
  margin-bottom: 24px;
}
.form_section .form_content {
  font-family: Nunito;
  font-size: 20px;
  line-height: 1.4;
}
.form_section .gform_description, .form_section .gfield_description, .form_section .gfield_checkbox {
  font-size: 16px !important;
  font-family: "Poppins" !important;
}
img.gform_ajax_spinner {
  max-width: 100px !important;
}
.form_flex {
  padding: 90px 0 112px;
}
.form_left {
  padding-right: 60px;
}
.form_right .gform_wrapper {
  max-width: 360px;
}
#content .collapisable .gform_footer {
  display: none;
}
#content .collapisable.opened .gform_footer {
  display: block;
}
.form_break {
  display: none;
}
#content label.gfield_label {
  display: none;
}
#content li.gfield {
  margin: 0;
  width: 100%;
  padding-bottom: 16px;
}
#content li.gfield input[type=text], #content li.gfield input[type=email], #content li.gfield textarea {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #fff;
  background: transparent;
  color: #fff;
  padding-bottom: 11px;
}
.form_trigger {
  text-align: center;
  font-size: 30px;
  width: 18px;
  position: absolute;
  left: 50%;
  margin-left: -9px;
  bottom: 30px;
  opacity: 0.6;
  -webkit-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  transition: all 500ms linear;
}
.form_trigger i {
  cursor: pointer;
}
.form_trigger:hover {
  opacity: 1;
}
#content input.gform_button {
  min-width: 158px;
  height: 48px;
  border-radius: 8px;
  border: solid 1px #ffffff;
  background: transparent;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  ine-height: 1.14;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 16px 16px 16px;
  -webkit-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  transition: all 500ms linear;
}
#content input.gform_button:hover {
  background: #fff;
  color: #027ADD;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 0.6 !important;
  color: #fff;
}
::-moz-placeholder {
  /* WebKit browsers */
  opacity: 0.6 !important;
  color: #fff;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 1 !important;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 1 !important;
}
/**************************
TITLE WITH IMAGE & BUTTON SECTION STYLES
**************************/
.title_with_image_button_section .the_ctas {
  margin-top: 52px;
}
/**************************
4 PARALLAX IMAGES WITH CONTENT STYLES
**************************/
.four_parallax_images_with_content_section .wrapper h2 {
  margin-bottom: 16px;
}
.content_with_image_flex {
  width: 100%;
  max-width: 1290px;
}
.content_with_parallax_image_content {
  max-width: 556px;
}
.content_with_parallax_image {
  max-width: 637px;
  margin-right: 98px;
}
.content_icons {
  margin: 23px 0 0 0;
  list-style: none;
  border-top: 2px solid #d0dfee;
  padding-top: 23px;
}
.content_icons li {
  width: 50px;
  margin-right: 11px;
}
.content_icons li svg {
  width: 100% !important;
  height: auto !important;
}
.content_icons li:last-child {
  margin-right: 0;
}
.image_row_2 {
  margin-top: 34px;
}
.parallax_image1, .parallax_image4 {
  max-width: 285px;
}
.parallax_image2 {
  margin: 74px 0 0 33px;
  max-width: 240px;
}
.parallax_image3 {
  margin: 33px 33px 0 0px;
  max-width: 240px;
}
/**************************
LARGE IMAGE W BOXES SECTION STYLES
**************************/
.large_image_w_boxes_section h2.section_title {
  margin-bottom: 52px;
  text-align: center;
}
.large_image_w_boxes_section figure img {
  margin: 0 auto;
}
.large_image_boxes {
  margin-top: 42px;
}
.large_image_boxes .box_icon {
  width: 48px;
  margin-bottom: 12px;
}
.large_image_boxes .the_box {
  margin-right: 9%;
}
.large_image_boxes .the_box:last-child {
  margin-right: 0;
}
.large_image_boxes h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
}
/**************************
TWO COLUMN CONTENT SECTION STYLES
**************************/
.two_column_content_left {
  max-width: 457px;
  margin-right: 60px;
}
.two_column_content_right {
  max-width: 545px;
}
.colored_box_inner {
  background: #f7fafc;
  border-radius: 12px;
  padding: 24px 36px 28px;
}
.box_icon {
  max-width: 48px;
  margin-right: 24px;
  width: 100%;
}
h3.box_title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 4px;
}
/**************************
SLIDER SECTION STYLES
**************************/
.slider_section .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -36px;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  color: #fff;
  z-index: 10;
  background: #89dded url("images/svg/Back-Btn.svg") no-repeat 20px center;
  cursor: pointer;
  -webkit-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  transition: all 500ms linear;
}
.slider_section .slick-arrow:hover {
  opacity: 0.8;
}
.slider_section .slick-prev {
  margin-left: -36px;
  left: 0px;
}
.slider_section .slick-next {
  right: 0px;
  margin-right: -36px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.slider_section .slick-dots {
  text-indent: -999999px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
  height: 16px;
  margin-bottom: 60px;
  display: -ms-flexbox;
  /* MID: IE 10 */
  display: -webkit-box;
  /* OLD: Safari,  iOS, Android browser, older WebKit browsers.  */
  display: -webkit-flex;
  /* NEW, Chrome 21–28, Safari 6.1+ */
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}
.slider_section .slick-dots li {
  width: 8px;
  height: 8px;
  background-color: #2BBFE4;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.slider_section .slick-dots li.slick-active {
  transform: scale(2);
}
/**************************
LIST WITH IMAGE SECTION STYLES
**************************/
.no_pad_right .wrapper {
  padding-right: 0;
}
.list_with_image_content {
  max-width: 555px;
  margin-right: 60px;
}
.list_with_image_image {
  max-width: 457px;
}
.two_column_list {
  margin: 52px 0;
}
.the_list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}
.the_list li {
  margin-bottom: 16px;
}
.the_list li:last-child {
  margin-bottom: 0;
}
.quick_facts_wrapper {
  padding: 36px 60px 70px;
  border-radius: 6px;
  border: solid 1px #d0dfee;
}
.quick_facts_wrapper h2 {
  text-align: center;
}
.quick_facts_wrapper .the_list {
  font-size: 18px;
  font-weight: 800;
}
.quick_facts_wrapper .the_list:first-child {
  margin-right: 24px;
}
.quick_facts_wrapper .the_list:last-child {
  margin-left: 24px;
}
.quick_facts_wrapper .the_list li {
  margin-bottom: 42px;
}
.quick_facts_wrapper .the_list li:last-child {
  margin-bottom: 0px;
}
ul.checkmark {
  margin-left: 1.3em;
}
ul.checkmark li:before {
  color: #2BBFE4;
  font-size: 20px;
  font-weight: normal;
  content: "";
  /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  /* same as padding-left set on li */
  width: 1.3em;
  /* same as padding-left set on li */
}
.open_positions_section h2 {
  margin-bottom: 65px;
}
.open_positions_section h3 {
  color: #000;
}
.open_positions_section .article_left {
  max-width: 750px;
}
.open_positions_section .article_right {
  text-align: right;
}
.open_positions_section .department {
  margin-top: 4px;
  opacity: 0.6;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #4e555c;
}
.open_positions_section .department a {
  color: #4e555c;
}
.open_positions_section .job_description {
  margin-top: 16px;
  font-family: Nunito;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #000000;
}
.days_ago {
  margin-top: 4px;
  opacity: 0.6;
  font-family: Nunito;
  font-size: 14px;
  font-weight: 300;
}
.taxonmy_slider_wrapper {
  position: relative;
}
.taxonmy_slider {
  margin-bottom: 16px;
}
.taxonmy_slider_arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, white);
}
a.bubble_link {
  margin: 0px 20px 0 0;
  border-radius: 18px;
  border: solid 1px #d0dfee;
  padding: 5px 25px;
  text-align: center;
  display: inline-block;
  font-family: Nunito;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}
a.bubble_link:hover {
  background-color: #ECF2F8;
}
/**************************
PEOPLE SECTION STYLES
**************************/
.people_bg_blue {
  padding-top: 72px;
  padding-bottom: 67px;
  background: #f7fafc;
}
.person {
  margin-top: 67px;
}
.person a * {
  -webkit-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  transition: all 500ms linear;
}
.person a:hover img {
  opacity: 0.8;
}
.person a:hover .person_name {
  color: #108DF3;
}
.person a:hover .person_title {
  color: #A8A9BA;
}
.people_section a {
  text-decoration: none;
}
.person_name {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0 16px;
}
.person_title {
  font-size: 20px;
  color: #777792;
}
.person_left {
  max-width: 360px;
  margin-right: 60px;
}
.personal_links {
  margin: 52px 0 0 0;
  list-style: none;
  padding: 0;
}
.personal_links li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
}
.personal_links a {
  text-decoration: none;
  display: inline_block;
  padding-bottom: 12px;
  border-bottom: 1px solid;
  line-height: 1em;
}
.person_right {
  max-width: 653px;
}
.bio {
  font-size: 20px;
  line-height: 1.4em;
}
.back_button {
  font-size: 18px;
  background: none;
  padding: 0;
  margin: 36px 0 0 0;
  border: none;
  font-weight: 300;
}
.back_button i {
  margin-right: 4px;
}
#popup_logo {
  width: 181px;
}
#popup_close {
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #777792;
}
#popup_header {
  padding: 38px 0;
}
#popup_inside {
  padding-top: 200px;
}
#bio_popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99999;
  display: none;
  overflow-y: scroll;
}
.admin-bar #bio_popup {
  top: 32px;
}
#popup_inside {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
#popup_content {
  visibility: hidden;
}
#popup_loading {
  text-align: center;
}
#popup_loading img {
  display: inline-block;
  margin: 0 auto;
  max-width: 100px;
}
.title_bar_section .wrapper {
  padding-top: 116px;
  padding-bottom: 136px;
}
.title_bar_section .title_bar_content {
  margin: 0;
  padding: 0;
  font-family: Poppins;
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.33;
  color: #027ADD;
}
.bg_gray .title_bar_content {
  color: #fff;
}
/**************************
SINGLE BILLING EXPERIENCES STYLES
**************************/
.single-experience #nav_bar {
  padding: 0;
}
.single-experience #nav_bar .wrapper {
  background-color: #fff;
}
.single-experience #nav_bar h1#logo {
  width: auto;
  max-width: none;
  font-family: "Poppins";
  font-size: 36px;
  color: #4E565C;
  font-weight: 500;
}
.single-experience #powered_by {
  padding: 40px 48px 40px 36px;
  margin-right: -150px;
  font-size: 12px;
  line-height: 1em;
  font-family: "Poppins";
  text-align: center;
}
.single-experience #powered_by #powered_by_logo {
  width: 181px;
  margin-top: 10px;
  display: block;
}
body.postid-2468 #logo {
  width: 200px;
  margin: 20px 0;
}
/**************************
TESTIMONIAL CARDS STYLES
**************************/
.testimonial_cards_section .the_cards_flex {
  margin-top: 96px;
}
.testimonial_cards_section .card_inner {
  border-radius: 16px;
  background-color: #2BBFE4;
  box-shadow: 0 12px 36px -8px rgba(78, 85, 92, 0.12);
}
.testimonial_cards_section .card_inner .quote_container {
  font-size: 20px;
  line-height: 28px;
  padding: 48px 48px 60px 48px;
  background-color: #fff;
  font-weight: 600;
}
.testimonial_cards_section .card_inner .title_bar {
  text-align: center;
  padding: 60px 48px 48px 48px;
  color: #fff;
  position: relative;
}
.testimonial_cards_section .card_inner .name {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  font-family: "Poppins";
}
.testimonial_cards_section .card_inner .card_image {
  position: absolute;
  top: -36px;
  left: 50%;
  margin-left: -36px;
  border-radius: 50%;
  width: 72px;
  overflow: hidden;
  z-index: 10;
}
.testimonial_cards_section .the_cards_arrows {
  position: relative;
  margin-top: 27px;
}
.testimonial_cards_section .the_cards_arrows .slick-arrow {
  position: relative;
  margin: 0 40px;
  left: auto;
  right: auto;
}
/**************************
CENTERED TEXT WITH DESCRIPTION STYLES
**************************/
.centered_text_w_description_section {
  padding: 75px 0;
  background-color: rgba(137, 221, 237, 0.4);
}
.centered_text_w_description_section h2 {
  font-weight: normal;
  font-size: 32px;
}
.centered_text_w_description_section .sub_title {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.centered_text_w_description_section .cta_type_button {
  margin-top: 36px;
}
/**************************
FAQS SECTION STYLES
**************************/
.faqs_section h2 {
  margin-bottom: 64px;
}
.faqs_section .question_wrapper {
  max-width: 487px;
  width: 100%;
  padding-bottom: 37px;
  border-bottom: 1px solid #D0DFEE;
  margin-bottom: 28px;
  position: relative;
  cursor: pointer;
}
.faqs_section .question_wrapper .the_question {
  color: #2BBFE4;
  font-family: "Poppins";
  font-weight: 500;
  padding-right: 55px;
  max-width: 370px;
}
.faqs_section .question_wrapper .the_answer {
  padding-top: 24px;
  display: none;
}
.faqs_section .question_wrapper .accordion_toggle {
  position: absolute;
  right: 0;
  top: 0;
}
/**************************
FAQ SECTION STYLES
**************************/
.faq_section .the_faqs {
  padding: 96px 0;
  list-style: none;
  margin: 0;
}
.faq_section .the_faqs li {
  cursor: pointer;
  margin: 16px 0 0 0;
  padding: 24px;
  border-radius: 6px;
  background-color: #FFFFFF;
}
.faq_section .the_faqs li .answer {
  display: none;
  padding-top: 46px;
  color: #626284;
  letter-spacing: 0.12px;
  line-height: 1.75em;
}
.faq_section .faq_trigger {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding-left: 24px;
  white-space: nowrap;
}
/**************************
EXPERIENCE ANIMATION STYLES
**************************/
.experience_animations_section .experience_animations_flex {
  margin-bottom: 150px;
}
.experience_animations_section .experience_animations_flex:nth-child(odd) {
  -webkit-flex-direction: row-reverse;
  /* Safari 6.1+ */
  flex-direction: row-reverse;
}
.experience_animations_section .experience_animations_flex:nth-child(odd) .animation_image {
  margin-right: 120px;
  margin-left: 0;
}
.experience_animations_section .experience_animations_flex:nth-child(odd) .content_with_image_content {
  padding-right: 0px;
  padding-left: 10px;
}
.experience_animations_section .experience_animations_flex:last-child {
  margin-bottom: 0;
}
.experience_animations_section .animation_image {
  width: 50%;
  margin-left: 120px;
  text-align: center;
  width: calc(50% - 120px);
}
.experience_animations_section .content_with_image_content {
  padding-right: 10px;
  max-width: 555px;
}
.experience_animations_section .billing_animation {
  position: relative;
  max-width: 457px;
  padding: 18px 0;
}
.experience_animations_section .billing_animation img {
  margin: 0 auto;
}
.experience_animations_section .billing_animation .anim_paper-bill {
  position: relative;
  z-index: 30;
  width: 84%;
  margin: 0 auto;
}
.experience_animations_section .billing_animation .anim_email {
  position: absolute;
  top: 50%;
  left: -27%;
  z-index: 20;
  width: 58%;
}
.experience_animations_section .billing_animation .anim_txt-mssgs {
  position: absolute;
  top: 50%;
  right: -23%;
  z-index: 20;
  width: 42%;
  transform: translateY(-50%);
}
.experience_animations_section .billing_animation .anim_txt-mssgs figure.middle {
  margin: 6px 0;
}
.experience_animations_section .billing_animation .anim_txt-mssgs figure.last {
  width: 79%;
}
.experience_animations_section .texting_animation {
  position: relative;
}
.experience_animations_section .texting_animation .the_texts {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: -30%;
}
.experience_animations_section .texting_animation .the_texts figure.middle {
  margin: 6px 0 12px;
}
.experience_animations_section .texting_animation .the_texts figure.last {
  margin-right: -26px;
  margin-left: 26px;
}
.experience_animations_section .payment_animation {
  position: relative;
}
.experience_animations_section .payment_animation .payment_window {
  width: 50%;
  position: absolute;
  top: 10%;
  left: -10%;
  background: #f7f7f7;
  border-radius: 20px;
}
.experience_animations_section .payment_animation .payment_window img {
  background: none;
  position: relative;
  z-index: 999;
  border-radius: 20px;
  overflow: hidden;
}
.experience_animations_section .payment_animation .cards {
  position: absolute;
  bottom: 6%;
  left: -15%;
  width: 100%;
}
.experience_animations_section .invoice_animation {
  padding: 7% 3.9%;
  position: relative;
}
.experience_animations_section .invoice_animation .einvoice {
  width: 77.5%;
}
.experience_animations_section .invoice_animation .chat_container {
  background: #fff;
  position: absolute;
  width: 47%;
  top: 50%;
  transform: translateY(-50%);
  right: -10%;
  border-radius: 20px;
  padding: 20px;
}
.experience_animations_section .invoice_animation .response img {
  padding-top: 28px;
}
.experience_animations_section img {
  display: block;
  width: 100%;
  height: auto;
}
.experience_animations_section .shadow {
  box-shadow: 0 10px 36px -6px rgba(119, 119, 146, 0.24);
}
.experience_animations_section .billing_details_animation {
  position: relative;
}
.experience_animations_section .billing_details_animation .colored_square {
  width: 100%;
  padding-bottom: 100%;
  background-color: #d0f1f8;
}
.experience_animations_section .billing_details_animation .billing_overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 57%;
  transform: translate(-50%, -5%);
}
#footer_powered_by {
  display: none;
}
[data-aos="fan-right"] {
  opacity: 0.5;
  transition-property: transform, opacity;
  transform: translateX(-100%);
}
[data-aos="fan-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="fan-left"] {
  opacity: 0.5;
  transition-property: transform, opacity;
  transform: translate(100%, -50%);
}
[data-aos="fan-left"].aos-animate {
  opacity: 1;
  transform: translate(0, -50%);
}
[data-aos="rotate-c"] {
  opacity: 0.5;
  transform: rotate(-45deg) translate(-30%, 0%) scale(0.5);
  transition-property: transform, opacity;
}
[data-aos="rotate-c"].aos-animate {
  opacity: 1;
  transform: rotate(0deg) translate(0%, 0%) scale(1);
}
[data-aos="chat"] {
  transform: translate3d(0, 10px, 0);
  opacity: 0;
  overflow-y: hidden;
  max-height: 0;
  transition-property: max-height, opacity, transform;
}
[data-aos="chat"].aos-animate {
  transform: translateZ(0);
  max-height: 100vh;
  opacity: 1;
}
/**************************
BURGER STYLES
**************************/
#burger {
  display: none;
}
#nav-toggle {
  position: relative;
  text-align: right;
}
#nav-toggle {
  cursor: pointer;
  padding: 7px 23px 10px 0px;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 1px;
  width: 23px;
  background: #777792;
  position: absolute;
  display: block;
  content: "";
  right: 0px;
}
#nav-toggle span:before {
  top: -7px;
}
#nav-toggle span:after {
  bottom: -7px;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 500ms ease-in-out;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Firefox */
  -o-transform: rotate(45deg);
  /* Safari and Chrome */
  /* Opera */
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Firefox */
  -o-transform: rotate(-45deg);
  /* Safari and Chrome */
  /* Opera */
}
.blue_gradient:not(.scrolled) #nav-toggle span, .blue_gradient:not(.scrolled) #nav-toggle span:before, .blue_gradient:not(.scrolled) #nav-toggle span:after {
  background-color: #fff;
}
.blue_gradient:not(.scrolled) #nav-toggle.active span {
  background-color: transparent;
}
/**************************
RESPONSIVE STYLES
**************************/
@media (max-width: 1400px) {
  #demo_link {
    margin-right: 20px;
  }
  .single-experience #powered_by {
    margin-right: -50px;
  }
}
@media (max-width: 1279px) {
  #burger {
    display: block;
  }
  #demo_link {
    display: none;
  }
  #nav_bar nav {
    display: none;
  }
  #page.active #nav_bar {
    background: linear-gradient(90deg, #027ADD 0%, #2BBFE4 100%) !important;
    box-shadow: none !important;
  }
  #page.active #nav_bar #logo svg rect, #page.active #nav_bar #logo svg path {
    fill: #fff !important;
  }
  #page.active #nav_bar .login_link {
    color: #fff;
  }
  #page.active #nav_bar #nav-toggle span, #page.active #nav_bar #nav-toggle span:before, #page.active #nav_bar #nav-toggle span:after {
    background-color: #fff;
  }
  #page.active #nav_bar #nav-toggle.active span {
    background-color: transparent;
  }
  #page.active #mobile_nav {
    position: fixed;
    display: block;
    padding: 116px 0px 96px;
    background: linear-gradient(90deg, #027ADD 0%, #2BBFE4 100%);
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
  }
  #page.active.scrollUp #mobile_nav {
    display: none;
  }
  #mobile_menu {
    width: 400px;
  }
  #mobile_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
  #mobile_menu ul li {
    margin: 0 0 24px 0;
    font-size: 16px;
    font-family: "Poppins";
  }
  #mobile_menu ul a {
    color: #fff;
    text-decoration: none;
  }
}
@media (max-width: 1200px) {
  h1.xl {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  h1.xl {
    font-size: 36px;
  }
}
@media (max-width: 1170px) {
  .hero_section h2 {
    font-size: 48px;
  }
  .recent_posts_section .recent_post {
    width: 50%;
  }
  .recent_posts_section .recent_post:nth-child(3) {
    display: none;
  }
}
@media (max-width: 970px) {
  .case_study_top {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .case_study_top .top_content {
    max-width: 100%;
  }
  .case_study_top .the_stats {
    max-width: 672px;
    -ms-flex-item-align: end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
  }
  .case_study_section.version_2 .the_stats {
    margin-top: 60px;
  }
  .case_study_middle {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .title_with_image_button_section .title_with_image_button_flex {
    max-width: 609px;
    margin: 0 auto;
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .title_with_image_button_section .content_with_image_content {
    width: 100%;
  }
  .title_with_image_button_section .content_with_image_image {
    width: 100%;
    margin: 0 0 48px;
    max-width: 100%;
  }
  .title_with_image_button_section h3 {
    font-size: 28px;
  }
  .list_with_image_section {
    width: 100%;
  }
  .list_with_image_section .wrapper {
    padding: 0 48px;
  }
  .list_with_image_section .list_with_image_flex {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .list_with_image_section .half {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 609px;
  }
  .list_with_image_section .list_with_image_image {
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .hide_tablet {
    display: none;
  }
  .show_tablet {
    display: block;
  }
  .wrapper {
    padding: 0 24px;
  }
  .wrapper.small {
    padding: 0 48px;
  }
  h2 {
    font-size: 32px;
  }
  .colored_hero_section.hero_section {
    background: #fff;
    padding: 0;
  }
  .colored_hero_section.hero_section .wrapper.small {
    padding: 0;
  }
  .colored_hero_section.hero_section .colored_hero_flex {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .colored_hero_section.hero_section h2 {
    color: #027ADD;
  }
  .colored_hero_section.hero_section .hero_content {
    color: #777792;
    padding-right: 0;
  }
  .colored_hero_section.hero_section .hero_left {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 52px 0px 0px;
  }
  .colored_hero_section.hero_section .hero_image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .colored_hero_section.hero_section .hero_ctas {
    margin-bottom: 50px;
  }
  .colored_hero_section.hero_section .hero_ctas a.cta_type_underline {
    color: #2BBFE4;
  }
  .colored_hero_section.hero_section .hovering_image {
    left: 5%;
  }
  .simple_hero_section {
    padding-bottom: 0px;
  }
  .simple_hero_section.light_blue_gradient {
    padding-bottom: 0px;
  }
  .simple_hero_section.has_mobile {
    padding-top: 0;
  }
  .simple_hero_section .simple_hero_flex {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .simple_hero_section h2 {
    color: #027ADD;
  }
  .simple_hero_section h2 br {
    display: none;
  }
  .simple_hero_section .hero_content {
    color: #777792;
    padding-right: 0;
  }
  .simple_hero_section .hero_left {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 52px 0px 24px;
    background: transparent !important;
  }
  .simple_hero_section .hero_image {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    overflow: hidden;
  }
  .simple_hero_section .hero_image.has_mobile {
    display: none;
  }
  .simple_hero_section .hero_image.mobile_hero {
    display: block;
    width: calc(100% + 96px);
    max-width: calc(100% + 96px);
    padding: 0;
    margin: 0 -48px;
  }
  .content_with_image_flex {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .content_with_image_flex .half {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
  .content_with_image_flex .content_with_image_image {
    margin-bottom: 64px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .case_study_section .case_study_headline {
    font-size: 48px;
    width: 100%;
    max-width: 100%;
    padding: 0 48px;
    margin: 48px auto;
  }
  .image_wcta_section .image_wcta_wrapper {
    max-width: 100%;
  }
  .image_wcta_section .image_wcta_image {
    margin: 0 -48px 52px;
  }
  .testimonial_section .testimonial_flex {
    display: block;
  }
  .testimonial_section .testimonial_image {
    margin-bottom: 52px;
  }
  .testimonial_section .quote_content {
    margin-left: 32px;
  }
  .centered_text_w_cta_section h3 {
    font-size: 28px;
  }
  .two_column_content_section .two_column_content_flex, .slider_section .two_column_content_flex {
    display: block;
  }
  .two_column_content_section .half, .slider_section .half {
    width: 100%;
    margin: 0 auto;
    max-width: 640px;
  }
  .two_column_content_section .two_column_content_right, .slider_section .two_column_content_right {
    margin-top: 16px;
  }
  .colored_box {
    width: 100%;
  }
  .centered_text_w_logos_section h3 {
    font-size: 28px;
  }
  .quick_facts_wrapper {
    padding: 36px 31px 48px 31px;
  }
  .quick_facts_wrapper .two_column_list {
    margin: 48px 0 0 0;
  }
  .admin-bar #bio_popup {
    top: 46px;
  }
  #popup_header {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
  }
  #popup_close {
    position: absolute;
    right: 0;
  }
  #popup_inside {
    padding-top: 0;
  }
  .featured_resources_section .primary_featured_post {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .featured_resources_section .primary_left {
    max-width: 100%;
  }
  .featured_resources_section .primary_right {
    max-width: 100%;
    margin-bottom: 48px;
  }
  .blog_container {
    display: block;
  }
  .blog_container .blog_right {
    margin: 116px 0 0 0;
    width: 100%;
    padding: 0;
  }
  .title_bar_section {
    margin-bottom: 96px;
    padding-top: 42px;
    padding-bottom: 61px;
  }
  .title_bar_section h1.title_bar_content {
    font-size: 32px;
  }
  .contact_box_inner h2 {
    font-size: 24px;
  }
  .experience_animations_section .experience_animations_flex {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .experience_animations_section .experience_animations_flex .content_with_image_content {
    width: 82%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
    margin: 0 auto !important;
  }
  .experience_animations_section .experience_animations_flex .animation_image {
    width: 70%;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin: 0 auto 82px !important;
  }
  .single-experience #logo {
    max-width: 108px;
  }
  .single-experience h1#logo {
    width: auto;
    max-width: none;
  }
  .single-experience #powered_by {
    padding: 30px 24px;
    font-size: 10px;
  }
  .single-experience #powered_by #powered_by_logo {
    width: 128px;
    margin-left: 16px;
  }
  .single-experience .testimonial_cards_section h2 br {
    display: none;
  }
  .single-experience .testimonial_cards_section .quote_container {
    font-size: 18px;
    padding: 26px 24px 55px;
  }
  .single-experience .testimonial_cards_section .title_bar {
    padding: 60px 24px 24px 24px;
  }
  .faqs_section .half {
    width: 100%;
  }
  .faqs_section .half .question_wrapper {
    max-width: 100%;
  }
  .stats_3_section ul.the_stats .grid {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    text-align: center;
  }
  .stats_3_section ul.the_stats .grid .the_stat {
    padding: 0;
    border: none;
  }
  .stats_3_section ul.the_stats .grid .content {
    margin-left: 0;
  }
  .stats_2_section ul.the_stats {
    width: calc(100% + 100px);
  }
  .stats_2_section ul.the_stats li {
    border: none;
    padding-left: 25px;
    padding-right: 25px;
  }
  .stats_2_section ul.the_stats li .the_stat {
    margin-left: 50px;
  }
  .stats_2_section ul.the_stats li .content {
    font-size: 14px;
    padding-left: 50px;
  }
  .stats_2_section ul.the_stats li .info {
    font-size: 12px;
    margin-left: 50px;
  }
  .stats_2_section ul.the_stats li:first-child {
    margin-left: -50px;
  }
  .stats_2_section ul.the_stats li:last-child {
    margin-right: -50px;
  }
  .stats_2_section ul.the_stats br {
    display: none;
  }
}
@media (max-width: 767px) {
  #footer_powered_by {
    display: block;
  }
  #alert_bar #alert_content {
    padding: 0 10px;
  }
  #alert_bar #alert_close {
    right: 20px;
  }
  .single-experience #nav_bar {
    padding: 9px 0;
    background: #fff !important;
  }
  .single-experience #nav_bar #logo {
    max-width: 82px;
  }
  .single-experience #nav_bar h1#logo {
    width: auto;
    max-width: none;
  }
  .single-experience #nav_bar #powered_by {
    display: none;
  }
  #footer_powered_by #powered_by {
    margin-right: 0;
    font-size: 12px;
  }
  #footer_powered_by #powered_by #powered_by_logo {
    width: 156px;
  }
  .hide_mobile {
    display: none;
  }
  .show_mobile {
    display: block;
  }
  .section {
    margin-bottom: 115px;
  }
  .wrapper, .wrapper.small {
    padding: 0 20px;
  }
  h2 {
    font-size: 20px;
  }
  #mobile_menu ul {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
  #mobile_nav .wrapper {
    display: block;
    padding: 0 36px;
  }
  a.blue_button {
    display: block;
    width: 100%;
    max-width: 248px;
    margin: 48px auto;
  }
  #mobile_login_link {
    text-align: center;
  }
  #mobile_login_link a {
    color: #fff;
  }
  #mobile_login_link #login_menu {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    transform: translateY(200%);
  }
  #mobile_login_link.active #login_menu {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  #mobile_login_link_wrapper {
    position: relative;
  }
  #login_menu {
    top: auto;
    bottom: 100%;
    width: 100%;
    right: 0;
    left: 0;
  }
  #login_menu ul {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  #login_menu ul a {
    color: #027ADD;
  }
  #nav_bar {
    padding: 18px 0;
  }
  #header_links {
    display: none;
  }
  #burger {
    position: absolute;
    top: 18;
    left: 20px;
  }
  #nav_bar .wrapper {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .entry {
    font-size: 16px;
  }
  .colored_hero_section.hero_section .hero_content, .simple_hero_section .hero_content {
    margin-top: 0;
  }
  .colored_hero_section.hero_section h2, .simple_hero_section h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .colored_hero_section.hero_section .hero_left, .simple_hero_section .hero_left {
    padding: 24px 20px 30px;
  }
  .simple_hero_section {
    padding-bottom: 0;
    padding-top: 24px;
  }
  .simple_hero_section .hero_left {
    background: #fff;
    margin-left: -24px;
    margin-right: -24px;
    width: auto;
    max-width: unset;
  }
  .simple_hero_section .hero_image {
    padding-bottom: 24px;
  }
  .alert_bar_content {
    text-align: left;
    padding: 20px 0;
  }
  a.alert_bar_link {
    font-size: 16px;
    display: block;
    margin-left: 0;
    margin-top: 16px;
  }
  .case_study_section .case_study_headline {
    font-size: 32px;
    padding: 0 20px;
  }
  .case_study_section .case_study_bottom {
    margin-top: 0;
  }
  .case_study_section .case_study_bottom_flex {
    display: block;
  }
  .case_study_section .case_study_column {
    width: 100%;
  }
  .case_study_section.version_2 .case_study_content_wrapper .case_study_headline {
    padding: 0;
    font-size: 24px;
    margin-top: 0;
  }
  .the_stat {
    margin-bottom: 20px;
  }
  .stat_content_wrapper {
    width: 100%;
  }
  .image_wcta_section .image_wcta_image {
    margin: 0 -24px 48px;
  }
  .testimonial_section .testimonial_flex {
    display: block;
  }
  .testimonial_section .testimonial_image {
    margin-bottom: 36px;
  }
  .testimonial_section .quote_content {
    margin-left: 0px;
  }
  .testimonial_section .the_quote {
    font-size: 22px;
  }
  .form_section .form_flex {
    display: block;
  }
  .form_section .half {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .form_section .form_right .gform_wrapper {
    max-width: 100%;
  }
  .recent_posts_section .recent_posts_grid {
    display: block;
  }
  .recent_posts_section h2.post_title {
    font-size: 16px;
  }
  .recent_posts_section .recent_post {
    margin: 0 auto;
  }
  .recent_posts_section .recent_post:nth-child(3) {
    display: block;
  }
  .centered_text_w_cta_section h3 {
    font-size: 20px;
  }
  .tab_content {
    margin-top: 24px;
    padding: 0;
  }
  .tab_content .slide_title {
    font-size: 16px;
  }
  .tab_content .slide_content {
    font-size: 16px;
  }
  .slide_arrows {
    margin-top: 27px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .slide_arrows .slick-arrow {
    position: relative;
    margin: 0;
    padding: 0;
    bottom: auto;
    margin: 0;
  }
  .slide_arrows .slick-next {
    margin-left: 40px;
  }
  .slide_arrows .slick-prev {
    margin-right: 40px;
  }
  .large_image_boxes {
    display: block;
  }
  .large_image_boxes .the_box {
    margin-bottom: 48px;
  }
  .large_image_boxes .the_box:last-child {
    margin-bottom: 0;
  }
  .large_image_boxes h3.box_title {
    font-size: 16px;
  }
  .title_with_image_button_section h3 {
    font-size: 20px;
  }
  .colored_box {
    width: 100%;
  }
  .colored_box h3.box_title {
    font-size: 16px;
  }
  .colored_box .stat_content {
    font-size: 16px;
  }
  .centered_text_w_logos_section h3 {
    font-size: 20px;
  }
  .people_section .person {
    width: 50%;
  }
  .single_person {
    display: block;
  }
  .single_person .half {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }
  #bio_content {
    padding-bottom: 60px;
  }
  .primary_left h2 {
    margin-bottom: 22px;
  }
  .secondary_featured_post {
    width: 100%;
    margin-bottom: 100px;
  }
  .secondary_featured_post:last-child {
    margin-bottom: 0;
  }
  .the_post_list {
    display: block;
  }
  .the_post_list h3 {
    font-size: 16px;
  }
  .the_post_list .article_right {
    font-size: 12px;
    margin-left: 0;
    width: 100%;
  }
  .the_post_list .date {
    margin-top: 10px;
  }
  .single_post_header .featured_image {
    margin: 0 -20px;
  }
  .blog_entry {
    padding-top: 24px;
  }
  .blog_entry h1 {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .post_meta {
    margin: 24px 0;
  }
  .post_date, .post_author {
    font-size: 12px;
  }
  .title_bar_section {
    padding-top: 23px;
    padding-bottom: 29px;
    margin-bottom: 36px;
  }
  .title_bar_section h1.title_bar_content, .contact_box_inner h2 {
    font-size: 16px;
  }
  .contact_boxes_flex {
    margin-top: -15px;
  }
  .contact_box {
    width: 100%;
  }
  .open_positions_section .article_right {
    text-align: left;
  }
  #footer_buttons {
    display: none;
  }
  #footer_menus {
    display: block;
  }
  #footer_bottom {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer_bottom .footer_left {
    width: 100%;
    margin-bottom: 20px;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #footer_bottom #footer_social {
    width: 50%;
  }
  #footer_bottom .footer_left #bottom_menu li {
    padding: 0 0 0 36px;
  }
  .logo_grid_section .grid_container-large {
    margin: 0px;
  }
  .logo_grid_section .logo_item {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 15px;
  }
  .logo_grid_section .logo_item img {
    margin: 0 auto;
  }
  .stats_section.section .stat_container {
    padding: 48px;
  }
  .stats_section.section .h2 {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .stats_section.section .stat_title {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .two_column_list {
    display: block;
  }
  .the_list {
    margin: 0 0 16px 0;
    font-size: 16px;
  }
  .the_list:last-child {
    margin-bottom: 0;
  }
  .quick_facts_section .the_list li {
    margin-bottom: 16px;
  }
  .people_section .person {
    width: 100%;
  }
}
