@import 'fonts/fontello/css/fontello.css';
.flexbox {
  display: flex;
}
.flexwrap-wrap {
  display: -webkit-flex;
  /* Safari */
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  display: flex;
  flex-wrap: wrap;
}
.flexwrap-no-wrap {
  display: -webkit-flex;
  /* Safari */
  -webkit-flex-wrap: nowrap;
  /* Safari 6.1+ */
  display: flex;
  flex-wrap: nowrap;
}
.life-shadow-transition {
  transition: box-shadow 300ms;
}
.lift-shadow {
  /* https://www.cssmatic.com/box-shadow */
  box-shadow: 0px 3px 16px -1px rgba(0, 0, 0, 0.65);
}
.checkbox-list {
  list-style-type: none;
}
.checkbox-list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 26px;
}
.checkbox-list li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0px;
  background: url('images/icon_checkmark.png');
  background-repeat: no-repeat;
  background-position: center center;
  width: 15px;
  height: 15px;
}
/*==========================================*/
/* Animations */
/* https://github.com/daneden/animate.css */
/*==========================================*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  animation-name: slideInDown;
}
body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: #3e3e3e;
  letter-spacing: inherit;
  line-height: 30px;
  background: #e3f2fd;
  background: linear-gradient(to right, #e3f2fd 0%, #ffffff 34%, #ffffff 57%, #FFF2FD 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3f2fd', endColorstr='#FFF2FD', GradientType=1);
}
h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 40px;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}
h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 400;
}
a {
  color: #0066FF;
}
a:hover {
  text-decoration: none;
  color: #ff7800;
}
strong {
  font-weight: 500;
}
.padded-underline {
  display: inline-block;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .padded-underline {
    padding-bottom: 10px;
  }
}
.flipped {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-filter: FlipH;
          filter: FlipH;
  -ms-filter: "FlipH";
  display: inline-block;
}
.inline {
  display: inline !important;
}
.inline-block {
  display: inline-block !important;
}
.block {
  display: block !important;
}
.steps-image {
  border: 1px solid rgba(0, 112, 255, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  margin: auto;
}
.info-icon {
  color: #0066FF;
  border: 1px solid #0066FF;
  display: inline-block;
  width: 20px;
  height: 21px;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 3px;
}
.info-icon:hover {
  background: #0066FF;
  color: #ffffff !important;
}
.info-icon:before {
  content: "?";
  position: absolute;
  top: -5px;
  left: 5.5px;
  font-size: 14px;
  font-weight: bold;
}
.blue-text {
  color: #0066FF !important;
}
.orange-text {
  color: #ff7800 !important;
}
.align-center {
  text-align: center;
}
.page-body {
  margin-top: 92px;
}
@media only screen and (max-width: 767px) {
  .page-body {
    margin-top: 0;
  }
}
.content {
  padding-bottom: 60px;
}
.masthead {
  color: #3e3e3e;
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #ffffff;
  transition: all 300ms;
}
.masthead a {
  color: #3e3e3e;
  -webkit-font-smoothing: antialiased;
}
.masthead .logo {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  float: left;
}
.masthead .logo img {
  max-width: 100%;
  width: 120px;
  height: auto;
  transition: max-width 400ms;
}
.masthead.stuck {
  background-color: #ffffff;
  box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.34);
}
.masthead.stuck a {
  color: #727270;
}
.masthead.stuck .btn {
  color: #ffffff !important;
}
.masthead.stuck .logo img {
  /*max-width: 90%;*/
}
@media only screen and (max-width: 767px) {
  .masthead {
    position: relative;
  }
  .masthead.mobile-nav-active {
    position: fixed;
  }
  .masthead .masthead-inner {
    position: relative;
    height: 65px;
  }
  .masthead .logo {
    margin: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
    z-index: 1;
  }
  .masthead .logo img {
    max-width: 85px;
    height: auto;
  }
}
.nav-container {
  /*overflow: auto;*/
  text-transform: uppercase;
  margin-top: 20px;
  position: relative;
  display: inline-block;
  float: right;
  width: 85%;
}
@media only screen and (max-width: 991px) {
  .nav-container {
    width: 81%;
  }
}
@media only screen and (max-width: 767px) {
  .nav-container {
    display: none;
    width: 100%;
  }
  .nav-container.mobile-nav-active {
    display: block;
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
  }
  .nav-container.mobile-nav-active .main-navigation {
    display: block;
    position: relative;
    margin: 0;
  }
  .nav-container.mobile-nav-active .main-navigation > ul {
    display: block;
  }
  .nav-container.mobile-nav-active .main-navigation > ul li {
    margin: 0;
    padding: 0;
    display: block;
    height: auto;
    text-align: center;
    border-bottom: 1px solid #cfd8d6;
  }
  .nav-container.mobile-nav-active .main-navigation > ul li a {
    font-size: 17px;
    padding: 15px 0 15px 0;
    display: inline-block;
  }
  .nav-container.mobile-nav-active .cta-navigation {
    display: block;
    float: none;
    padding-top: 0;
  }
  .nav-container.mobile-nav-active .cta-navigation ul {
    display: block;
  }
  .nav-container.mobile-nav-active .cta-navigation ul li {
    display: block;
    text-align: center;
    height: auto;
    margin: 0;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #cfd8d6;
  }
  .nav-container.mobile-nav-active .cta-navigation ul li a {
    font-size: 17px;
  }
  .nav-container.mobile-nav-active .cta-navigation ul li:nth-last-child(2) {
    border-bottom: none;
  }
  .nav-container.mobile-nav-active .cta-navigation ul li:last-child {
    margin: 0;
    border-bottom: none;
  }
}
.main-navigation {
  display: inline-block;
  /*float: left;*/
  position: absolute;
  /*margin-left: 20px;*/
  margin-top: 10px;
}
.main-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.main-navigation ul li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
  height: 75px;
}
.main-navigation ul li:last-child {
  margin-right: 0;
}
.main-navigation ul li ul {
  transition: opacity 700ms;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: white;
  top: 75px;
  left: 0;
  width: 235px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  /* https://www.cssmatic.com/box-shadow */
  box-shadow: 0px 3px 16px -1px rgba(0, 0, 0, 0.65);
  text-align: center;
}
.main-navigation ul li ul:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid #ffffff;
  position: absolute;
  top: -12px;
  left: 108px;
}
.main-navigation ul li ul li {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  height: auto;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .main-navigation ul li ul {
    opacity: 1;
    visibility: visible;
    display: none;
    position: relative;
    top: auto;
    width: 100%;
    box-shadow: none;
    padding: 0;
    border: none;
    background: #efefef;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .main-navigation ul li ul:before {
    content: none;
  }
  .main-navigation ul li ul li {
    border: none;
    border-bottom: 0 !important;
    padding: 5px 0 5px 0 !important;
  }
  .main-navigation ul li ul li a {
    text-transform: none;
    font-weight: 500;
    padding: 5px !important;
    line-height: 24px !important;
  }
}
.cta-navigation {
  display: inline-block;
  float: right;
}
@media only screen and (max-width: 991px) {
  .cta-navigation {
    padding-top: 10px;
  }
}
.cta-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cta-navigation ul li {
  display: inline-block;
}
.cta-navigation ul li:last-child {
  margin-left: 15px;
}
.main-navigation ul li a,
.cta-navigation ul li a {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #727270;
  transition: color 300ms;
}
.main-navigation ul li a:hover,
.cta-navigation ul li a:hover {
  color: #ff7800;
}
.main-navigation ul li a.active,
.cta-navigation ul li a.active,
.main-navigation ul li a.nav-selected,
.cta-navigation ul li a.nav-selected {
  color: #ff7800;
}
.main-navigation ul li a.disabled,
.cta-navigation ul li a.disabled {
  pointer-events: none;
  opacity: 0.65;
}
.cta-navigation li.phone a {
  font-weight: bold;
  color: #0066FF;
  margin-right: 15px;
}
.cta-navigation li.phone a:before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  background-image: url('/css/images/icon_phone_solid.png');
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.breadcrumbs {
  margin-top: 30px;
}
.breadcrumbs ul {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 10px;
}
.breadcrumbs ul li {
  display: inline-block;
}
.breadcrumbs ul li a {
  color: #37383c;
  font-size: 14px;
}
.breadcrumbs ul li a:hover {
  color: #ff7800;
}
.breadcrumbs ul li:after {
  content: ">";
  display: inline-block;
  padding-left: 7px;
  padding-right: 5px;
  font-size: 13px;
}
.breadcrumbs ul li:last-child:after {
  content: "";
  padding: 0;
}
.mobile-nav-trigger {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 15px;
  top: 17px;
  text-transform: uppercase;
  color: #0066FF;
  font-weight: 300;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .mobile-nav-trigger {
    display: inline-block;
  }
}
.mobile-nav-trigger .mnt-label:after {
  content: "MENU";
}
.mobile-nav-trigger .mnt-icon {
  display: inline-block;
  border-bottom: 1px solid #0066FF;
  width: 17px;
  position: relative;
  margin-right: 5px;
  margin-top: -1px;
  vertical-align: middle;
}
.mobile-nav-trigger .mnt-icon:before {
  content: "";
  border-top: 1px solid #0066FF;
  display: inline-block;
  position: absolute;
  top: -6px;
  right: 0;
  width: 25px;
}
.mobile-nav-trigger .mnt-icon:after {
  content: "";
  border-top: 1px solid #0066FF;
  display: inline-block;
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 25px;
}
.mobile-nav-trigger.active .mnt-label:after {
  content: "CLOSE";
}
.mobile-nav-trigger.active .mnt-icon {
  border-bottom: none;
}
.mobile-nav-trigger.active .mnt-icon:before {
  content: "";
  border: none;
}
.mobile-nav-trigger.active .mnt-icon:after {
  content: "X";
  border: none;
  display: inline-block;
  position: absolute;
  bottom: -13px;
  right: 0;
  font-size: 18px;
  width: 11px;
}
.nav-dropdown-arrow {
  display: none;
  width: 15px;
  height: 15px;
  background-image: url('images/icon_down_arrow.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: middle;
  margin-top: -5px;
  margin-left: 10px;
  cursor: pointer;
}
.nav-dropdown-arrow.active {
  background-image: url('images/icon_up_arrow.png');
}
@media only screen and (max-width: 767px) {
  .nav-dropdown-arrow {
    display: inline-block;
  }
}
.slider-wrap {
  position: relative;
  width: 100%;
  background-image: none;
}
.slider-wrap video {
  width: 100%;
  height: auto;
  display: block;
}
.slider-wrap img {
  width: 100%;
  height: auto;
}
.slider-wrap .video-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #ffffff;
}
.slider-wrap .video-overlay.transparent {
  background-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .slider-wrap .video-overlay.transparent {
    background-color: rgba(0, 99, 202, 0.8);
  }
}
.slider-wrap .video-overlay .slider-body {
  max-width: 50%;
}
.slider-wrap .video-overlay .slider-body .logo {
  margin-bottom: 20px;
}
.slider-wrap .video-overlay .slider-body h1 {
  -webkit-font-smoothing: antialiased;
  font-size: 65px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 65px;
  transition: all 400ms;
  color: #0066FF;
  letter-spacing: -3px;
}
@media only screen and (max-width: 991px) {
  .slider-wrap .video-overlay .slider-body h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
.slider-wrap .video-overlay .slider-body h1.dark {
  color: #000;
}
.slider-wrap .video-overlay .slider-body h1.light {
  color: #fff;
}
.slider-wrap .video-overlay .slider-body p {
  font-size: 23px;
  line-height: 35px;
  display: block;
  margin-bottom: 35px;
  font-weight: 500;
  color: #232424;
}
@media only screen and (max-width: 991px) {
  .slider-wrap .video-overlay .slider-body p {
    font-size: 22px;
    line-height: 30px;
  }
}
.slider-wrap .video-overlay .slider-body .btn:hover {
  background-color: #cc6000;
}
@media only screen and (max-width: 1199px) {
  .slider-wrap .video-overlay .slider-body h1 {
    margin-bottom: 35px;
    font-size: 60px;
    line-height: 62px;
  }
}
@media only screen and (max-width: 991px) {
  .slider-wrap .video-overlay .slider-body {
    max-width: 45%;
  }
  .slider-wrap .video-overlay .slider-body h1 {
    font-size: 55px;
    line-height: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
  }
  .slider-wrap img {
    display: none;
  }
  .slider-wrap video {
    display: none;
  }
  .slider-wrap .video-overlay {
    display: block;
    padding-top: 60px;
  }
  .slider-wrap .video-overlay .slider-body {
    max-width: 100%;
  }
  .slider-wrap .video-overlay .slider-body h1 {
    margin-top: 0;
    font-size: 50px;
    line-height: 59px;
    color: #ffffff;
    display: block;
    max-width: 90%;
    margin-bottom: 35px;
  }
  .slider-wrap .video-overlay .slider-body p {
    display: none;
  }
  .slider-wrap .video-overlay .slider-body .btn {
    padding: 15px 40px;
  }
}
.slider-wrap.promo-slider {
  height: 541px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.slider-wrap.promo-slider .slider-img-placeholder {
  display: none;
}
.slider-wrap.promo-slider h1 {
  font-size: 55px !important;
  line-height: 60px !important;
  margin-bottom: 35px !important;
}
@media only screen and (max-width: 1199px) {
  .slider-wrap.promo-slider .video-overlay .slider-body {
    max-width: 45%;
  }
}
@media only screen and (max-width: 991px) {
  .slider-wrap.promo-slider .video-overlay .slider-body {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .slider-wrap.promo-slider {
    background-size: auto 550px;
    background-position: -802px;
  }
  .slider-wrap.promo-slider h1 {
    color: #ffffff !important;
    font-size: 45px !important;
    line-height: 55px !important;
  }
  .slider-wrap.promo-slider .logo {
    display: block !important;
  }
  .slider-wrap.promo-slider .video-overlay .slider-body {
    max-width: 100%;
  }
}
.slider-wrap.promo-slider.generic h1 {
  font-size: 60px !important;
  line-height: 68px !important;
  letter-spacing: 0.001em;
}
.slider-wrap.promo-slider.generic .video-overlay .slider-body {
  max-width: 55%;
}
@media only screen and (max-width: 991px) {
  .slider-wrap.promo-slider.generic .video-overlay .slider-body {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .slider-wrap.promo-slider.generic {
    background-size: auto 550px;
    background-position: -802px;
  }
  .slider-wrap.promo-slider.generic h1 {
    color: #ffffff !important;
    font-size: 45px !important;
    line-height: 55px !important;
  }
  .slider-wrap.promo-slider.generic .video-overlay .slider-body {
    max-width: 100%;
  }
}
.btn {
  transition: background-color 400ms !important;
  border-radius: 45px;
}
.btn.peach {
  background-color: #e06749;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms;
}
.btn.peach:hover {
  background-color: #dc5533;
  color: #ffffff !important;
}
.btn.blue {
  background-color: #0066FF;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms;
}
.btn.blue:hover {
  background-color: #005ce6;
  color: #ffffff !important;
}
.btn.orange {
  background-color: #ff7800;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms;
}
.btn.orange:hover {
  background-color: #e66c00;
  color: #ffffff !important;
}
.btn.big {
  letter-spacing: 0.04em;
  padding: 13px 33px;
  transition: padding 400ms;
}
@media only screen and (max-width: 991px) {
  .btn.big {
    padding: 8px 13px;
    font-size: 13px;
  }
}
.btn.med {
  letter-spacing: 0.04em;
  padding: 11px 31px;
  transition: padding 400ms;
}
@media only screen and (max-width: 991px) {
  .btn.med {
    padding: 8px 15px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .btn.med {
    padding: 15px 40px;
  }
}
.btn.lg {
  letter-spacing: 0.04em;
  padding: 15px 65px;
  transition: padding 400ms;
}
@media only screen and (max-width: 991px) {
  .btn.lg {
    padding: 8px 15px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .btn.lg {
    padding: 15px 40px;
  }
}
.btn.trans-white {
  background: none;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-weight: bold;
  cursor: default;
  margin: 0 auto;
}
.btn.trans-white-large {
  background: none;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 auto;
  cursor: default;
}
@media only screen and (max-width: 991px) {
  .btn.trans-white-large {
    padding: 15px 30px;
  }
}
.btn.trans-white-large:hover {
  cursor: default;
}
.btn.trans-black {
  background: none;
  border: 2px solid #3e3e3e;
  border-radius: 3px;
  color: #3e3e3e;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 30px;
  padding-right: 28px;
  font-size: 13px;
  margin: 0 auto;
}
.btn.trans-black:hover {
  background-color: rgba(30, 31, 34, 0.8);
  color: #ffffff;
}
.btn.trans-black-large {
  background: none;
  border: 2px solid #3e3e3e;
  border-radius: 3px;
  color: #3e3e3e;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 18px 34px;
  font-size: 13px;
  line-height: 13px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .btn.trans-black-large {
    padding: 15px 30px;
  }
}
.btn.trans-black-large:hover {
  background-color: rgba(30, 31, 34, 0.8);
  color: #ffffff;
}
.how-it-works {
  padding-top: 85px;
  padding-bottom: 85px;
  cursor: default;
}
@media only screen and (max-width: 767px) {
  .how-it-works {
    padding-bottom: 65px;
    padding-top: 65px;
  }
}
.how-it-works-header {
  text-align: center;
  margin-bottom: 67px;
}
.how-it-works-header h1,
.how-it-works-header h2,
.how-it-works-header h3 {
  font-weight: 400;
}
.how-it-works-header p {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  display: inline-block;
  width: 80%;
  margin-top: 5px;
  font-size: 1.1em;
}
@media only screen and (max-width: 991px) {
  .how-it-works-header p {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-header p {
    font-weight: 100;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-header h1 {
    display: block;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 20px;
  }
}
.how-it-works .features {
  display: flex;
}
.how-it-works .features .feature-item {
  text-align: center;
  width: 25%;
  cursor: default;
}
.how-it-works .features .feature-item h3 {
  font-weight: bold;
  color: #3e3e3e;
  margin-bottom: 20px;
  margin-top: 40px;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.05em;
}
.how-it-works .features .feature-item img {
  /*-webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;*/
  width: auto;
  height: 75px;
}
.how-it-works .features .feature-item p {
  display: block;
  max-width: 75%;
  margin: 0 auto;
  font-size: 1em;
  line-height: 1.3em;
}
@media only screen and (max-width: 767px) {
  .how-it-works .features {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
  }
  .how-it-works .features .feature-item {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .how-it-works .features {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
  }
  .how-it-works .features .feature-item {
    width: 100%;
    margin-bottom: 50px;
  }
  .how-it-works .features .feature-item h3 {
    margin-top: 20px;
  }
}
.how-it-works-learn-more {
  display: block;
  text-align: center;
  margin-top: 85px;
}
@media only screen and (max-width: 767px) {
  .how-it-works-learn-more {
    margin-top: 15px;
  }
}
.credibility-wrap-container {
  background-color: #efefef;
}
.credibility-wrap-container .credibility-wrap {
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .credibility-wrap-container .credibility-wrap {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
  }
}
.credibility-wrap-container .credibility-wrap .credibility-item img {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .credibility-wrap-container .credibility-wrap .credibility-item img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .credibility-wrap-container .credibility-wrap .credibility-item {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .credibility-wrap-container .credibility-wrap .credibility-item img {
    max-width: 90%;
  }
}
.video-cta {
  text-align: center;
  background-image: url('images/banner_bg_video_still.png');
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed;*/
  position: relative;
  color: #ffffff;
}
.video-cta .video-cta-overlay {
  padding: 150px;
  background-color: rgba(0, 102, 204, 0.8);
}
.video-cta h3 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  display: block;
  width: 450px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.video-cta a svg path {
  fill: #ff7800;
  transition: fill 350ms;
}
.video-cta a:hover svg path {
  fill: #ffffff;
}
@media only screen and (max-width: 767px) {
  .video-cta .video-cta-overlay {
    padding: 60px;
  }
  .video-cta h3 {
    width: 80%;
  }
}
@media only screen and (max-width: 479px) {
  .video-cta .video-cta-overlay {
    padding: 40px;
  }
  .video-cta h3 {
    width: 100%;
    font-size: 28px;
    line-height: 37px;
  }
  .video-cta img {
    max-width: 25%;
  }
}
.integrations {
  padding-top: 60px;
  padding-bottom: 60px;
}
.integrations-header {
  text-align: center;
}
.integrations-header p {
  display: block;
  margin: 0 auto;
  width: 43%;
}
@media only screen and (max-width: 1199px) {
  .integrations-header p {
    width: 55%;
  }
}
@media only screen and (max-width: 991px) {
  .integrations-header p {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .integrations-header p {
    width: 100%;
  }
}
.integrations-search {
  text-align: center;
  display: block;
  margin-top: 40px;
  margin-bottom: 60px;
}
.integrations-search form {
  width: 40%;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .integrations-search form {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .integrations-search form {
    width: 100%;
  }
}
.integrations-search-border {
  border: 1px solid grey;
  border-radius: 20px;
  text-align: left;
  padding: 5px 20px 5px 20px;
}
.integrations-search-border input {
  width: 90%;
  border: 0;
  font-size: 14px;
  height: 32px;
  border: 1px solid #ffffff;
}
.integrations-search-border input:focus {
  outline: none;
}
.integrations-search-border a {
  display: inline-block;
  width: 25px;
  height: 25px;
  float: right;
}
.integrations-search-border a img {
  width: 100%;
  height: auto;
}
.integrations-search-results {
  /*border: 1px solid red;*/
  width: 90%;
  margin: 0 auto;
  display: -webkit-flex;
  /* Safari */
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .integrations-search-results {
    width: 100%;
  }
}
.integrations-search-results span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 100px;
  margin-bottom: 40px;
  /*.life-shadow-transition;
      &:hover {
        .lift-shadow;
      }*/
}
@media only screen and (max-width: 991px) {
  .integrations-search-results span {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .integrations-search-results span {
    width: 50%;
  }
}
.integrations-search-results span img {
  /*-webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;*/
  max-width: 140px;
  height: auto;
}
.integrations-footer {
  margin-top: 30px;
}
.integrations-footer p {
  text-align: center;
  font-size: 17px;
  display: block;
  margin-bottom: 20px;
}
.integrations-footer p a {
  font-weight: 500;
}
.integrations.full .integrations-search-results {
  width: 100%;
}
.testimonials-slider {
  background: #0066FF;
  padding-top: 125px;
  padding-bottom: 125px;
}
.testimonials-slider .slide-item {
  outline: none !important;
}
.testimonials-slider .slide-item:focus {
  outline: none !important;
}
.testimonials-slider .slide-item:active {
  outline: none !important;
}
.testimonials-slider .testimonial-wrap {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
}
.testimonials-slider .testimonial-wrap .headshot {
  /*-webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;*/
  position: absolute;
  /*border: 5px solid @medBlue;*/
  top: 0;
  left: 0;
}
.testimonials-slider .testimonial-wrap .testimonial-body {
  padding-left: 265px;
  color: #ffffff;
}
.testimonials-slider .testimonial-wrap .testimonial-body .testimonial-body-inner {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.testimonials-slider .testimonial-wrap .testimonial-body h3 {
  display: block;
  position: relative;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 0;
}
.testimonials-slider .testimonial-wrap .testimonial-body h3 .quote-open {
  position: absolute;
  top: 0;
  left: -65px;
}
.testimonials-slider .testimonial-wrap .testimonial-body h3 .quote-close {
  position: absolute;
  bottom: 0;
  right: -40px;
}
.testimonials-slider .testimonial-wrap .testimonial-body h3 sup {
  font-weight: bold;
}
.testimonials-slider .testimonial-wrap .testimonial-body .author {
  font-size: 15px;
  line-height: 22px;
  margin-top: 35px;
  font-weight: 300;
}
.testimonials-slider .testimonial-wrap .testimonial-body .author span {
  display: block;
}
.testimonials-slider .testimonial-wrap .testimonial-body .author a {
  color: #ffffff;
  font-weight: 500;
}
.testimonials-slider .slick-next,
.testimonials-slider .slick-prev {
  position: absolute;
  font-family: 'fontello';
  border: 0;
  background: none;
  font-size: 35px;
  bottom: 40%;
  color: #73abe3;
  z-index: 99;
}
.testimonials-slider .slick-next:focus,
.testimonials-slider .slick-prev:focus {
  outline: none;
}
.testimonials-slider .slick-next:active,
.testimonials-slider .slick-prev:active {
  outline: none;
}
.testimonials-slider .slick-next {
  right: 5%;
}
.testimonials-slider .slick-next:hover {
  color: #ff7800;
}
.testimonials-slider .slick-prev {
  left: 5%;
}
.testimonials-slider .slick-prev:hover {
  color: #ff7800;
}
@media only screen and (max-width: 767px) {
  .testimonials-slider {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .testimonials-slider .testimonial-wrap {
    width: 100%;
    text-align: center;
  }
  .testimonials-slider .testimonial-wrap .testimonial-body {
    padding: 35px 35px 0 35px;
  }
  .testimonials-slider .testimonial-wrap .testimonial-body h3 .quote-open {
    left: -50px;
  }
  .testimonials-slider .testimonial-wrap .testimonial-body h3 .quote-close {
    right: -50px;
  }
  .testimonials-slider .testimonial-wrap .headshot {
    position: relative;
    display: inline-block;
  }
}
.cta-banner {
  background-color: #0066FF;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-banner-body {
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 120px 0;
}
.cta-banner-body p {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 40px;
}
.comingsoon {
  font-family: 'Special Elite', cursive;
  color: #FF7800;
  font-size: 3em;
  line-height: 1.2em;
  margin: 1em;
  text-align: center;
  /* IE 9 */
  -webkit-transform: rotate(-6deg);
  /* Safari */
  transform: rotate(-6deg);
}
.page-banner {
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 60px;
}
.page-banner .page-banner-body {
  text-align: center;
  padding: 80px;
}
.page-banner .page-banner-body h2 {
  font-size: 60px;
}
@media only screen and (max-width: 767px) {
  .page-banner .page-banner-body h2 {
    font-size: 48px;
    line-height: 55px;
  }
}
.page-banner .page-banner-body p {
  display: block;
  font-size: 18px;
  margin-top: 15px;
  width: 100%;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 24px;
}
.page-banner .page-banner-body.theme-dark {
  color: white;
}
.page-banner .page-banner-body.theme-dark a {
  color: #ff7800;
}
.page-banner .page-banner-body.theme-light {
  color: #3e3e3e;
}
.page-banner .page-banner-body.small h2 {
  font-size: 40px;
}
.tier-header {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.tier-header h1 {
  margin-top: 0;
}
.tier-header p {
  display: block;
  margin-top: 35px;
  font-size: 19px;
  line-height: 29px;
}
.content.generic h1,
.content.generic h2,
.content.generic h3 {
  margin-top: 0;
}
.content hr {
  border-top: 1px solid #cccccc;
  display: block;
  margin-top: 55px;
  margin-bottom: 55px;
}
.contact {
  display: block;
  margin-top: 20px;
  margin-bottom: 40px;
}
.contact span {
  display: block;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .frm-contact {
    margin-bottom: 40px;
  }
}
.form-cta {
  background-image: url('../../images/banner_landing_cta_bg1.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 765px;
  position: relative;
  margin-top: 60px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}
.form-cta-body {
  margin-left: 10%;
  color: #ffffff;
  width: 350px;
}
.form-cta-body h1 {
  font-size: 42px;
  line-height: 55px;
}
@media only screen and (max-width: 991px) {
  .form-cta-body h1 {
    font-size: 30px;
    line-height: 47px;
  }
}
@media only screen and (max-width: 1199px) {
  .form-cta-body {
    margin-left: 8%;
  }
}
.form-cta-form-container {
  position: absolute;
  width: 45%;
  border: 1px solid #959697;
  background: #fff;
  right: 125px;
  border-radius: 5px;
  top: -40px;
  bottom: -40px;
  padding: 30px 40px;
  /*.lift-shadow;*/
}
@media only screen and (max-width: 1199px) {
  .form-cta-form-container {
    right: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .form-cta-form-container {
    right: 50px;
  }
}
.form-cta-form-container h1,
.form-cta-form-container h2,
.form-cta-form-container h3,
.form-cta-form-container p {
  display: block;
}
.form-cta-form-container h2 {
  font-weight: 500;
  margin-bottom: 25px;
}
.form-cta-form-container p {
  margin-bottom: 45px;
}
.form-cta-form-container .form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-cta-form-container .form-group label.error {
  font-weight: 400;
  font-size: 14px;
  background: #da4646;
  color: white;
  padding: 3px 15px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  bottom: -51px;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  right: 103%;
  top: 10%;
  height: 37px;
}
.form-cta-form-container .form-group label.error:after {
  content: "";
  background: none;
  width: 0;
  height: 0;
  position: absolute;
  border-top: 18px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 12px solid #da4646;
  right: -12px;
  top: 1px;
}
.form-cta-form-container .tc-form textarea {
  height: 215px;
}
@media only screen and (max-width: 767px) {
  .form-cta {
    display: block;
    margin-top: 0;
  }
  .form-cta .form-cta-body {
    margin: auto;
    width: 70%;
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .form-cta .form-cta-body h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  .form-cta .form-cta-form-container {
    display: block;
    position: relative;
    padding: 30px;
    margin: 50px auto 60px auto;
    width: 90%;
    left: auto;
    right: auto;
  }
}
.pricing-group {
  width: 80%;
  margin: 60px auto 120px auto;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .pricing-group {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .pricing-group {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.pricing-group .pricing-widget {
  border: 1px solid rgba(0, 112, 255, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  min-height: 300px;
  width: 47%;
  padding: 20px;
  text-align: center;
  position: relative;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .pricing-group .pricing-widget {
    width: 100%;
    margin-bottom: 60px;
  }
}
.pricing-group .pricing-widget:hover {
  background-color: #fff;
  /*rgba(255,255,255,.1) ;*/
  -webkit-font-smoothing: antialiased;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.pricing-group .pricing-widget .title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 40px;
}
.pricing-group .pricing-widget .pricing-model .big-text {
  color: #0066FF;
  font-size: 80px;
  display: inline-block;
  position: relative;
  letter-spacing: -4px;
  line-height: 85px;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 767px) {
  .pricing-group .pricing-widget .pricing-model .big-text {
    font-size: 62px;
  }
}
.pricing-group .pricing-widget .pricing-model .big-text sup {
  font-size: 25px;
  position: absolute;
  top: 25px;
  left: -15px;
}
.pricing-group .pricing-widget .pricing-model .med-text {
  color: #0066FF;
  font-size: 25px;
}
.pricing-group .pricing-widget .pricing-model .small-text {
  color: #0066FF;
  font-size: 18px;
}
.pricing-group .pricing-widget .pw-body {
  font-weight: bold;
  display: block;
  margin: 30px auto 15px auto;
  line-height: 25px;
  width: 76%;
  font-size: 19px;
  min-height: 110px;
  max-height: 100px;
  cursor: default;
}
@media only screen and (max-width: 991px) {
  .pricing-group .pricing-widget .pw-body {
    width: 95%;
  }
}
.pricing-group .pricing-widget .feature-list {
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0 auto 60px auto;
  font-size: 16px;
  width: auto;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .pricing-group .pricing-widget .feature-list {
    margin-bottom: 25px;
  }
}
.pricing-group .pricing-widget .feature-list li {
  position: relative;
  padding-left: 25px;
  line-height: 24px;
  margin-bottom: 10px;
}
.pricing-group .pricing-widget .feature-list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0px;
  top: 4px;
  background-image: url('/css/images/icon_checkmark.png');
  background-repeat: no-repeat;
  background-position: center center;
}
.pricing-group .pricing-widget .pw-cta-button {
  position: absolute;
  bottom: 10px;
  z-index: 9;
  left: 0;
  right: 0;
}
.compliance-group {
  width: 90%;
  margin: 60px auto 120px auto;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .compliance-group {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .compliance-group {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 60px;
  }
}
.compliance-group .compliance-widget {
  min-height: 300px;
  cursor: default;
  width: 47%;
  height: 650px;
  border-radius: 10px;
  text-align: center;
  padding: 40px 20px 85px 20px;
  position: relative;
  z-index: 1;
  /* For Safari 3.1 to 6.0 */
  transition: box-shadow 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .compliance-group .compliance-widget {
    width: 60%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 660px) {
  .compliance-group .compliance-widget {
    width: 100%;
  }
}
.compliance-group .compliance-widget .cw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.compliance-group .compliance-widget:hover {
  /* https://www.cssmatic.com/box-shadow */
  box-shadow: 0px 3px 16px -1px rgba(0, 0, 0, 0.65);
}
.compliance-group .compliance-widget .title {
  font-size: 29px;
  font-weight: 400;
}
.compliance-group .compliance-widget .pricing-model {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compliance-group .compliance-widget .pricing-model .big-text {
  color: #0066FF;
  font-size: 80px;
  display: inline-block;
  position: relative;
  letter-spacing: -4px;
  line-height: 85px;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}
.compliance-group .compliance-widget .pricing-model .big-text sup {
  font-size: 25px;
  position: absolute;
  top: 25px;
  left: -15px;
}
.compliance-group .compliance-widget .pricing-model .big-text sup.right {
  left: inherit;
  right: -32px;
  font-size: 38px;
}
.compliance-group .compliance-widget .pricing-model .med-text {
  color: #000000;
  font-size: 25px;
}
.compliance-group .compliance-widget .pricing-model .small-text {
  color: #000000;
  font-size: 18px;
}
.compliance-group .compliance-widget .cw-desc-wrap {
  cursor: default;
  min-height: 250px;
}
.compliance-group .compliance-widget .cw-desc-wrap.hover {
  display: none;
}
.compliance-group .compliance-widget .cw-desc-wrap-container {
  cursor: default;
}
.compliance-group .compliance-widget .cw-desc-wrap-container:hover .cw-desc-wrap {
  display: none;
}
.compliance-group .compliance-widget .cw-desc-wrap-container:hover .cw-desc-wrap.hover {
  display: block;
}
.compliance-group .compliance-widget .pw-body {
  font-weight: 400;
  display: block;
  margin: 20px auto 15px auto;
  line-height: 25px;
  width: 80%;
  cursor: default;
  font-size: 16px;
}
.compliance-group .compliance-widget .pw-body strong {
  font-weight: 600;
}
.compliance-group .compliance-widget .pw-body.small {
  font-size: 15px;
  line-height: 20px;
}
.compliance-group .compliance-widget .pw-cta-button {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 100%;
}
.compliance-group .compliance-widget .pw-cta-button .btn {
  background: none;
  border: 1px solid white;
}
.compliance-group .compliance-widget .pw-cta-button .btn:hover {
  border: 1px solid #ff7800 !important;
  background-color: #ff7800;
}
.compliance-group .compliance-widget.members {
  border: 1px solid #0066FF;
  background-color: #0066FF;
  background-image: url('/css/images/compliance_bg1.png');
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff !important;
}
.compliance-group .compliance-widget.members .cw-overlay {
  background-color: rgba(0, 102, 204, 0);
  transition: background-color 500ms;
}
.compliance-group .compliance-widget.members:hover .cw-overlay {
  background-color: #0066cc;
}
.compliance-group .compliance-widget.members .big-text,
.compliance-group .compliance-widget.members .small-text {
  color: #ffffff !important;
}
.compliance-group .compliance-widget.provisional {
  border: 1px solid #b7b7b7;
  background-color: #0066FF;
  background-image: url('/css/images/provisional_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.compliance-group .compliance-widget.provisional .cta-deal {
  background: #232424;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-weight: 300;
  font-size: 15px;
  padding-top: 2px;
  padding-bottom: 3px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.compliance-group .compliance-widget.provisional .cw-overlay {
  background-color: rgba(161, 190, 235, 0);
  transition: background-color 500ms;
}
.compliance-group .compliance-widget.provisional .big-text,
.compliance-group .compliance-widget.provisional .med-text,
.compliance-group .compliance-widget.provisional .small-text {
  color: #000000 !important;
}
.compliance-group .compliance-widget.provisional .pw-cta-button .btn {
  color: #000000;
  border: 1px solid #000000;
}
.compliance-group .compliance-widget.provisional:hover .cw-overlay {
  background-color: #a1beeb;
}
.toggle-widget {
  display: inline-block;
  width: 69px;
  height: 36px;
  background-color: #09325c;
  border-radius: 45px;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  outline: none;
}
.toggle-widget::-moz-selection {
  background: #ffffff;
}
.toggle-widget::selection {
  background: #ffffff;
}
.toggle-widget::-moz-selection {
  background: #ffffff;
}
.toggle-widget .indicator {
  display: inline-block;
  outline: none;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 6px;
  transition: left 200ms;
}
.toggle-widget .indicator::-moz-selection {
  background: #ffffff;
}
.toggle-widget .indicator::selection {
  background: #ffffff;
}
.toggle-widget .indicator::-moz-selection {
  background: #ffffff;
}
.toggle-widget .indicator:active,
.toggle-widget .indicator:focus {
  outline: none;
}
.toggle-widget:active,
.toggle-widget:focus {
  outline: none;
}
.toggle-widget:hover .indicator {
  background-color: #408cd9;
}
.toggle-widget.left .indicator {
  left: 6px;
}
.toggle-widget.right .indicator {
  left: 38px;
}
.pricing-toggle-wrap {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.pricing-toggle-wrap::-moz-selection {
  background: #ffffff;
}
.pricing-toggle-wrap::selection {
  background: #ffffff;
}
.pricing-toggle-wrap::-moz-selection {
  background: #ffffff;
}
.pricing-toggle-wrap .toggle-option {
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  color: #a5a5a3;
  font-weight: 500;
}
.pricing-toggle-wrap .toggle-option::-moz-selection {
  background: #ffffff;
}
.pricing-toggle-wrap .toggle-option::selection {
  background: #ffffff;
}
.pricing-toggle-wrap .toggle-option::-moz-selection {
  background: #ffffff;
}
.pricing-toggle-wrap .toggle-option.active {
  color: #09325c;
}
.pricing-options-grid {
  display: -webkit-flex;
  /* Safari */
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .pricing-options-grid .pricing-card {
    width: 100% !important;
    margin-bottom: 40px !important;
  }
}
.pricing-card {
  border: 1px solid #a5a5a3;
  border-radius: 5px;
  text-align: center;
  padding: 20px 20px 65px 20px;
  margin-top: 20px;
  margin-bottom: 80px;
  position: relative;
  width: 250px;
  display: inline-block;
  transition: box-shadow 300ms;
}
.pricing-card:hover {
  /* https://www.cssmatic.com/box-shadow */
  box-shadow: 0px 3px 16px -1px rgba(0, 0, 0, 0.65);
}
.pricing-card h3 {
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 10px 0;
}
.pricing-card .pricing-model {
  color: #0066FF;
  margin-bottom: 25px;
  height: auto;
}
.pricing-card .pricing-model .price {
  font-size: 90px;
  position: relative;
  font-weight: 100;
  display: inline-block;
  padding: 0;
  margin: 0;
  letter-spacing: -4px;
}
.pricing-card .pricing-model .price sup {
  position: absolute;
  font-size: 25px;
  top: 30px;
  left: -15px;
}
.pricing-card .pricing-model .duration {
  font-size: 25px;
}
.pricing-card .billing-cycle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.pricing-card .billing-desc {
  display: block;
  width: 87%;
  padding-top: 15px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
}
.pricing-card .pricing-cta {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.pricing-card .pricing-cta a {
  display: inline-block;
  width: 60%;
}
.pricing-card.flex-placeholder {
  visibility: hidden !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* General Cards */
.cta-card-container {
  display: flex;
  margin-bottom: 40px;
  margin-top: 40px;
}
.cta-card-container.centered {
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  flex-direction: row;
}
.cta-card-container.centered .cta-card {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .cta-card-container {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
  }
}
.cta-card {
  border: 1px solid rgba(0, 112, 255, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 40px 60px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
  cursor: pointer;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s ease-in-out;
}
.cta-card:hover {
  color: #0066ff;
  background-color: #fff;
  /*rgba(255,255,255,.1) ;*/
  -webkit-font-smoothing: antialiased;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.cta-card.full {
  display: block;
}
.cta-card h3 {
  font-weight: bold;
  font-size: 22px;
  display: block;
  margin-top: 0;
  margin-bottom: 15px;
}
.cta-card .icon {
  display: block;
  text-align: center;
  margin-top: 25px;
}
.cta-card .icon img {
  max-width: 70%;
}
@media only screen and (max-width: 767px) {
  .cta-card {
    width: 100%;
  }
}
.well {
  background-color: #ffffff;
  margin-top: 0 !important;
}
@media only screen and (max-width: 767px) {
  .well {
    width: 100% !important;
  }
}
.nav-pills.pricing-card > li.active > a,
.nav-pills.pricing-card > li.active > a:focus,
.nav-pills.pricing-card > li.active > a:hover {
  background-color: #ff7800;
}
.us-map-container {
  /* For stupid IE */
  width: 55%;
  height: 0;
  padding-top: 36%;
  position: relative;
  margin: 20px auto;
}
@media only screen and (max-width: 767px) {
  .us-map-container {
    display: none;
  }
}
.us-map-container .svg-us-map {
  position: absolute;
  top: 0;
  left: 0;
}
.us-map-container .svg-us-map path {
  fill: #D3D3D3;
  transition: fill 300ms;
}
.us-map-container .svg-us-map path:hover {
  fill: #ff7800 !important;
}
.us-map-container .svg-us-map path.status-pending {
  fill: #09325c;
}
.us-map-container .svg-us-map path.status-enabled {
  fill: #0066FF;
}
.us-map-container .svg-us-map path.status-exempt {
  fill: #D3D3D3;
}
.us-map-infobox {
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.us-map-infobox.hidden {
  display: none;
}
.us-map-infobox .umi-icon-wrap {
  color: #09325c;
  border: 1px solid #b3b1b1;
  border-radius: 50%;
  width: 228px;
  height: 228px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.us-map-infobox .umi-icon-wrap .umi-state-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.us-map-infobox .umi-icon-wrap .umi-state-icon-container svg {
  width: 65px;
}
.us-map-infobox .umi-icon-wrap .umi-state-icon-container.status-enabled svg path {
  fill: #0066FF;
}
.us-map-infobox .umi-icon-wrap .umi-state-icon-container.status-exempt svg path {
  fill: #D3D3D3;
}
.us-map-infobox .umi-icon-wrap .umi-state-icon-container.status-pending svg path {
  fill: #09325c;
}
.us-map-infobox .umi-icon-wrap .umi-state-effective-label {
  display: block;
  max-width: 60%;
  line-height: 19px;
  font-weight: 500;
}
.us-map-infobox .umi-body {
  padding-left: 30px;
  padding-right: 55px;
}
.state-guide {
  border-top: 1px solid #ebefee;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.state-guide.pricing {
  border-top: none;
  padding-top: 0;
}
.state-guide.pricing .us-map-container {
  width: 60%;
}
.state-guide header {
  text-align: center;
}
.state-guide header p {
  display: inline-block;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .state-guide header p {
    width: 100%;
  }
}
.state-guide header .map-legend {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .state-guide header .map-legend {
    display: none;
  }
}
.state-guide header .map-legend .legend-item {
  text-transform: uppercase;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 15px;
  vertical-align: middle;
}
.state-guide header .map-legend .legend-item.blue {
  color: #0066FF;
}
.state-guide header .map-legend .legend-item.dark-blue {
  color: #09325c;
}
.state-guide header .map-legend .legend-item.baby-blue {
  color: #a1beeb;
}
.state-guide header .map-legend .legend-item .circle {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: -4px;
}
.state-guide header .map-legend .legend-item .circle.blue {
  background-color: #0066FF;
}
.state-guide header .map-legend .legend-item .circle.dark-blue {
  background-color: #09325c;
}
.state-guide header .map-legend .legend-item .circle.baby-blue {
  background-color: #a1beeb;
}
@media only screen and (max-width: 767px) {
  .state-guide header .map-legend .legend-item {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.mobile-states {
  display: none;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .mobile-states {
    display: block;
  }
}
.mobile-states .mobile-state-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  max-height: 360px;
  overflow-y: scroll;
  box-shadow: inset 0px 11px 8px -10px #CCC, inset 0px -11px 8px -10px #CCC;
}
.mobile-states .mobile-state-list-item .msl-trigger {
  border-top: 1px solid #efefef;
  display: block;
  padding: 5px;
}
.mobile-states .mobile-state-list-item .msl-desc {
  display: none;
  padding: 10px 5px;
  font-size: 15px;
}
.mobile-states .mobile-state-list-item .msl-desc p {
  line-height: 20px;
}
.inline-member-map {
  text-align: center;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .inline-member-map img {
    width: 100%;
    height: auto;
  }
}
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}
.member-map-modal {
  max-width: 800px;
  border-radius: 5px;
}
.member-map-modal .member-map-intro {
  text-align: center;
  display: block;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 40px;
}
.member-map-modal .member-map-image {
  max-width: 100%;
  height: auto;
}
.member-map-modal .mfp-close {
  font-size: 30px;
  top: 15px;
  right: 20px;
  border: 2px solid black;
  border-radius: 50%;
  opacity: 1;
  width: 35px;
  height: 35px;
  line-height: 34px;
}
.member-map-modal .mfp-close:active {
  top: 17px;
  opacity: 0.8;
}
.integration-modal {
  max-width: 700px;
  border-radius: 10px;
}
.integration-modal .integration-modal-wrap {
  padding: 40px;
}
.integration-modal .integration-modal-wrap .integration-logo {
  margin-bottom: 30px;
}
.integration-modal .integration-modal-wrap .integration-logo img {
  max-width: 150px;
}
.integration-modal .integration-modal-wrap .integration-body {
  font-size: 16px;
  line-height: 25px;
}
.integration-modal .integration-modal-wrap .integration-connect {
  display: block;
  margin-top: 30px;
}
.integration-modal .integration-modal-wrap .integration-connect a {
  text-transform: uppercase;
}
.integration-modal .integration-modal-wrap .integration-connect .btn {
  padding-left: 25px;
  padding-right: 25px;
}
.integration-modal .integration-modal-wrap .integration-disabled header {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.integration-modal .integration-modal-wrap .integration-disabled h3 {
  font-weight: bold;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 15px;
}
.integration-modal .integration-modal-wrap .integration-disabled .integration-request-form {
  width: 60%;
  margin: 0 auto;
}
.integration-modal .integration-modal-wrap .integration-disabled .integration-request-form h4 {
  font-weight: 100;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}
.integration-modal .integration-modal-wrap .integration-disabled .integration-request-form .ir-actions {
  display: block;
  margin-top: 25px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .integration-modal .integration-modal-wrap .integration-disabled .integration-request-form {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .integration-modal .integration-modal-wrap .integration-disabled .integration-request-form {
    width: 100%;
  }
}
.integration-modal .integration-modal-wrap .integration-disabled .ir-load-status {
  display: none;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.integration-modal .mfp-close {
  font-size: 30px;
  top: 15px;
  right: 20px;
  border: 2px solid black;
  border-radius: 50%;
  opacity: 1;
  width: 35px;
  height: 35px;
  line-height: 34px;
}
.integration-modal .mfp-close:active {
  top: 17px;
  opacity: 0.8;
}
.tc-form input,
.tc-form textarea,
.tc-form select {
  width: 100%;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  transition: border-color 300ms;
}
.tc-form input:focus,
.tc-form textarea:focus,
.tc-form select:focus {
  border-color: #ff7800;
  outline: 0 none;
}
.tc-form input.error,
.tc-form textarea.error,
.tc-form select.error {
  border: 1px solid red;
}
.tc-form input {
  height: 42px;
}
.tc-form select {
  background: transparent;
  height: 42px;
}
.tc-form textarea {
  height: 150px;
}
label.error {
  color: red;
  font-weight: 400;
  font-size: 14px;
}
.faq-steps {
  margin-top: 40px;
}
.faq-steps li {
  font-size: 20px;
  margin: 20px 0 20px 0;
}
.faq-steps li strong {
  font-weight: 600;
}
.faq-steps li p {
  display: block;
  margin-bottom: 10px;
}
.faq-steps li p img {
  margin-top: 15px;
  max-width: 100%;
}
.main-footer {
  padding-top: 70px;
  background-color: #09325c;
  color: #ffffff;
}
.main-footer a {
  color: #adb4dc;
  font-weight: 300;
  font-size: 15px;
  transition: color 300ms;
}
.main-footer .footer-nav-wrap nav {
  display: block;
}
.main-footer .footer-nav-wrap ul {
  list-style-type: none;
}
.main-footer .footer-nav-wrap ul li {
  display: block;
}
.main-footer .footer-nav-wrap .footer-nav-social {
  text-align: center;
}
.main-footer .footer-nav-wrap .footer-nav-social .icon-social img {
  width: 20px;
  height: 20px;
}
.main-footer .footer-nav-wrap .footer-nav-social .icon-social.gp img {
  width: 30px;
  height: 30px;
}
.main-footer .footer-nav-wrap .footer-nav-social ul {
  padding: 0;
  margin: 0;
}
.main-footer .footer-nav-wrap .footer-nav-social ul li {
  display: inline-block;
  margin-right: 15px;
}
.main-footer .footer-nav-wrap .footer-nav-social ul li:last-child {
  margin-right: 0;
}
.main-footer .footer-nav-wrap .footer-nav-social ul li .icon-social {
  display: inline-block;
}
.main-footer .footer-nav-wrap .footer-nav-social ul li .icon-social svg {
  height: 20px;
  width: 20px;
}
.main-footer .footer-nav-wrap .footer-nav-social ul li .icon-social svg path,
.main-footer .footer-nav-wrap .footer-nav-social ul li .icon-social svg polyline {
  fill: #adb4dc;
  transition: fill 400ms;
}
.main-footer .footer-nav-wrap .footer-nav-social ul li .icon-social:hover svg path,
.main-footer .footer-nav-wrap .footer-nav-social ul li .icon-social:hover svg polyline {
  fill: #ffffff;
}
@media only screen and (max-width: 991px) {
  .main-footer .footer-nav-wrap .footer-nav-social ul li {
    margin-right: 25px;
  }
}
.main-footer .footer-nav-wrap .footer-nav-main {
  float: right;
}
.main-footer .footer-nav-wrap .footer-nav-main ul {
  padding: 0;
  margin: 0 100px 0 0;
}
.main-footer .footer-nav-wrap .footer-nav-main ul li {
  margin-left: 0px;
}
.main-footer .footer-nav-wrap .footer-nav-main ul li:first-child {
  margin-left: 0;
}
.main-footer .footer-nav-wrap .footer-nav-main ul li a {
  transition: color 300ms;
}
.main-footer .footer-nav-wrap .footer-nav-main ul li a:hover {
  text-decoration: none;
  color: #ff7800;
}
.main-footer .footer-nav-wrap .footer-nav-main ul li a:hover:after {
  color: #adb4dc !important;
}
.main-footer .footer-nav-wrap .footer-body-left {
  float: left;
}
.main-footer .footer-nav-wrap .footer-body-left img {
  margin-bottom: 20px;
  width: 115px;
  height: auto;
}
.main-footer .footer-nav-wrap .footer-body-right {
  float: right;
}
.main-footer .footer-nav-wrap .footer-body-right .footer-nav-main:first-child ul {
  margin-right: 0 !important;
}
.copyright {
  margin-top: 60px;
  font-size: 13px;
  background-color: #072c51;
  color: #536d96;
  padding-top: 5px;
  padding-bottom: 5px;
}
.copyright ul {
  list-style-type: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.copyright ul li {
  display: inline-block;
}
.copyright ul li a {
  color: #536d96;
  font-size: 13px;
}
.copyright ul li a:after {
  content: "|";
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.copyright ul li a:hover {
  color: #ff7800;
}
.copyright ul li a:hover:after {
  color: #adb4dc !important;
}
@media only screen and (max-width: 767px) {
  .main-footer {
    padding-top: 30px;
  }
  .footer-group {
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
  }
  .footer-group .footer-nav-wrap,
  .footer-group .office-locations {
    width: 100%;
  }
  .footer-group .office-locations {
    order: 0;
    margin-top: 0;
  }
  .footer-group .office-locations .location-wrap .loc h1 {
    font-size: 25px;
  }
  .footer-group .office-locations .location-wrap .loc p {
    font-size: 12px;
  }
  .footer-group .footer-nav-wrap {
    margin-top: 25px;
    display: -webkit-flex;
    /* Safari */
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-group .footer-nav-wrap .footer-body-left,
  .footer-group .footer-nav-wrap .footer-body-right {
    float: none;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .footer-group .footer-nav-wrap .footer-body-left {
    order: 1;
    margin-top: 25px;
  }
  .footer-group .footer-nav-wrap .footer-body-left img {
    margin-bottom: 0;
  }
  .footer-group .footer-nav-wrap .footer-body-right {
    margin-bottom: 25px;
  }
  .footer-group .footer-nav-wrap .footer-nav-main {
    float: none;
    width: 100%;
    text-align: center;
  }
  .footer-group .footer-nav-wrap .footer-nav-main ul {
    text-align: center;
    display: inline-block;
    margin: 0;
  }
  .footer-group .footer-nav-wrap .footer-nav-main ul li {
    display: block;
    margin: 15px 0 0 0;
  }
  .footer-group .footer-nav-wrap .footer-nav-main ul li a {
    font-size: 18px;
  }
  .footer-group .footer-nav-wrap .footer-nav-social {
    margin-top: 25px;
    display: inline-block;
    float: none;
    order: 1;
    width: 100%;
    text-align: center;
  }
  .footer-group .footer-nav-wrap .footer-nav-social ul li {
    margin-right: 15%;
  }
  .footer-group .footer-nav-wrap .footer-nav-social ul li:last-child {
    margin-right: 0;
  }
  .copyright {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
  }
  .copyright ul {
    line-height: 19px;
    font-size: 13px;
    letter-spacing: -0.03em;
    color: #74767f;
    font-weight: 100;
  }
  .copyright ul a {
    color: #74767f;
  }
  .copyright ul li:nth-child(2) a:after {
    content: "";
  }
}

/*# sourceMappingURL=css/maps/style.css.map */
